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