Skip to content

Instantly share code, notes, and snippets.

@mshakhomirov
Created October 20, 2019 17:32
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 mshakhomirov/861e62c2063d1f24627a5b132b6f207c to your computer and use it in GitHub Desktop.
Save mshakhomirov/861e62c2063d1f24627a5b132b6f207c to your computer and use it in GitHub Desktop.
[
{
"name": "id",
"type": "INT64",
"mode": "NULLABLE"
},
{
"name": "first_name",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "last_name",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "dob",
"type": "DATE",
"mode": "NULLABLE"
},
{
"name": "addresses",
"type": "RECORD",
"mode": "REPEATED",
"fields": [
{
"name": "status",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "address",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "city",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "state",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "zip",
"type": "INT64",
"mode": "NULLABLE"
},
{
"name": "numberOfYears",
"type": "INT64",
"mode": "NULLABLE"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment