app.didpic.identity.resolveHandle
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.identity.resolveHandle",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "HandleNotFound"
9
9
}
10
10
],
11
11
"output": {
12
12
"schema": {
13
13
"type": "object",
14
14
"required": [
15
15
"did"
16
16
],
17
17
"properties": {
18
18
"did": {
19
19
"type": "string",
20
20
"format": "did"
21
21
}
22
22
}
23
23
},
24
24
"encoding": "application/json"
25
25
},
26
26
"parameters": {
27
27
"type": "params",
28
28
"required": [
29
29
"handle"
30
30
],
31
31
"properties": {
32
32
"handle": {
33
33
"type": "string",
34
34
"format": "handle"
35
35
}
36
36
}
37
37
},
38
-
"description": "Resolve a handle (e.g. alice.example.com) to a DID. Strict: DIDs are rejected — callers should pass them straight through."
38
+
"description": "Resolve a handle to a DID."
39
39
}
40
40
},
41
41
"$type": "com.atproto.lexicon.schema",
42
42
"lexicon": 1
43
43
}