am.noz.atgallery.account
Schema Diff
+12 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 6 non-breaking changes.
Non-Breaking Changes (6)
- AddedVertex AddedVertex { vertex_id: "am.noz.atgallery.account:body.blobCount" }
- AddedVertex AddedVertex { vertex_id: "am.noz.atgallery.account:body.totalBytes" }
- AddedVertex AddedVertex { vertex_id: "am.noz.atgallery.account:body.updatedAt" }
- AddedEdge AddedEdge { src: "am.noz.atgallery.account:body", tgt: "am.noz.atgallery.account:body.blobCount", kind: "prop", name: Some("blobCount") }
- AddedEdge AddedEdge { src: "am.noz.atgallery.account:body", tgt: "am.noz.atgallery.account:body.totalBytes", kind: "prop", name: Some("totalBytes") }
- AddedEdge AddedEdge { src: "am.noz.atgallery.account:body", tgt: "am.noz.atgallery.account:body.updatedAt", kind: "prop", name: Some("updatedAt") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "am.noz.atgallery.account:body.blobCount" }AddedVertex { vertex_id: "am.noz.atgallery.account:body.totalBytes" }AddedVertex { vertex_id: "am.noz.atgallery.account:body.updatedAt" }
Additional Notes
- Non-breaking: AddedEdge { src: "am.noz.atgallery.account:body", tgt: "am.noz.atgallery.account:body.blobCount", kind: "prop", name: Some("blobCount") }
- Non-breaking: AddedEdge { src: "am.noz.atgallery.account:body", tgt: "am.noz.atgallery.account:body.totalBytes", kind: "prop", name: Some("totalBytes") }
- Non-breaking: AddedEdge { src: "am.noz.atgallery.account:body", tgt: "am.noz.atgallery.account:body.updatedAt", kind: "prop", name: Some("updatedAt") }
1
1
{
2
2
"id": "am.noz.atgallery.account",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"formatVersion",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"client": {
15
15
"type": "string",
16
16
"maxLength": 100
17
17
},
18
+
"blobCount": {
19
+
"type": "integer",
20
+
"minimum": 0
21
+
},
18
22
"createdAt": {
19
23
"type": "string",
20
24
"format": "datetime"
21
25
},
26
+
"updatedAt": {
27
+
"type": "string",
28
+
"format": "datetime"
29
+
},
30
+
"totalBytes": {
31
+
"type": "integer",
32
+
"minimum": 0
33
+
},
22
34
"formatVersion": {
23
35
"type": "integer",
24
36
"const": 1
25
37
}
26
38
}
27
39
},
28
40
"description": "A public self-declaration record for an account using ATGallery."
29
41
}
30
42
},
31
43
"$type": "com.atproto.lexicon.schema",
32
44
"lexicon": 1
33
45
}