mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
29 lines
591 B
Plaintext
29 lines
591 B
Plaintext
|
{
|
||
|
"parseOptions": {},
|
||
|
"tables": [
|
||
|
{
|
||
|
"table_name": "city",
|
||
|
"column_metadata": [
|
||
|
{
|
||
|
"id": "id",
|
||
|
"type": "Int"
|
||
|
},
|
||
|
{
|
||
|
"id": "city",
|
||
|
"type": ["Space", "Monkey"]
|
||
|
}
|
||
|
],
|
||
|
"table_data": [
|
||
|
[
|
||
|
1,
|
||
|
2
|
||
|
],
|
||
|
[
|
||
|
"Berlin",
|
||
|
"Tokyo"
|
||
|
]
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|