{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentPropertyCreate", "title": "ContentPropertyCreate", "required": [ "key", "value" ], "type": "object", "additionalProperties": true, "properties": { "key": { "maxLength": 255, "type": "string", "description": "The key of the new property.", "example": "example_value" }, "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" } } }