{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Project", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "status": { "type": "string" }, "start_date": { "type": "string", "format": "date" }, "end_date": { "type": "string", "format": "date" }, "budget": { "type": "number" }, "manager": { "type": "string" } } }