Palo Alto Networks · Schema
HTTPSDestination
HTTPSDestination schema from Palo Alto Networks Strata Logging Service API
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| destination_id | string | Unique identifier of the HTTPS destination. |
| name | string | Display name of the destination. |
| uri | string | HTTPS endpoint URL where logs are posted. |
| http_method | string | HTTP method used to deliver logs. |
| tls_verify | boolean | Whether TLS certificate verification is enabled. |
| enabled | boolean | |
| created_at | string |
JSON Schema
{
"$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"
}
}
}