{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InputAudio", "title": "InputAudio", "properties": { "data": { "type": "string", "title": "Data" }, "format": { "type": "string", "enum": [ "wav", "mp3" ], "title": "Format" } }, "type": "object", "required": [ "data", "format" ] }