{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TextReprMetadata", "title": "TextReprMetadata", "type": "object", "properties": { "event_type": { "type": "string" }, "event_id": { "type": "string" }, "trace_id": { "type": "string" }, "rendering": { "type": "string" }, "char_count": { "type": "integer" }, "truncated": { "type": "boolean" }, "error": { "type": "string" } }, "required": [ "char_count", "rendering", "truncated" ] }