{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Project", "title": "Project", "type": "object", "properties": { "authorId": { "type": "string" }, "ownerIds": { "type": "array", "items": { "type": "string" } }, "status": { "type": "string", "enum": [ "Green", "Yellow", "Red", "Completed", "OnHold", "Cancelled" ] }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" }, "createdDate": { "type": "string", "format": "date-time" } } }