Merge · Schema

DownloadRequestMeta

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
url string
method string
headers object
View JSON Schema on GitHub

JSON Schema

merge-downloadrequestmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DownloadRequestMeta",
  "title": "DownloadRequestMeta",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "method": {
      "type": "string"
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "required": [
    "id",
    "url",
    "method",
    "headers"
  ]
}