{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "HTTPSDestinationRequest", "description": "HTTPSDestinationRequest schema from Palo Alto Networks Strata Logging Service API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/strata-logging-service-api-https-destination-request-schema.json", "type": "object", "properties": { "name": { "type": "string", "description": "Display name for this HTTPS destination." }, "uri": { "type": "string", "format": "uri", "description": "HTTPS endpoint URL." }, "http_method": { "type": "string", "enum": [ "POST", "PUT" ], "default": "POST" }, "headers": { "type": "object", "description": "Additional HTTP headers to include in log delivery requests.", "additionalProperties": { "type": "string" } }, "tls_verify": { "type": "boolean", "default": true }, "enabled": { "type": "boolean", "default": true } }, "required": [ "name", "uri" ] }