jsonschema-bigquery
Version:
Convert JSON schema to Google BigQuery schema
19 lines (18 loc) • 387 B
JSON
{
"id": "http://yourdomain.com/schemas/myschema.json",
"description": "Object description",
"type": "object",
"properties": {
"address": {
"description": "An address",
"type": "object",
"properties": {
"street_address": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}