{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TextReprResponse", "title": "TextReprResponse", "type": "object", "properties": { "text": { "type": "string", "description": "Generated text representation of the event" }, "metadata": { "allOf": [ { "$ref": "#/components/schemas/TextReprMetadata" } ], "description": "Metadata about the text representation" } }, "required": [ "metadata", "text" ] }