{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AtsOffer", "title": "AtsOffer", "properties": { "accepted_at": { "format": "date-time", "type": "string" }, "compensation": { "$ref": "#/components/schemas/property_AtsOffer_compensation" }, "created_at": { "format": "date-time", "type": "string" }, "creator_user_id": { "type": "string" }, "employee_user_id": { "type": "string" }, "id": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "rejected_at": { "format": "date-time", "type": "string" }, "sent_at": { "format": "date-time", "type": "string" }, "start_at": { "format": "date-time", "type": "string" }, "status": { "enum": [ "CREATED", "SENT", "ACCEPTED", "REJECTED" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }