Updated webhook authorization details.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "reservation-servicePlatformWebhookResponseDto", "description": "Updated webhook authorization details.", "$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/restaurant-k-series-reservation-service-platform-webhook-response-dto-schema.json", "type": "object", "properties": { "accepted": { "description": "Whether the webhook request was accepted.", "example": true, "type": "boolean" }, "currentAuthType": { "description": "The current authentication type.", "enum": [ "BASIC_AUTH", "BEARER_TOKEN", "API_KEYS", "OAUTH2" ], "type": "string" } }, "required": [ "accepted", "currentAuthType" ] }