site.standard.graph.subscription
Schema Diff
+5 -1
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "site.standard.graph.subscription:body.createdAt" }
- AddedEdge AddedEdge { src: "site.standard.graph.subscription:body", tgt: "site.standard.graph.subscription:body.createdAt", kind: "prop", name: Some("createdAt") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "site.standard.graph.subscription:body.createdAt" }
Additional Notes
- Non-breaking: AddedEdge { src: "site.standard.graph.subscription:body", tgt: "site.standard.graph.subscription:body.createdAt", kind: "prop", name: Some("createdAt") }
1
1
{
2
2
"id": "site.standard.graph.subscription",
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
"publication"
11
11
],
12
12
"properties": {
13
+
"createdAt": {
14
+
"type": "string",
15
+
"format": "datetime"
16
+
},
13
17
"publication": {
14
18
"type": "string",
15
19
"format": "at-uri",
16
20
"description": "AT-URI reference to the publication record being subscribed to (ex: at://did:plc:abc123/site.standard.publication/xyz789)."
17
21
}
18
22
}
19
23
},
20
-
"description": "Record declaring a subscription to a publication"
24
+
"description": "Record declaring a subscription to a publication."
21
25
}
22
26
},
23
27
"$type": "com.atproto.lexicon.schema",
24
28
"lexicon": 1
25
29
}