{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Project", "title": "Project", "type": "object", "properties": { "id": { "type": "string", "description": "Unique project identifier" }, "accountId": { "type": "string" }, "name": { "type": "string" }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" }, "projectValue": { "type": "object", "properties": { "value": { "type": "number" }, "currency": { "type": "string" } } }, "status": { "type": "string", "enum": [ "active", "inactive", "suspended" ] }, "jobNumber": { "type": "string" }, "addressLine1": { "type": "string" }, "addressLine2": { "type": "string" }, "city": { "type": "string" }, "stateOrProvince": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" }, "timezone": { "type": "string" }, "language": { "type": "string" }, "constructionType": { "type": "string" }, "deliveryMethod": { "type": "string" }, "contractType": { "type": "string" }, "currentPhase": { "type": "string" }, "businessUnitsId": { "type": "string" }, "imageUrl": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }