{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AiApplyApplicationStatusUpdatedWebhookPayload", "title": "AiApplyApplicationStatusUpdatedWebhookPayload", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for this webhook event" }, "type": { "type": "string", "enum": [ "ai-apply-application-status-updated" ], "description": "Type of the webhook event" }, "data": { "type": "object", "properties": { "id": { "type": "string", "description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing." }, "job_posting_id": { "type": "string", "description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing." }, "status": { "type": "string", "enum": [ "SUBMITTED", "DUPLICATE", "PENDING", "FAILED" ] }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } }, "required": [ "id", "job_posting_id", "status", "created_at", "updated_at" ], "additionalProperties": false } }, "required": [ "id", "type", "data" ], "additionalProperties": false }