{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectCreate", "title": "ProjectCreate", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "type": { "type": "string", "enum": [ "CONSTRUCTION", "INFRASTRUCTURE", "ENGINEERING", "OTHER" ] }, "location": { "type": "string" } } }