is.logue.logue
Schema Diff
+10 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "is.logue.logue:body.finishedAt" }
- AddedVertex AddedVertex { vertex_id: "is.logue.logue:body.startedAt" }
- AddedEdge AddedEdge { src: "is.logue.logue:body", tgt: "is.logue.logue:body.finishedAt", kind: "prop", name: Some("finishedAt") }
- AddedEdge AddedEdge { src: "is.logue.logue:body", tgt: "is.logue.logue:body.startedAt", kind: "prop", name: Some("startedAt") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "is.logue.logue:body.finishedAt" }AddedVertex { vertex_id: "is.logue.logue:body.startedAt" }
Additional Notes
- Non-breaking: AddedEdge { src: "is.logue.logue:body", tgt: "is.logue.logue:body.finishedAt", kind: "prop", name: Some("finishedAt") }
- Non-breaking: AddedEdge { src: "is.logue.logue:body", tgt: "is.logue.logue:body.startedAt", kind: "prop", name: Some("startedAt") }
1
1
{
2
2
"id": "is.logue.logue",
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
+
"startedAt": {
14
+
"type": "string",
15
+
"format": "datetime",
16
+
"description": "Timestamp when the logue was started."
17
+
},
18
+
"finishedAt": {
19
+
"type": "string",
20
+
"format": "datetime",
21
+
"description": "Timestamp when the logue was marked as finished."
22
+
},
13
23
"publication": {
14
24
"type": "string",
15
25
"format": "at-uri",
16
26
"required": true,
17
27
"description": "Weak reference to a `site.standard.publication` compatible record."
18
28
}
19
29
}
20
30
}
21
31
}
22
32
},
23
33
"$type": "com.atproto.lexicon.schema",
24
34
"lexicon": 1
25
35
}