Microsoft Azure · Schema

AudioTranscriptionResponse

Response from audio transcription.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
text string The transcribed text.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-audiotranscriptionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AudioTranscriptionResponse",
  "title": "AudioTranscriptionResponse",
  "type": "object",
  "description": "Response from audio transcription.",
  "properties": {
    "text": {
      "type": "string",
      "description": "The transcribed text.",
      "example": "example_value"
    }
  },
  "required": [
    "text"
  ]
}