{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SpaceCreate",
"title": "SpaceCreate",
"type": "object",
"description": "Payload to create a new space.",
"required": [
"name",
"type"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the space."
},
"type": {
"type": "string",
"description": "The type of space to create.",
"enum": [
"shared",
"managed",
"data"
]
},
"description": {
"type": "string",
"description": "The description of the space."
}
}
}