{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateProjectRequest", "title": "UpdateProjectRequest", "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "string", "enum": [ "active", "inactive", "archived" ] }, "jobNumber": { "type": "string" }, "addressLine1": { "type": "string" }, "city": { "type": "string" }, "stateOrProvince": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" } } }