{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostAiApplyCareerSitesPositiveResponse", "title": "PostAiApplyCareerSitesPositiveResponse", "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." }, "label": { "type": "string", "description": "The label of the career site" } }, "required": [ "id", "label" ], "examples": [ { "id": "mK7pQw9xNvEr2LdY5sGh8TcZ", "label": "Acme Inc. California" } ] } }, "required": [ "status", "data" ] }