{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "JobRequisition", "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "requisitionNumber": { "type": "string" }, "jobTitle": { "type": "string" }, "status": { "type": "string", "description": "The status of the requisition (e.g., Open, Filled, Closed)." }, "numberOfOpenings": { "type": "integer" }, "createdOn": { "type": "string" }, "targetHireDate": { "type": "string" } } }