systems.numina.site.curation
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "systems.numina.site.curation",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"properties": {
10
10
"design": {
11
11
"type": "array",
12
12
"items": {
13
13
"ref": "#designEntry",
14
14
"type": "ref"
15
15
}
16
16
},
17
17
"pinned": {
18
18
"type": "array",
19
19
"items": {
20
20
"type": "string",
21
21
"format": "at-uri"
22
22
}
23
23
},
24
24
"photography": {
25
25
"type": "array",
26
26
"items": {
27
27
"ref": "#photoEntry",
28
28
"type": "ref"
29
29
}
30
30
}
31
31
}
32
32
},
33
33
"description": "Editorial curation for the scarnecchia.net site: photography selection and order, design portfolio pieces, pinned documents."
34
34
},
35
35
"photoEntry": {
36
36
"type": "object",
37
37
"required": [
38
38
"subject",
39
39
"position"
40
40
],
41
41
"properties": {
42
42
"feature": {
43
43
"type": "boolean"
44
44
},
45
45
"subject": {
46
46
"type": "string",
47
47
"format": "at-uri"
48
48
},
49
49
"position": {
50
50
"type": "integer"
51
51
},
52
52
"flickrUrl": {
53
53
"type": "string",
54
54
"format": "uri"
55
55
}
56
56
}
57
57
},
58
58
"designEntry": {
59
59
"type": "object",
60
60
"required": [
61
61
"title",
62
62
"year",
63
63
"medium",
64
64
"image",
65
65
"position"
66
66
],
67
67
"properties": {
68
68
"year": {
69
69
"type": "integer"
70
70
},
71
71
"image": {
72
72
"type": "blob",
73
73
"accept": [
74
74
"image/jpeg",
75
75
"image/png",
76
76
"image/webp"
77
77
],
78
-
"maxSize": 1000000
78
+
"maxSize": 2000000
79
79
},
80
80
"title": {
81
81
"type": "string",
82
82
"maxLength": 200
83
83
},
84
84
"medium": {
85
85
"type": "string",
86
86
"maxLength": 100
87
87
},
88
88
"position": {
89
89
"type": "integer"
90
90
},
91
91
"description": {
92
92
"type": "string",
93
93
"maxLength": 2000
94
94
}
95
95
}
96
96
}
97
97
},
98
98
"$type": "com.atproto.lexicon.schema",
99
99
"lexicon": 1
100
100
}