Created
September 27, 2016 07:40
-
-
Save nagachika/467c50ca546248c47f582d63bf8154d1 to your computer and use it in GitHub Desktop.
BigQuery schema for Google Cloud Speech API result
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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