-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
42 lines (42 loc) · 873 Bytes
/
db.json
File metadata and controls
42 lines (42 loc) · 873 Bytes
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
{
"dashboard":{
"table":{
"datasource":{
"url": "http://something.com/datasource/table/info"
},
"config":{
"columns":[
{
"Header": "Field1",
"accessor": "field1"
},
{
"Header": "Field2",
"accessor": "field2"
}
]
}
},
"json":{
"datasource":{
"url": "http://something.com/datasource/json/info"
}
}
},
"resources":[
{
"name":"resource1",
"data":{
"field1":"value1",
"field2":"value2"
}
},
{
"name":"resource2",
"data":{
"field1":"otherValue1",
"field2":"otherValue2"
}
}
]
}