dev.cartridge.getVerificationStatus
Schema Diff
+4 -1
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.getVerificationStatus:output.accountType", sort: "maxLength", value: "64" }
- ConstraintTightened ConstraintTightened { vertex_id: "dev.cartridge.getVerificationStatus:output.accountType", sort: "knownValues", old_value: "[\"studio\",\"developer\",\"publisher\"]", new_value: "[\"studio\",\"developer\",\"publisher\",\"game\"]" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.cartridge.getVerificationStatus:output.accountType", sort: "maxLength", value: "64" }
- ConstraintTightened ConstraintTightened { vertex_id: "dev.cartridge.getVerificationStatus:output.accountType", sort: "knownValues", old_value: "[\"studio\",\"developer\",\"publisher\"]", new_value: "[\"studio\",\"developer\",\"publisher\",\"game\"]" }
1
1
{
2
2
"id": "dev.cartridge.getVerificationStatus",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"isVerified"
11
11
],
12
12
"properties": {
13
13
"isVerified": {
14
14
"type": "boolean",
15
15
"description": "Whether the account has been verified."
16
16
},
17
17
"accountType": {
18
18
"type": "string",
19
+
"maxLength": 64,
19
20
"description": "The verified account type. Only present when isVerified is true.",
20
21
"knownValues": [
21
22
"studio",
22
23
"developer",
23
-
"publisher"
24
+
"publisher",
25
+
"game"
24
26
]
25
27
}
26
28
}
27
29
},
28
30
"encoding": "application/json"
29
31
},
30
32
"parameters": {
31
33
"type": "params",
32
34
"required": [
33
35
"handle"
34
36
],
35
37
"properties": {
36
38
"handle": {
37
39
"type": "string",
40
+
"format": "at-identifier",
38
41
"description": "DID or handle to check."
39
42
}
40
43
}
41
44
},
42
45
"description": "Check whether a DID or handle has been verified by the Cartridge verifier. Does not require authentication."
43
46
}
44
47
},
45
48
"$type": "com.atproto.lexicon.schema",
46
49
"lexicon": 1
47
50
}