garden.lexicon.nourishing-earthworm.siteConfig
Schema Diff
+14 -0
1
1
{
2
2
"defs": {
3
3
"main": {
4
4
"key": "literal:self",
5
5
"type": "record",
6
6
"record": {
7
7
"type": "object",
8
8
"required": [],
9
9
"properties": {
10
10
"city": {
11
11
"type": "string"
12
12
},
13
13
"name": {
14
14
"type": "string"
15
15
},
16
16
"role": {
17
17
"type": "string"
18
18
},
19
19
"email": {
20
20
"type": "string"
21
21
},
22
22
"union": {
23
23
"type": "string"
24
24
},
25
25
"collage": {
26
26
"type": "array",
27
27
"items": {
28
28
"type": "object",
29
29
"required": [
30
30
"slug",
31
31
"area"
32
32
],
33
33
"properties": {
34
34
"area": {
35
35
"type": "string",
36
36
"maxLength": 2
37
37
},
38
38
"slug": {
39
39
"type": "string"
40
+
},
41
+
"focusX": {
42
+
"type": "integer",
43
+
"maximum": 100,
44
+
"minimum": 0
45
+
},
46
+
"focusY": {
47
+
"type": "integer",
48
+
"maximum": 100,
49
+
"minimum": 0
50
+
},
51
+
"imageIndex": {
52
+
"type": "integer",
53
+
"minimum": 0
40
54
}
41
55
}
42
56
}
43
57
},
44
58
"socials": {
45
59
"type": "object",
46
60
"properties": {
47
61
"imdb": {
48
62
"type": "string"
49
63
},
50
64
"vimeo": {
51
65
"type": "string"
52
66
},
53
67
"instagram": {
54
68
"type": "string"
55
69
}
56
70
}
57
71
},
58
72
"photoTiles": {
59
73
"type": "array",
60
74
"items": {
61
75
"type": "object",
62
76
"required": [
63
77
"title"
64
78
],
65
79
"properties": {
66
80
"note": {
67
81
"type": "string"
68
82
},
69
83
"slug": {
70
84
"type": "string"
71
85
},
72
86
"cover": {
73
87
"type": "blob",
74
88
"accept": [
75
89
"image/webp",
76
90
"image/jpeg",
77
91
"image/png"
78
92
],
79
93
"maxSize": 6000000
80
94
},
81
95
"title": {
82
96
"type": "string"
83
97
}
84
98
}
85
99
}
86
100
},
87
101
"description": {
88
102
"type": "string"
89
103
}
90
104
}
91
105
},
92
106
"description": "Site-wide identity, socials, home-page collage, and /photo tile grid."
93
107
}
94
108
},
95
109
"$type": "com.atproto.lexicon.schema",
96
110
"lexicon": 1
97
111
}