{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpeakRequest", "title": "SpeakRequest", "type": "object", "required": [ "text" ], "properties": { "text": { "type": "string", "description": "Text content to convert to speech.", "minLength": 1 } } }