Skip to content

Instantly share code, notes, and snippets.

@sinmetal
Created November 21, 2016 07:08
Show Gist options
  • Save sinmetal/1a76b985adda34783a0762a6e64f1d86 to your computer and use it in GitHub Desktop.
Save sinmetal/1a76b985adda34783a0762a6e64f1d86 to your computer and use it in GitHub Desktop.
[
{
"name": "documentSentiment",
"type": "RECORD",
"fields": [
{
"name": "magnitude",
"type": "FLOAT",
"mode": "NULLABLE"
},
{
"name": "score",
"type": "FLOAT",
"mode": "NULLABLE"
}
],
"mode": "NULLABLE"
},
{
"name": "language",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "sentences",
"type": "RECORD",
"mode": "REPEATED",
"fields": [
{
"name": "sentiment",
"type": "RECORD",
"fields": [
{
"name": "magnitude",
"type": "FLOAT",
"mode": "NULLABLE"
},
{
"name": "score",
"type": "FLOAT",
"mode": "NULLABLE"
}
],
"mode": "NULLABLE"
},
{
"name": "text",
"type": "RECORD",
"fields": [
{
"name": "beginOffset",
"type": "INTEGER",
"mode": "NULLABLE"
},
{
"name": "content",
"type": "STRING",
"mode": "NULLABLE"
}
],
"mode": "NULLABLE"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment