{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpacePropertyUpdate", "title": "SpacePropertyUpdate", "required": [ "value", "version" ], "type": "object", "properties": { "key": { "type": "string" }, "value": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "boolean" }, { "type": "object", "additionalProperties": true, "properties": {} }, { "type": "string" } ] }, "version": { "$ref": "#/components/schemas/Version" }, "space": { "type": "object", "additionalProperties": true, "properties": { "key": { "type": "string", "description": "The key of the space" } } } } }