garden.lexicon.nourishing-earthworm.project
Schema Diff
+1 -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
95
"logline": {
96
96
"type": "string",
97
97
"maxGraphemes": 2000
98
98
},
99
99
"category": {
100
100
"enum": [
101
101
"Narrative",
102
102
"Music Videos",
103
103
"Commercials",
104
104
"Photography"
105
105
],
106
106
"type": "string"
107
107
},
108
108
"director": {
109
109
"type": "string"
110
110
},
111
111
"featured": {
112
112
"type": "boolean",
113
113
"default": false
114
114
},
115
115
"platform": {
116
116
"type": "string"
117
117
},
118
118
"starring": {
119
119
"type": "string"
120
120
},
121
121
"synopsis": {
122
122
"type": "string",
123
123
"maxGraphemes": 5000
124
124
},
125
125
"createdAt": {
126
126
"type": "string",
127
127
"format": "datetime"
128
128
},
129
129
"subcategory": {
130
130
"type": "string"
131
131
},
132
132
"directedBySten": {
133
133
"type": "boolean",
134
134
"default": false
135
135
},
136
136
"portfolioOrder": {
137
137
"type": "integer"
138
138
}
139
139
}
140
140
},
141
-
"description": "A single work (film, series, music video, commercial, or photography set)."
141
+
"description": "A single moving-image work (film, series, music video, or commercial). Photography collections live in …photoProject."
142
142
}
143
143
},
144
144
"$type": "com.atproto.lexicon.schema",
145
145
"lexicon": 1
146
146
}