{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-schema/amazon-codecatalyst-delete-space-response-schema.json",
"title": "DeleteSpaceResponse",
"description": "DeleteSpaceResponse schema from Amazon CodeCatalyst",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/NameString"
},
{
"description": "The name of the space."
}
]
},
"displayName": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The friendly name of the space displayed to users of the space in Amazon CodeCatalyst."
}
]
}
},
"required": [
"name"
]
}