/app/audio/{storeid}:
  get:
    tags:
      - audio
    description: Return audio from text
    operationId: textToSpeech
    parameters:
      - $ref#storeid: "../parameters/storeid.yaml"
      - name: text
        in: query
        required: true
        schema:
          type: string
    responses:
      $ref#4xx: "../responses/4xx.yaml"
      200:
        description: audio stream
        content:
          application/json:
            schema:
                type: string
                format: binary
