{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "WebhookChannelDetails", "description": "WebhookChannelDetails schema from Multi-Tenant Notifications API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-multitenant-notifications-api-webhook-channel-details-schema.json", "type": "object", "properties": { "urls": { "description": "List of Webhook URLs - do not include token in the URL", "type": "array", "items": { "type": "string" } }, "authType": { "description": "Webhook Authentication Type", "type": "string", "enum": [ "NO_AUTH", "TOKEN" ] }, "token": { "description": "Webhook token value", "type": "string" } }, "required": [ "urls", "authType", "token" ] }