{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentPropertyCreateNoKey", "title": "ContentPropertyCreateNoKey", "required": [ "value" ], "type": "object", "additionalProperties": true, "properties": { "value": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "boolean" }, { "type": "object", "additionalProperties": true, "properties": {} }, { "type": "string" } ], "description": "The value of the content property. This can be empty or a complex object.", "example": "example_value" } } }