jsonschema-bigquery
Version:
Convert JSON schema to Google BigQuery schema
21 lines (20 loc) • 404 B
JSON
{
"id": "http://yourdomain.com/schemas/myschema.json",
"description": "Example description",
"type": "object",
"properties": {
"names": {
"type": "array",
"items": {
"type": "object",
"properties": {
"first": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}