{ "$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-log-forwarding-profile-request-structure.json", "name": "LogForwardingProfileRequest", "description": "LogForwardingProfileRequest schema from Palo Alto Networks Strata Logging Service API", "type": "object", "properties": { "name": { "type": "string", "description": "Display name for the profile." }, "description": { "type": "string", "description": "Optional description." }, "log_types": { "type": "array", "description": "Log types to include in forwarding.", "items": { "type": "string", "enum": [ "traffic", "threat", "url", "wildfire", "auth", "decryption", "globalprotect", "system", "config" ] } }, "enabled": { "type": "boolean", "default": true } }, "required": [ "name", "log_types" ] }