{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AtsJobOpening", "title": "AtsJobOpening", "properties": { "application_id": { "type": "string" }, "close_reason": { "type": "string" }, "closed_at": { "format": "date-time", "type": "string" }, "opened_at": { "format": "date-time", "type": "string" }, "status": { "enum": [ "OPEN", "CLOSED" ], "type": "string", "x-speakeasy-unknown-values": "allow" } }, "type": "object" }