{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LogStreamHttpSink", "title": "LogStreamHttpSink", "type": "object", "additionalProperties": false, "required": [ "httpEndpoint" ], "properties": { "httpAuthorization": { "type": "string", "description": "HTTP Authorization header" }, "httpContentFormat": { "$ref": "#/components/schemas/LogStreamHttpContentFormatEnum" }, "httpContentType": { "type": "string", "description": "HTTP Content-Type header" }, "httpEndpoint": { "type": "string", "description": "HTTP endpoint", "pattern": "^https://.*" }, "httpCustomHeaders": { "type": "array", "description": "custom HTTP headers", "items": { "$ref": "#/components/schemas/HttpCustomHeader" } } } }