{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "HTTPSDestination", "description": "HTTPSDestination 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-schema.json", "type": "object", "properties": { "destination_id": { "type": "string", "description": "Unique identifier of the HTTPS destination." }, "name": { "type": "string", "description": "Display name of the destination." }, "uri": { "type": "string", "format": "uri", "description": "HTTPS endpoint URL where logs are posted." }, "http_method": { "type": "string", "enum": [ "POST", "PUT" ], "description": "HTTP method used to deliver logs." }, "tls_verify": { "type": "boolean", "description": "Whether TLS certificate verification is enabled." }, "enabled": { "type": "boolean" }, "created_at": { "type": "string", "format": "date-time" } } }