{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ItemBody", "title": "ItemBody", "type": "object", "description": "Represents the body content of an event", "properties": { "contentType": { "type": "string", "enum": [ "text", "html" ], "description": "The type of the content" }, "content": { "type": "string", "description": "The content of the item body" } } }