jsonschema-bigquery
Version:
Convert JSON schema to Google BigQuery schema
48 lines (47 loc) • 1.09 kB
JSON
{
"id": "http://yourdomain.com/schemas/myschema.json",
"description": "Example description",
"type": "object",
"properties": {
"addresses": {
"allOf": [
{
"type": "object",
"properties": {
"address": {
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"country": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"address": {
"type": "object",
"properties": {
"town": {
"type": "string"
},
"country": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
]
}
},
"additionalProperties": false
}