space.highport.manage.getDomain
Schema Diff
+2 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.manage.getDomain",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "DomainNotFound",
9
9
"description": "No registration for that domain belongs to the caller."
10
10
}
11
11
],
12
12
"output": {
13
13
"schema": {
14
14
"type": "object",
15
15
"required": [
16
16
"domain",
17
17
"records",
18
18
"verification",
19
19
"tls"
20
20
],
21
21
"properties": {
22
22
"tls": {
23
23
"ref": "space.highport.defs#tlsView",
24
24
"type": "ref"
25
25
},
26
26
"domain": {
27
27
"ref": "space.highport.defs#domainView",
28
28
"type": "ref"
29
29
},
30
30
"records": {
31
31
"type": "array",
32
32
"items": {
33
33
"ref": "space.highport.defs#dnsInstruction",
34
34
"type": "ref"
35
35
},
36
-
"description": "The DNS records the registration asks for, exactly as register returned them."
36
+
"description": "The DNS records to publish, the same as register returned."
37
37
},
38
38
"verification": {
39
39
"ref": "space.highport.defs#verificationView",
40
40
"type": "ref"
41
41
}
42
42
}
43
43
},
44
44
"encoding": "application/json"
45
45
},
46
46
"parameters": {
47
47
"type": "params",
48
48
"required": [
49
49
"domain"
50
50
],
51
51
"properties": {
52
52
"domain": {
53
53
"type": "string",
54
54
"maxLength": 253,
55
55
"description": "The registered hostname."
56
56
}
57
57
}
58
58
},
59
-
"description": "Everything the caller needs during onboarding for one domain: its registration state, the DNS records to publish, the last verification result, and the certificate state. The single endpoint an authoring tool polls."
59
+
"description": "Everything a client needs to onboard one domain: registration state, DNS records to publish, last verification result, and certificate state. This is the endpoint to poll."
60
60
}
61
61
},
62
62
"$type": "com.atproto.lexicon.schema",
63
63
"lexicon": 1
64
64
}