social.colibri.beta.community
Schema Diff
+2 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.beta.community",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name"
11
11
],
12
12
"properties": {
13
13
"name": {
14
14
"type": "string",
15
15
"maxLength": 32,
16
16
"minLength": 1,
17
17
"description": "The community's name."
18
18
},
19
19
"banner": {
20
20
"type": "blob",
21
21
"accept": [
22
22
"image/jpeg",
23
23
"image/png",
24
24
"image/gif",
25
25
"image/webp"
26
26
],
27
+
"maxSize": 4194304,
27
28
"description": "Wide image shown at the top of the community."
28
29
},
29
30
"picture": {
30
31
"type": "blob",
31
32
"accept": [
32
33
"image/jpeg",
33
34
"image/png",
34
35
"image/gif",
35
36
"image/webp"
36
37
],
38
+
"maxSize": 1048576,
37
39
"description": "Square image shown as the community's icon."
38
40
},
39
41
"description": {
40
42
"type": "string",
41
43
"maxLength": 256,
42
44
"description": "A short description."
43
45
},
44
46
"migratedFrom": {
45
47
"type": "string",
46
48
"format": "at-uri",
47
49
"description": "Set on a community created by migrating a repo-backed community. Points at the legacy community record it replaces, so its history can be served alongside."
48
50
}
49
51
}
50
52
},
51
53
"description": "A community's public identity. Lives in the community's profile space, which is readable without membership unless the community is private."
52
54
}
53
55
},
54
56
"$type": "com.atproto.lexicon.schema",
55
57
"lexicon": 1
56
58
}