social.colibri.community.registerCredentials
Schema Diff
+14 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.registerCredentials",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
+
"errors": [
7
+
{
8
+
"name": "AuthRequired",
9
+
"description": "Missing, malformed, or unverifiable service auth."
10
+
},
11
+
{
12
+
"name": "InvalidRequest",
13
+
"description": "A parameter or body field was missing or malformed."
14
+
},
15
+
{
16
+
"name": "UpstreamFailure",
17
+
"description": "A service outside this AppView failed."
18
+
}
19
+
],
6
20
"output": {
7
21
"schema": {
8
22
"type": "object",
9
23
"required": [
10
24
"did",
11
25
"source"
12
26
],
13
27
"properties": {
14
28
"did": {
15
29
"type": "string",
16
30
"format": "did"
17
31
},
18
32
"source": {
19
33
"type": "string"
20
34
}
21
35
}
22
36
},
23
37
"encoding": "application/json"
24
38
},
25
39
"parameters": {
26
40
"type": "params",
27
41
"required": [
28
42
"did",
29
43
"pds",
30
44
"identifier",
31
45
"password"
32
46
],
33
47
"properties": {
34
48
"did": {
35
49
"type": "string",
36
50
"format": "did"
37
51
},
38
52
"pds": {
39
53
"type": "string"
40
54
},
41
55
"password": {
42
56
"type": "string"
43
57
},
44
58
"identifier": {
45
59
"type": "string"
46
60
}
47
61
}
48
62
},
49
63
"description": "Registers bring-your-own PDS credentials for a community DID."
50
64
}
51
65
},
52
66
"$type": "com.atproto.lexicon.schema",
53
67
"lexicon": 1
54
68
}