{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpacePropertyCreate", "title": "SpacePropertyCreate", "required": [ "key", "value" ], "type": "object", "properties": { "key": { "type": "string", "description": "The key of the new property." }, "value": { "$ref": "#/components/schemas/PropertyValue" }, "space": { "type": "object", "additionalProperties": true, "properties": { "key": { "type": "string", "description": "The key of the space" } } } } }