me.wilb.content.quote
Schema Diff
+3 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "me.wilb.content.quote:body.author" }
- AddedEdge AddedEdge { src: "me.wilb.content.quote:body", tgt: "me.wilb.content.quote:body.author", kind: "prop", name: Some("author") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "me.wilb.content.quote:body.author" }
Additional Notes
- Non-breaking: AddedEdge { src: "me.wilb.content.quote:body", tgt: "me.wilb.content.quote:body.author", kind: "prop", name: Some("author") }
1
1
{
2
2
"id": "me.wilb.content.quote",
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
"quoteText",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
+
"author": {
15
+
"type": "string"
16
+
},
14
17
"createdAt": {
15
18
"type": "string",
16
19
"format": "datetime"
17
20
},
18
21
"quoteText": {
19
22
"type": "string"
20
23
},
21
24
"updatedAt": {
22
25
"type": "string",
23
26
"format": "datetime"
24
27
}
25
28
}
26
29
},
27
30
"description": "An inspirational quote"
28
31
}
29
32
},
30
33
"$type": "com.atproto.lexicon.schema",
31
34
"lexicon": 1
32
35
}