{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "LogForwardingProfileRequest", "description": "LogForwardingProfileRequest schema from Palo Alto Networks Strata Logging Service API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/strata-logging-service-api-log-forwarding-profile-request-schema.json", "type": "object", "properties": { "name": { "type": "string", "description": "Display name for the profile." }, "description": { "type": "string", "description": "Optional description." }, "log_types": { "type": "array", "items": { "type": "string", "enum": [ "traffic", "threat", "url", "wildfire", "auth", "decryption", "globalprotect", "system", "config" ] }, "description": "Log types to include in forwarding." }, "enabled": { "type": "boolean", "default": true } }, "required": [ "name", "log_types" ] }