space.highport.manage.verify
Schema Diff
+2 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.manage.verify",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"domain"
11
11
],
12
12
"properties": {
13
13
"domain": {
14
14
"type": "string",
15
15
"maxLength": 253,
16
16
"description": "The registered hostname."
17
17
}
18
18
}
19
19
},
20
20
"encoding": "application/json"
21
21
},
22
22
"errors": [
23
23
{
24
24
"name": "DomainNotFound",
25
25
"description": "No registration for that domain belongs to the caller."
26
26
},
27
27
{
28
28
"name": "RateLimitExceeded",
29
-
"description": "One verification per thirty seconds per domain."
29
+
"description": "Only one verification every thirty seconds per domain."
30
30
}
31
31
],
32
32
"output": {
33
33
"schema": {
34
34
"type": "object",
35
35
"required": [
36
36
"status",
37
37
"checks"
38
38
],
39
39
"properties": {
40
40
"checks": {
41
41
"type": "array",
42
42
"items": {
43
43
"ref": "space.highport.defs#verificationCheck",
44
44
"type": "ref"
45
45
}
46
46
},
47
47
"status": {
48
48
"ref": "space.highport.defs#domainStatus",
49
49
"type": "ref"
50
50
}
51
51
}
52
52
},
53
53
"encoding": "application/json"
54
54
},
55
-
"description": "Force an immediate verification pass over a domain's DNS rather than waiting for the poller. Rate-limited to one call per thirty seconds per domain."
55
+
"description": "Check a domain's DNS now instead of waiting for the poller. Limited to once every thirty seconds per domain."
56
56
}
57
57
},
58
58
"$type": "com.atproto.lexicon.schema",
59
59
"lexicon": 1
60
60
}