{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobPosting", "title": "JobPosting", "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "title": { "type": "string" }, "postingDate": { "type": "string", "format": "date" }, "closingDate": { "type": "string", "format": "date" }, "status": { "type": "string" }, "location": { "$ref": "#/components/schemas/ResourceReference" }, "jobRequisition": { "$ref": "#/components/schemas/ResourceReference" } } }