{ "$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-forwarding-status-structure.json", "name": "ForwardingStatus", "description": "ForwardingStatus schema from Palo Alto Networks Strata Logging Service API", "type": "object", "properties": { "profile_id": { "type": "string", "description": "Log forwarding profile identifier." }, "overall_status": { "type": "string", "description": "Overall health status of the forwarding profile.", "enum": [ "healthy", "degraded", "error" ] }, "destinations": { "type": "array", "description": "Per-destination status details.", "items": { "type": "object", "properties": { "destination_id": { "type": "string" }, "destination_type": { "type": "string", "enum": [ "syslog", "https", "email" ] }, "status": { "type": "string", "enum": [ "healthy", "error", "disabled" ] }, "last_successful_delivery": { "type": "datetime" }, "error_count_24h": { "type": "int32" }, "last_error": { "type": "string" } } } } } }