app.didpic.moderation.createAppeal
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.moderation.createAppeal",
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
"message"
11
11
],
12
12
"properties": {
13
13
"message": {
14
14
"type": "string",
15
15
"maxLength": 4000
16
16
},
17
17
"labelValue": {
18
18
"type": "string"
19
19
},
20
20
"subjectCid": {
21
21
"type": "string",
22
22
"format": "cid"
23
23
},
24
24
"subjectDid": {
25
25
"type": "string",
26
26
"format": "did"
27
27
},
28
28
"subjectUri": {
29
29
"type": "string",
30
30
"format": "at-uri"
31
31
}
32
32
}
33
33
},
34
34
"encoding": "application/json"
35
35
},
36
36
"errors": [
37
37
{
38
38
"name": "InvalidRequest"
39
39
},
40
40
{
41
41
"name": "Forbidden"
42
42
}
43
43
],
44
44
"output": {
45
45
"schema": {
46
46
"type": "object",
47
47
"required": [
48
48
"id",
49
49
"createdAt"
50
50
],
51
51
"properties": {
52
52
"id": {
53
53
"type": "integer"
54
54
},
55
55
"createdAt": {
56
56
"type": "string",
57
57
"format": "datetime"
58
58
}
59
59
}
60
60
},
61
61
"encoding": "application/json"
62
62
},
63
-
"description": "File an appeal against a moderation decision on the authenticated user's own account or content. Exactly one of subjectDid (must equal the authenticated DID) or subjectUri (must be authored by the authenticated DID) must be supplied. labelValue identifies the specific label being appealed when applicable."
63
+
"description": "Appeal a moderation decision on the authenticated user's own account or content."
64
64
}
65
65
},
66
66
"$type": "com.atproto.lexicon.schema",
67
67
"lexicon": 1
68
68
}