-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json
More file actions
51 lines (51 loc) · 956 Bytes
/
test.json
File metadata and controls
51 lines (51 loc) · 956 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
43
44
45
46
47
48
49
50
51
[
{
"key": "id",
"name": "ID",
"type": "number",
"read": true,
"write": false
},
{
"key": "title",
"name": "标题",
"type": "string",
"read": true,
"write": true
},
{
"key": "price",
"name": "价格",
"type": "number",
"read": true,
"write": true
},
{
"key": "description",
"name": "描述",
"type": "string",
"read": true,
"write": true
},
{
"key": "created_at",
"name": "创建时间",
"type": "datetime",
"read": true,
"write": false
},
{
"key": "updated_at",
"name": "生效时间",
"type": "datetime",
"read": true,
"write": true
},
{
"key": "flag",
"name": "是否必选",
"type": "boolean",
"read": true,
"write": true
}
]