Palo Alto Networks · JSON Structure

Strata Logging Service Api Syslog Destination Request Structure

SyslogDestinationRequest schema from Palo Alto Networks Strata Logging Service API

Type: object Properties: 7 Required: 4
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

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

Properties

name server port protocol format facility 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-syslog-destination-request-structure.json",
  "name": "SyslogDestinationRequest",
  "description": "SyslogDestinationRequest schema from Palo Alto Networks Strata Logging Service API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for this syslog destination."
    },
    "server": {
      "type": "string",
      "description": "Syslog server hostname or IP address."
    },
    "port": {
      "type": "int32",
      "description": "Syslog server port number.",
      "minimum": 1,
      "maximum": 65535
    },
    "protocol": {
      "type": "string",
      "description": "Transport protocol.",
      "enum": [
        "UDP",
        "TCP",
        "SSL"
      ]
    },
    "format": {
      "type": "string",
      "enum": [
        "IETF",
        "BSD",
        "CSV"
      ],
      "default": "IETF"
    },
    "facility": {
      "type": "string",
      "default": "LOG_USER"
    },
    "enabled": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "name",
    "server",
    "port",
    "protocol"
  ]
}