{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Chapter", "title": "Chapter", "type": "object", "properties": { "chapter_id": { "type": "string", "description": "Unique identifier for the chapter." }, "name": { "type": "string", "description": "Display name of the chapter." }, "content": { "type": "string", "description": "The text content of the chapter." }, "voice_id": { "type": "string", "description": "The voice assigned to this chapter." }, "state": { "type": "string", "description": "Current rendering state of the chapter." } } }