Palo Alto Networks · JSON Structure

Strata Logging Service Api Https Destination Request Structure

HTTPSDestinationRequest schema from Palo Alto Networks Strata Logging Service API

Type: object Properties: 6 Required: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

HTTPSDestinationRequest is a JSON Structure definition published by Palo Alto Networks, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name uri http_method headers tls_verify enabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}