{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostAiApplyApplyPositiveResponse", "title": "PostAiApplyApplyPositiveResponse", "type": "object", "properties": { "status": { "type": "string", "const": "success" }, "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." }, "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" }, "created_at": { "description": "YYYY-MM-DDTHH:mm:ss.sssZ", "type": "string", "format": "date-time", "externalDocs": { "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString" } }, "updated_at": { "description": "YYYY-MM-DDTHH:mm:ss.sssZ", "type": "string", "format": "date-time", "externalDocs": { "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString" } } }, "required": [ "id", "posting_id", "status", "created_at", "updated_at" ], "examples": [ { "id": "ADbmw5XSkeCSE1fAucoxEGnwZ", "posting_id": "JDn252PEYa4rMhKbJBjtn3ng", "status": "PENDING", "created_at": "2025-01-01T00:00:00.000Z", "updated_at": "2025-03-02T23:12:32.000Z" } ] } }, "required": [ "status", "data" ] }