{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectInput", "title": "ProjectInput", "type": "object", "description": "Input for creating or updating a project", "properties": { "name": { "type": "string", "description": "Human-readable name of the project" }, "status": { "type": "string", "description": "Current status of the project", "enum": [ "active", "archived" ] } } }