-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema_construction_daptin.json
57 lines (57 loc) · 1.23 KB
/
schema_construction_daptin.json
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
{
"Tables": [
{
"Columns": [
{
"ColumnName": "name",
"ColumnType": "label",
"DataType": "varchar(100)",
"IsIndexed": true,
"Name": "name"
},
{
"ColumnName": "length",
"ColumnType": "measurement",
"DataType": "int(11)",
"Name": "length"
},
{
"ColumnName": "width",
"ColumnType": "measurement",
"DataType": "int(11)",
"Name": "width"
},
{
"ColumnName": "height",
"ColumnType": "measurement",
"DataType": "int(11)",
"Name": "height"
},
{
"ColumnName": "start_time",
"ColumnType": "datetime",
"DataType": "DATETIME",
"Name": "start_time"
},
{
"ColumnName": "end_time",
"ColumnType": "datetime",
"DataType": "DATETIME",
"Name": "end_time"
},
{
"ColumnName": "mid_time",
"ColumnType": "datetime",
"DataType": "DATETIME",
"Name": "mid_time"
},
{
"ColumnName": "another_label",
"ColumnType": "label",
"DataType": "varchar(100)",
"Name": "another_label"
}
],
"TableName": "construction"
}]
}