{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TopicSegment", "title": "TopicSegment", "type": "object", "properties": { "text": { "type": "string", "description": "Text of the segment." }, "start_word": { "type": "integer", "description": "Index of the first word in this segment." }, "end_word": { "type": "integer", "description": "Index of the last word in this segment." }, "topics": { "type": "array", "items": { "$ref": "#/components/schemas/Topic" }, "description": "Topics detected in this segment." } } }