app.didpic.admin.grantRole
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.admin.grantRole",
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
"did",
11
11
"role"
12
12
],
13
13
"properties": {
14
14
"did": {
15
15
"type": "string",
16
16
"format": "did"
17
17
},
18
18
"role": {
19
19
"enum": [
20
20
"moderator",
21
21
"administrator"
22
22
],
23
23
"type": "string"
24
24
}
25
25
}
26
26
},
27
27
"encoding": "application/json"
28
28
},
29
29
"output": {
30
30
"schema": {
31
31
"type": "object",
32
32
"properties": {}
33
33
},
34
34
"encoding": "application/json"
35
35
},
36
-
"description": "Grant a role to an actor. Administrator-only."
36
+
"description": "Grant a role."
37
37
}
38
38
},
39
39
"$type": "com.atproto.lexicon.schema",
40
40
"lexicon": 1
41
41
}