com.bad-example.identity.resolveMiniDoc
Schema Diff
+6 -6
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.bad-example.identity.resolveMiniDoc",
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
"did",
11
11
"handle",
12
12
"pds",
13
13
"signing_key"
14
14
],
15
15
"properties": {
16
16
"did": {
17
17
"type": "string",
18
18
"format": "did",
19
-
"description": "DID, bi-directionally verified if a handle was provided in the query."
19
+
"description": "DID, bi-directionally verified if a handle was provided in the query"
20
20
},
21
21
"pds": {
22
22
"type": "string",
23
23
"format": "uri",
24
-
"description": "The identity's PDS URL"
24
+
"description": "the identity's PDS URL"
25
25
},
26
26
"handle": {
27
27
"type": "string",
28
28
"format": "handle",
29
-
"description": "The validated handle of the account or `handle.invalid` if the handle\ndid not bi-directionally match the DID document."
29
+
"description": "the validated handle of the account or 'handle.invalid' if the handle did not bi-directionally match the DID document"
30
30
},
31
31
"signing_key": {
32
32
"type": "string",
33
-
"description": "The atproto signing key publicKeyMultibase\n\nLegacy key encoding not supported. the key is returned directly; `id`,\n`type`, and `controller` are omitted."
33
+
"description": "the atproto signing key publicKeyMultibase"
34
34
}
35
35
}
36
36
},
37
37
"encoding": "application/json"
38
38
},
39
39
"parameters": {
40
40
"type": "params",
41
41
"required": [
42
42
"identifier"
43
43
],
44
44
"properties": {
45
45
"identifier": {
46
46
"type": "string",
47
47
"format": "at-identifier",
48
-
"description": "Handle or DID to resolve"
48
+
"description": "handle or DID to resolve"
49
49
}
50
50
}
51
51
},
52
-
"description": "Like [com.atproto.identity.resolveIdentity](https://docs.bsky.app/docs/api/com-atproto-identity-resolve-identity) but instead of the full `didDoc` it returns an atproto-relevant subset."
52
+
"description": "like com.atproto.identity.resolveIdentity but instead of the full didDoc it returns an atproto-relevant subset"
53
53
}
54
54
},
55
55
"$type": "com.atproto.lexicon.schema",
56
56
"lexicon": 1
57
57
}