{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateProjectRequest", "title": "UpdateProjectRequest", "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "environment": { "type": "string", "enum": [ "development", "staging", "production" ] } } }