{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Project", "title": "Project", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the project" }, "name": { "type": "string", "description": "Project name" }, "description": { "type": "string", "description": "Project description" }, "status": { "type": "string", "enum": [ "draft", "published", "archived" ], "description": "Current project status" }, "apiType": { "type": "string", "enum": [ "rest", "graphql", "soap" ], "description": "The type of API being designed" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the project was created" }, "updatedAt": { "type": "string", "format": "date-time", "description": "Timestamp when the project was last updated" } } }