{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/platform-webhook-log-schema.json", "title": "WebhookLog", "description": "Webhook log", "type": "object", "properties": { "WebhookSubscriptionOwnerUserId": { "format": "int32", "description": "Webhook subscription owner user identifier", "type": "integer", "example": 500123 }, "EventCreated": { "description": "Event created", "type": "string", "example": "string" }, "WebhookTriggered": { "description": "Webhook triggered", "type": "string", "example": "string" }, "WebhookEventName": { "description": "Webhook event name", "type": "string", "example": "Example Name" }, "WebhookSubscriptionCallbackUrl": { "description": "Webhook subscription callback url", "type": "string", "example": "https://api.flipdish.co/example" }, "HttpResponseStatusCode": { "description": "Received HTTP repsonse status HTTP code", "type": "string", "example": "Active" }, "HttpResponseStatus": { "description": "Received HTTP repsonse status", "type": "string", "example": "Active" }, "RequestHeaders": { "description": "Request headers", "type": "string", "example": "string" }, "RequestBody": { "description": "Request body", "type": "string", "example": "string" }, "ResponseHeaders": { "description": "Received response headers", "type": "string", "example": "string" }, "ResponseBody": { "description": "Received response body", "type": "string", "example": "string" }, "Duration": { "description": "Duration of HTTP request", "type": "string", "example": "string" }, "RetryCount": { "format": "int32", "description": "Retry count", "type": "integer", "example": 3 }, "FlipdishWebhookId": { "format": "uuid", "description": "Flipdish webhook identifier", "type": "string", "example": "00000000-0000-0000-0000-000000000000" }, "Version": { "description": "Flipdish webhook version", "type": "string", "example": "string" } } }