com.suibari.nagi.channel
Schema Diff
+4 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "com.suibari.nagi.channel:body.pinnedPost" }
- AddedEdge AddedEdge { src: "com.suibari.nagi.channel:body", tgt: "com.suibari.nagi.channel:body.pinnedPost", kind: "prop", name: Some("pinnedPost") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "com.suibari.nagi.channel:body.pinnedPost" }
Additional Notes
- Non-breaking: AddedEdge { src: "com.suibari.nagi.channel:body", tgt: "com.suibari.nagi.channel:body.pinnedPost", kind: "prop", name: Some("pinnedPost") }
1
1
{
2
2
"id": "com.suibari.nagi.channel",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"name": {
15
15
"type": "string",
16
16
"maxLength": 500,
17
17
"maxGraphemes": 50
18
18
},
19
19
"banner": {
20
20
"type": "blob",
21
21
"accept": [
22
22
"image/jpeg",
23
23
"image/png",
24
24
"image/webp"
25
25
],
26
26
"maxSize": 1000000
27
27
},
28
28
"createdAt": {
29
29
"type": "string",
30
30
"format": "datetime"
31
31
},
32
+
"pinnedPost": {
33
+
"ref": "com.atproto.repo.strongRef",
34
+
"type": "ref"
35
+
},
32
36
"description": {
33
37
"type": "string",
34
38
"maxLength": 3000,
35
39
"maxGraphemes": 300
36
40
}
37
41
}
38
42
}
39
43
}
40
44
},
41
45
"$type": "com.atproto.lexicon.schema",
42
46
"lexicon": 1
43
47
}