is.currents.feed.collection
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "is.currents.feed.collection:body.parent" }
- AddedEdge AddedEdge { src: "is.currents.feed.collection:body", tgt: "is.currents.feed.collection:body.parent", kind: "prop", name: Some("parent") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "is.currents.feed.collection:body.parent" }
Additional Notes
- Non-breaking: AddedEdge { src: "is.currents.feed.collection:body", tgt: "is.currents.feed.collection:body.parent", kind: "prop", name: Some("parent") }
1
1
{
2
2
"id": "is.currents.feed.collection",
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": 1000,
17
17
"description": "Human-readable name of the collection.",
18
18
"maxGraphemes": 100
19
19
},
20
+
"parent": {
21
+
"ref": "com.atproto.repo.strongRef",
22
+
"type": "ref",
23
+
"description": "Strong reference to the parent collection. Present only on sub-collections; absent on root collections."
24
+
},
20
25
"createdAt": {
21
26
"type": "string",
22
27
"format": "datetime"
23
28
},
24
29
"description": {
25
30
"type": "string",
26
31
"maxLength": 10000,
27
32
"description": "Optional description shown with the collection.",
28
33
"maxGraphemes": 1000
29
34
}
30
35
}
31
36
},
32
37
"description": "A collection of saved items curated by an account."
33
38
}
34
39
},
35
40
"$type": "com.atproto.lexicon.schema",
36
41
"lexicon": 1
37
42
}