space.highport.manage.register
Schema Diff
+10 -10
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.manage.register",
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
"space": {
14
14
"type": "string",
15
15
"format": "at-uri",
16
-
"description": "Register the domain to a space bard is connected to rather than to the caller's public repo. The caller must be the space's authority."
16
+
"description": "Register the domain to this space instead of the caller's public repo. Bard must be connected to the space, and the caller must be its authority."
17
17
},
18
18
"domain": {
19
19
"type": "string",
20
20
"maxLength": 253
21
21
}
22
22
}
23
23
},
24
24
"encoding": "application/json"
25
25
},
26
26
"errors": [
27
27
{
28
28
"name": "InvalidDomain",
29
-
"description": "Not a syntactically valid, non-reserved, public-suffix-safe domain."
29
+
"description": "Not a valid, non-reserved, public-suffix-safe domain."
30
30
},
31
31
{
32
32
"name": "DomainTaken",
33
-
"description": "Registered to a different DID and still active."
33
+
"description": "The domain is taken: registered to a different DID and verified, active or suspended; reserved under a base for a different DID; or released while its wildcard grant is still being retired, which blocks everyone, the previous holder included."
34
34
},
35
35
{
36
36
"name": "DomainDenied",
37
-
"description": "On the operator denylist."
37
+
"description": "The domain is on the operator denylist."
38
38
},
39
39
{
40
40
"name": "QuotaExceeded",
41
41
"description": "This DID has reached its domain limit."
42
42
},
43
43
{
44
44
"name": "AlreadyRegistered",
45
-
"description": "Already registered to this DID; use getDomain to retrieve instructions."
45
+
"description": "Already registered to this DID. Use getDomain to get the instructions again."
46
46
},
47
47
{
48
48
"name": "SpaceNotFound",
49
-
"description": "Bard is not connected to that space; call connectSpace first."
49
+
"description": "Bard is not connected to that space. Call connectSpace first."
50
50
},
51
51
{
52
52
"name": "NotSpaceAuthority",
53
53
"description": "Only the space's authority may register a domain to it."
54
54
},
55
55
{
56
56
"name": "SpaceNotSynced",
57
-
"description": "Registered, but bard cannot currently read the space, so the domain will not serve until it can."
57
+
"description": "Registered, but bard cannot read the space right now, so the domain will not serve until it can."
58
58
},
59
59
{
60
60
"name": "DomainDelegated",
61
-
"description": "The domain is under a delegation base, whose names only the base's owner may register; the base's owner reserves them for other identities with reserveDomain."
61
+
"description": "The domain is under a delegation base. Only the base's owner can hand out names there, with reserveDomain."
62
62
}
63
63
],
64
64
"output": {
65
65
"schema": {
66
66
"type": "object",
67
67
"required": [
68
68
"domain",
69
69
"status",
70
70
"records",
71
71
"expiresAt"
72
72
],
73
73
"properties": {
74
74
"space": {
75
75
"type": "string",
76
76
"format": "at-uri"
77
77
},
78
78
"domain": {
79
79
"type": "string"
80
80
},
81
81
"status": {
82
82
"ref": "space.highport.defs#domainStatus",
83
83
"type": "ref"
84
84
},
85
85
"records": {
86
86
"type": "array",
87
87
"items": {
88
88
"ref": "space.highport.defs#dnsInstruction",
89
89
"type": "ref"
90
90
}
91
91
},
92
92
"expiresAt": {
93
93
"type": "string",
94
94
"format": "datetime",
95
-
"description": "After this time an unverified registration is released."
95
+
"description": "An unverified registration is released after this time."
96
96
}
97
97
}
98
98
},
99
99
"encoding": "application/json"
100
100
},
101
-
"description": "Register a domain to the calling identity — or, with space, to a space the caller is the authority of — and obtain the DNS records needed to prove ownership and route traffic."
101
+
"description": "Register a domain to the caller, or to a space the caller is the authority of, and get the DNS records needed to prove ownership and route traffic."
102
102
}
103
103
},
104
104
"$type": "com.atproto.lexicon.schema",
105
105
"lexicon": 1
106
106
}