space.highport.manage.listDomainBilling
Schema Diff
+6 -6
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.manage.listDomainBilling",
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
"domains"
11
11
],
12
12
"properties": {
13
13
"cursor": {
14
14
"type": "string",
15
15
"description": "Present when more entries exist."
16
16
},
17
17
"domains": {
18
18
"type": "array",
19
19
"items": {
20
20
"type": "object",
21
21
"required": [
22
22
"domain",
23
23
"payerPolicy",
24
24
"fallbackToOwner"
25
25
],
26
26
"properties": {
27
27
"domain": {
28
28
"type": "string",
29
29
"description": "The domain."
30
30
},
31
31
"updatedAt": {
32
32
"type": "string",
33
33
"format": "datetime",
34
-
"description": "When it last changed. Absent when the domain has no arrangement recorded and is reporting the default."
34
+
"description": "When this last changed. Absent when the domain is using the default."
35
35
},
36
36
"payerPolicy": {
37
37
"type": "string",
38
38
"description": "owner or visitor.",
39
39
"knownValues": [
40
40
"owner",
41
41
"visitor"
42
42
]
43
43
},
44
44
"fallbackToOwner": {
45
45
"type": "boolean",
46
-
"description": "Under the visitor policy, whether a visitor with nothing left falls back to the owner rather than being refused."
46
+
"description": "Under the visitor policy: whether a visitor who has run out falls back to the owner instead of being refused."
47
47
},
48
48
"visitorCapBytes": {
49
49
"type": "integer",
50
-
"description": "A ceiling on what any single visitor may spend here per period."
50
+
"description": "The most any one visitor can spend here per period."
51
51
},
52
52
"ownerBudgetBytes": {
53
53
"type": "integer",
54
54
"minimum": 0,
55
-
"description": "Bytes of the owner's own allowance this site may spend on readers who have not signed in, per period. 0 requires a sign-in before anything is served; omitted leaves payerPolicy and fallbackToOwner in charge. When present it derives both."
55
+
"description": "How many bytes of the owner's allowance this site may spend per period on readers who are not signed in. 0 requires sign-in for everything. When set, it determines payerPolicy and fallbackToOwner; when omitted, those two apply as set."
56
56
}
57
57
},
58
-
"description": "Whose allowance a domain's traffic draws on."
58
+
"description": "Whose allowance a domain's traffic uses."
59
59
}
60
60
}
61
61
}
62
62
},
63
63
"encoding": "application/json"
64
64
},
65
65
"parameters": {
66
66
"type": "params",
67
67
"properties": {
68
68
"limit": {
69
69
"type": "integer",
70
70
"default": 50,
71
71
"maximum": 100,
72
72
"minimum": 1,
73
73
"description": "Maximum entries to return."
74
74
},
75
75
"cursor": {
76
76
"type": "string",
77
77
"description": "Pagination cursor from a previous response."
78
78
}
79
79
}
80
80
},
81
-
"description": "The payer policy of every domain the calling identity owns. A domain with no arrangement recorded reports the default: the owner pays, with no visitor cap."
81
+
"description": "The payer policy of every domain the caller owns. A domain with nothing set reports the default: the owner pays, with no visitor cap."
82
82
}
83
83
},
84
84
"$type": "com.atproto.lexicon.schema",
85
85
"lexicon": 1
86
86
}