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