jsonschema-bigquery
Version:
Convert JSON schema to Google BigQuery schema
21 lines (20 loc) • 408 B
JSON
{
"id": "http://yourdomain.com/schemas/myschema.json",
"description": "Complex example",
"type": "object",
"properties": {
"address": {
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"country": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}