Skip to content

Instantly share code, notes, and snippets.

@nagachika
Created September 27, 2016 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nagachika/467c50ca546248c47f582d63bf8154d1 to your computer and use it in GitHub Desktop.
Save nagachika/467c50ca546248c47f582d63bf8154d1 to your computer and use it in GitHub Desktop.
BigQuery schema for Google Cloud Speech API result
[
{
"name": "results",
"type": "RECORD",
"mode": "REPEATED",
"fields": [
{
"name": "alternatives",
"type": "RECORD",
"mode": "REPEATED",
"fields": [
{
"name": "transcript",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "confidence",
"type": "FLOAT",
"mode": "NULLABLE"
}
]
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment