-
Notifications
You must be signed in to change notification settings - Fork 0
/
siteData.json
65 lines (65 loc) · 1.63 KB
/
siteData.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
58
59
60
61
62
63
64
65
{
"data": {
"name": "Vic van Cooten",
"slogan": "Sweet-ass site.",
"email": "[email protected]",
"phone": "0620212345"
},
"menus": {
"main": [
{
"title": "About me",
"page": "5f0a3b7dc3ae7c019abef01c",
"to": "about-me"
},
{
"title": "Contact",
"page": "5f0a3b88c3ae7c019abef01d",
"to": "contact"
},
{
"title": "Portfolio",
"page": "5f0a3b90c3ae7c019abef01e",
"to": "portfolio"
},
{ "title": "My blog", "page": "5f0a3b97c3ae7c019abef01f", "to": "blog" }
]
},
"baseUrl": "https://appbox.vicvancooten.nl",
"objects": {
"publisher-pages": {
"title": { "name": "Title", "required": true, "type": "input" },
"slug": {
"name": "Slug",
"required": true,
"unique": true,
"type": "input"
},
"image": { "name": "Image", "type": "picture" },
"body": { "name": "Body", "type": "data" },
"site": {
"name": "Site",
"required": true,
"type": "relationship",
"typeArgs": { "relationshipTo": "publish-sites" }
}
},
"publisher-posts": {
"name": { "name": "Name", "required": true, "type": "input" },
"slug": {
"name": "Slug",
"required": true,
"unique": true,
"type": "input"
},
"image": { "name": "Image", "type": "picture" },
"post": { "name": "Post", "type": "richtext" },
"site": {
"name": "Site",
"type": "relationship",
"typeArgs": { "relationshipTo": "publish-sites" },
"required": true
}
}
}
}