dev.cartridge.getClaim
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "dev.cartridge.getClaim",
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
"claim"
11
11
],
12
12
"properties": {
13
13
"claim": {
14
14
"ref": "#claimView",
15
15
"type": "ref"
16
16
}
17
17
}
18
18
},
19
19
"encoding": "application/json"
20
20
},
21
21
"parameters": {
22
22
"type": "params",
23
23
"required": [
24
24
"uri"
25
25
],
26
26
"properties": {
27
27
"uri": {
28
28
"type": "string",
29
29
"format": "at-uri"
30
30
}
31
31
}
32
32
},
33
33
"description": "Get details of an ownership claim."
34
34
},
35
35
"claimView": {
36
36
"type": "object",
37
37
"required": [
38
38
"uri",
39
39
"cid",
40
40
"type",
41
41
"claimantDid",
42
42
"createdAt"
43
43
],
44
44
"properties": {
45
45
"cid": {
46
46
"type": "string",
47
47
"format": "cid"
48
48
},
49
49
"org": {
50
50
"type": "string",
51
51
"format": "at-uri"
52
52
},
53
53
"uri": {
54
54
"type": "string",
55
55
"format": "at-uri"
56
56
},
57
57
"type": {
58
58
"type": "string",
59
59
"maxLength": 64,
60
60
"knownValues": [
61
61
"game",
62
62
"org"
63
63
]
64
64
},
65
65
"games": {
66
66
"type": "array",
67
67
"items": {
68
68
"ref": "games.gamesgamesgamesgames.defs#gameSummaryView",
69
69
"type": "ref"
70
70
}
71
71
},
72
72
"review": {
73
73
"ref": "#reviewView",
74
74
"type": "ref"
75
75
},
76
76
"contact": {
77
77
"type": "string",
78
78
"maxLength": 256
79
79
},
80
80
"message": {
81
81
"type": "string",
82
82
"maxLength": 3000
83
83
},
84
84
"createdAt": {
85
85
"type": "string",
86
86
"format": "datetime"
87
87
},
88
88
"claimantDid": {
89
89
"type": "string",
90
90
"format": "did"
91
91
}
92
92
}
93
93
},
94
94
"reviewView": {
95
95
"type": "object",
96
96
"required": [
97
97
"uri",
98
98
"status",
99
99
"reviewedBy",
100
100
"createdAt"
101
101
],
102
102
"properties": {
103
103
"uri": {
104
104
"type": "string",
105
105
"format": "at-uri"
106
106
},
107
107
"reason": {
108
108
"type": "string",
109
109
"maxLength": 3000
110
110
},
111
111
"status": {
112
112
"type": "string",
113
113
"maxLength": 64,
114
114
"knownValues": [
115
115
"approved",
116
116
"denied"
117
117
]
118
118
},
119
119
"createdAt": {
120
120
"type": "string",
121
121
"format": "datetime"
122
122
},
123
123
"reviewedBy": {
124
124
"type": "string",
125
125
"format": "did"
126
126
},
127
127
"approvedGames": {
128
128
"type": "array",
129
129
"items": {
130
130
"type": "string",
131
131
"format": "at-uri"
132
132
}
133
133
}
134
134
}
135
135
}
136
136
},
137
137
"$type": "com.atproto.lexicon.schema",
138
138
"lexicon": 1
139
139
}