dev.cartridge.graph.verification
Schema Diff
+2 -0
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.graph.verification:body.displayName", sort: "maxLength", value: "640" }
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.graph.verification:body.accountType", sort: "maxLength", value: "64" }
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
38
"publisher"
38
39
]
39
40
},
40
41
"displayName": {
41
42
"type": "string",
43
+
"maxLength": 640,
42
44
"description": "Display name at time of verification."
43
45
}
44
46
}
45
47
},
46
48
"description": "A Cartridge-specific verification record for studios, developers, and publishers. Written by the Cartridge verifier account."
47
49
}
48
50
},
49
51
"$type": "com.atproto.lexicon.schema",
50
52
"lexicon": 1
51
53
}