social.colibri.community.registerCredentials
Schema Diff
+22 -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": "CommunityCredentialsUnrecoverable",
13
+
"description": "The AppView cannot write to the community's repo and could not repair its own access."
14
+
},
15
+
{
16
+
"name": "InvalidRequest",
17
+
"description": "A parameter or body field was missing or malformed."
18
+
},
19
+
{
20
+
"name": "PdsUnavailable",
21
+
"description": "The PDS this operation needs is unreachable or is not a PDS."
22
+
},
23
+
{
24
+
"name": "UpstreamFailure",
25
+
"description": "A service outside this AppView failed."
26
+
}
27
+
],
6
28
"output": {
7
29
"schema": {
8
30
"type": "object",
9
31
"required": [
10
32
"did",
11
33
"source"
12
34
],
13
35
"properties": {
14
36
"did": {
15
37
"type": "string",
16
38
"format": "did"
17
39
},
18
40
"source": {
19
41
"type": "string"
20
42
}
21
43
}
22
44
},
23
45
"encoding": "application/json"
24
46
},
25
47
"parameters": {
26
48
"type": "params",
27
49
"required": [
28
50
"did",
29
51
"pds",
30
52
"identifier",
31
53
"password"
32
54
],
33
55
"properties": {
34
56
"did": {
35
57
"type": "string",
36
58
"format": "did"
37
59
},
38
60
"pds": {
39
61
"type": "string"
40
62
},
41
63
"password": {
42
64
"type": "string"
43
65
},
44
66
"identifier": {
45
67
"type": "string"
46
68
}
47
69
}
48
70
},
49
71
"description": "Registers bring-your-own PDS credentials for a community DID."
50
72
}
51
73
},
52
74
"$type": "com.atproto.lexicon.schema",
53
75
"lexicon": 1
54
76
}