{ "$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" ] }