dev.cartridge.createClaim
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "dev.cartridge.createClaim",
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
"type",
11
11
"contact"
12
12
],
13
13
"properties": {
14
14
"org": {
15
15
"type": "string",
16
16
"format": "at-uri"
17
17
},
18
18
"type": {
19
19
"type": "string",
20
20
"maxLength": 64
21
21
},
22
22
"games": {
23
23
"type": "array",
24
24
"items": {
25
25
"type": "string",
26
26
"format": "at-uri"
27
27
}
28
28
},
29
29
"contact": {
30
30
"type": "string",
31
31
"maxGraphemes": 500
32
32
},
33
33
"message": {
34
34
"type": "string",
35
35
"maxGraphemes": 3000
36
36
}
37
37
}
38
38
},
39
39
"encoding": "application/json"
40
40
},
41
41
"output": {
42
42
"schema": {
43
43
"type": "object",
44
44
"required": [
45
45
"uri"
46
46
],
47
47
"properties": {
48
48
"uri": {
49
49
"type": "string",
50
50
"format": "at-uri"
51
51
}
52
52
}
53
53
},
54
54
"encoding": "application/json"
55
55
},
56
56
"description": "Submit a new ownership claim for game or organization records."
57
57
}
58
58
},
59
59
"$type": "com.atproto.lexicon.schema",
60
60
"lexicon": 1
61
61
}