dev.cartridge.graph.verification
Schema Diff
+5 -2
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.graph.verification:body.accountType", sort: "maxLength", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.graph.verification:body.displayName", sort: "maxLength", value: "640" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.graph.verification:body.accountType", sort: "maxLength", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.graph.verification:body.displayName", sort: "maxLength", value: "640" }
1
1
{
2
2
"id": "dev.cartridge.graph.verification",
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
"subject",
11
11
"handle",
12
12
"displayName",
13
13
"accountType",
14
14
"createdAt"
15
15
],
16
16
"properties": {
17
17
"handle": {
18
18
"type": "string",
19
19
"format": "handle",
20
20
"description": "Handle of the verified account at time of verification."
21
21
},
22
22
"subject": {
23
23
"type": "string",
24
24
"format": "did",
25
25
"description": "DID of the verified account."
26
26
},
27
27
"createdAt": {
28
28
"type": "string",
29
29
"format": "datetime"
30
30
},
31
31
"accountType": {
32
32
"type": "string",
33
+
"maxLength": 64,
33
34
"description": "Type of verified account.",
34
35
"knownValues": [
35
36
"studio",
36
37
"developer",
37
-
"publisher"
38
+
"publisher",
39
+
"game"
38
40
]
39
41
},
40
42
"displayName": {
41
43
"type": "string",
44
+
"maxLength": 640,
42
45
"description": "Display name at time of verification."
43
46
}
44
47
}
45
48
},
46
-
"description": "A Cartridge-specific verification record for studios, developers, and publishers. Written by the Cartridge verifier account."
49
+
"description": "A Cartridge-specific verification record for studios, developers, publishers, and games. Written by the Cartridge verifier account."
47
50
}
48
51
},
49
52
"$type": "com.atproto.lexicon.schema",
50
53
"lexicon": 1
51
54
}