-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json
More file actions
30 lines (29 loc) · 711 Bytes
/
test.json
File metadata and controls
30 lines (29 loc) · 711 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
{
"model_name":"Post",
"model_name_lowercase":"post",
"model_description":"a collection about post",
"model_name_plural":"posts",
"fields":[
{
"type":"String",
"attribute_name":"title"
},
{
"type":"Text",
"attribute_name":"content"
},
{
"type":"Date",
"attribute_name":"birthday"
},
{
"type":"Enumeration",
"attribute_name":"type_of_post",
"predefined_values":["Swimming","Football","Reading","Gaming","PingPong"]
},
{
"type":"JSON",
"attribute_name":"anythingInJson"
}
]
}