{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpaceDescription", "title": "SpaceDescription", "required": [ "embeddedContent", "representation", "value" ], "type": "object", "additionalProperties": true, "properties": { "value": { "type": "string", "example": "example_value" }, "representation": { "type": "string", "enum": [ "plain", "view" ], "example": "plain" }, "embeddedContent": { "type": "array", "items": { "type": "object", "properties": {} }, "example": [] } } }