{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/strata-logging-service-api-https-destination-request-structure.json", "name": "HTTPSDestinationRequest", "description": "HTTPSDestinationRequest schema from Palo Alto Networks Strata Logging Service API", "type": "object", "properties": { "name": { "type": "string", "description": "Display name for this HTTPS destination." }, "uri": { "type": "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" ] }