dev.cartridge.createVerificationRequest
Schema Diff
+3 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "dev.cartridge.createVerificationRequest",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"accountType",
11
11
"message",
12
12
"contact"
13
13
],
14
14
"properties": {
15
15
"contact": {
16
16
"type": "string",
17
17
"maxGraphemes": 500
18
18
},
19
19
"message": {
20
20
"type": "string",
21
21
"maxGraphemes": 3000
22
22
},
23
23
"accountType": {
24
24
"type": "string",
25
25
"maxLength": 64,
26
26
"knownValues": [
27
27
"studio",
28
28
"developer",
29
-
"publisher"
29
+
"publisher",
30
+
"game"
30
31
]
31
32
}
32
33
}
33
34
},
34
35
"encoding": "application/json"
35
36
},
36
37
"output": {
37
38
"schema": {
38
39
"type": "object",
39
40
"required": [
40
41
"id"
41
42
],
42
43
"properties": {
43
44
"id": {
44
45
"type": "string",
45
46
"maxLength": 128
46
47
}
47
48
}
48
49
},
49
50
"encoding": "application/json"
50
51
},
51
-
"description": "Submit a verification request to flag your account as a studio, developer, or publisher."
52
+
"description": "Submit a verification request to flag your account as a studio, developer, publisher, or game."
52
53
}
53
54
},
54
55
"$type": "com.atproto.lexicon.schema",
55
56
"lexicon": 1
56
57
}