{"record":{"id":"58954d8f93121fff","repo":"diegosouzapw/OmniRoute","slug":"missing-required-field-url","errorCode":null,"errorMessage":"Missing required field: url","messagePattern":"Missing required field: url","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"src/lib/skills/builtins.ts","lineNumber":275,"sourceCode":"\n  http_request: async (input, context) => {\n    const {\n      url,\n      method = \"GET\",\n      headers: rawHeaders,\n      body,\n      timeoutMs,\n      maxBytes,\n    } = input as {\n      url: string;\n      method?: string;\n      headers?: Record<string, unknown>;\n      body?: unknown;\n      timeoutMs?: number;\n      maxBytes?: number;\n    };\n    if (!url || typeof url !== \"string\") {\n      throw new Error(\"Missing required field: url\");\n    }\n\n    const normalizedMethod = method.toUpperCase();\n    if (!ALLOWED_HTTP_METHODS.has(normalizedMethod)) {\n      throw new Error(`Unsupported HTTP method: ${method}`);\n    }\n\n    const headers = sanitizeHeaders(rawHeaders);\n    const response = await safeOutboundFetch(url, {\n      method: normalizedMethod,\n      headers,\n      body:\n        normalizedMethod === \"GET\" || normalizedMethod === \"HEAD\"\n          ? undefined\n          : normalizeBody(body, headers),\n      timeoutMs: normalizePositiveInteger(timeoutMs, 10_000, 60_000),\n      allowRedirect: false,\n      retry: false,","sourceCodeStart":257,"sourceCodeEnd":293,"githubUrl":"https://github.com/diegosouzapw/OmniRoute/blob/a179ffed5bb2e0b883b9ae7214ce8717b2a94c4d/src/lib/skills/builtins.ts#L257-L293","documentation":"Error \"Missing required field: url\" thrown in diegosouzapw/OmniRoute.","triggerScenarios":"Thrown at src/lib/skills/builtins.ts:275 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"a179ffed5bb2e0b883b9ae7214ce8717b2a94c4d","analyzedAt":"2026-08-25T18:35:09.898Z","schemaVersion":2},"datasetVersion":"2026-08-25T21:54:21.419Z"}