-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmemdbtables.json
More file actions
67 lines (67 loc) · 1.4 KB
/
memdbtables.json
File metadata and controls
67 lines (67 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[
{
"columns": [
{
"description": "col1 description",
"incremental_key": false,
"name": "col1",
"not_null": true,
"primary_key": true,
"type": "int64",
"unique": true
}
],
"description": "",
"is_incremental": false,
"name": "table1",
"relations": ["table2"],
"title": "",
"is_paid": false,
"permissions_needed": ["permission1"],
"sensitive_columns": ["col1"]
},
{
"columns": [
{
"description": "col1 description",
"incremental_key": true,
"name": "col1",
"not_null": false,
"primary_key": false,
"type": "uuid",
"unique": false
}
],
"description": "",
"parent": "table1",
"relations": ["table3"],
"is_incremental": false,
"name": "table2",
"title": "",
"is_paid": false,
"permissions_needed": null,
"sensitive_columns": null
},
{
"columns": [
{
"description": "col1 description",
"incremental_key": true,
"name": "col1",
"not_null": false,
"primary_key": false,
"type": "uuid",
"unique": false
}
],
"description": "",
"parent": "table2",
"relations": [],
"is_incremental": false,
"name": "table3",
"title": "",
"is_paid": true,
"permissions_needed": null,
"sensitive_columns": null
}
]