{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectCreate",
"title": "ProjectCreate",
"type": "object",
"description": "Request body for creating a new project",
"properties": {
"name": {
"type": "string",
"description": "Display name for the new project",
"examples": [
"My New Application"
]
}
},
"required": [
"name"
]
}