garden.lexicon.nourishing-earthworm.project
Schema Diff
+5 -1
1
1
{
2
2
"defs": {
3
3
"main": {
4
4
"key": "tid",
5
5
"type": "record",
6
6
"record": {
7
7
"type": "object",
8
8
"required": [
9
9
"slug",
10
10
"title",
11
11
"category",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"kind": {
16
16
"type": "string"
17
17
},
18
18
"slug": {
19
19
"type": "string",
20
20
"maxLength": 128,
21
21
"description": "URL + gallery-folder id."
22
22
},
23
23
"year": {
24
24
"type": "string"
25
25
},
26
26
"brand": {
27
27
"type": "string"
28
28
},
29
29
"links": {
30
30
"type": "object",
31
31
"properties": {
32
32
"web": {
33
33
"type": "string"
34
34
},
35
35
"imdb": {
36
36
"type": "string"
37
37
},
38
38
"press": {
39
39
"type": "string"
40
40
},
41
41
"vimeo": {
42
42
"type": "string"
43
43
},
44
44
"youtube": {
45
45
"type": "string"
46
46
}
47
47
}
48
48
},
49
49
"order": {
50
50
"type": "integer"
51
51
},
52
52
"title": {
53
53
"type": "string",
54
54
"maxGraphemes": 300
55
55
},
56
56
"agency": {
57
57
"type": "string"
58
58
},
59
59
"artist": {
60
60
"type": "string"
61
61
},
62
62
"awards": {
63
63
"type": "array",
64
64
"items": {
65
65
"type": "string"
66
66
}
67
67
},
68
68
"images": {
69
69
"type": "array",
70
70
"items": {
71
71
"type": "object",
72
72
"required": [
73
73
"image"
74
74
],
75
75
"properties": {
76
76
"alt": {
77
77
"type": "string",
78
78
"maxGraphemes": 500
79
79
},
80
80
"image": {
81
81
"type": "blob",
82
82
"accept": [
83
83
"image/webp",
84
84
"image/jpeg",
85
85
"image/png"
86
86
],
87
87
"maxSize": 6000000
88
88
}
89
89
}
90
90
}
91
91
},
92
92
"writer": {
93
93
"type": "string"
94
94
},
95
+
"deleted": {
96
+
"type": "boolean",
97
+
"default": false
98
+
},
95
99
"logline": {
96
100
"type": "string",
97
101
"maxGraphemes": 2000
98
102
},
99
103
"category": {
100
104
"enum": [
101
105
"Narrative",
102
106
"Music Videos",
103
107
"Commercials",
104
108
"Photography"
105
109
],
106
110
"type": "string"
107
111
},
108
112
"director": {
109
113
"type": "string"
110
114
},
111
115
"featured": {
112
116
"type": "boolean",
113
117
"default": false
114
118
},
115
119
"platform": {
116
120
"type": "string"
117
121
},
118
122
"starring": {
119
123
"type": "string"
120
124
},
121
125
"synopsis": {
122
126
"type": "string",
123
127
"maxGraphemes": 5000
124
128
},
125
129
"createdAt": {
126
130
"type": "string",
127
131
"format": "datetime"
128
132
},
129
133
"subcategory": {
130
134
"type": "string"
131
135
},
132
136
"directedBySten": {
133
137
"type": "boolean",
134
138
"default": false
135
139
},
136
140
"portfolioOrder": {
137
141
"type": "integer"
138
142
}
139
143
}
140
144
},
141
-
"description": "A single work (film, series, music video, commercial, or photography set)."
145
+
"description": "A single moving-image work (film, series, music video, or commercial). Photography collections live in …photoProject."
142
146
}
143
147
},
144
148
"$type": "com.atproto.lexicon.schema",
145
149
"lexicon": 1
146
150
}