space.highport.admin.getQuota
Schema Diff
+2 -1
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintTightened ConstraintTightened { vertex_id: "space.highport.admin.getQuota#quotaView.quota", sort: "knownValues", old_value: "[\"sites\",\"tiles\",\"spaces\",\"maxBlobBytes\",\"monthlyBandwidthBytes\"]", new_value: "[\"sites\",\"tiles\",\"tileBytes\",\"spaces\",\"maxBlobBytes\",\"monthlyBandwidthBytes\"]" }
Migration Guidance
Constraint Changes
- ConstraintTightened ConstraintTightened { vertex_id: "space.highport.admin.getQuota#quotaView.quota", sort: "knownValues", old_value: "[\"sites\",\"tiles\",\"spaces\",\"maxBlobBytes\",\"monthlyBandwidthBytes\"]", new_value: "[\"sites\",\"tiles\",\"tileBytes\",\"spaces\",\"maxBlobBytes\",\"monthlyBandwidthBytes\"]" }
1
1
{
2
2
"id": "space.highport.admin.getQuota",
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
"did",
11
11
"quotas"
12
12
],
13
13
"properties": {
14
14
"did": {
15
15
"type": "string",
16
16
"format": "did"
17
17
},
18
18
"quotas": {
19
19
"type": "array",
20
20
"items": {
21
21
"ref": "#quotaView",
22
22
"type": "ref"
23
23
}
24
24
}
25
25
}
26
26
},
27
27
"encoding": "application/json"
28
28
},
29
29
"parameters": {
30
30
"type": "params",
31
31
"required": [
32
32
"did"
33
33
],
34
34
"properties": {
35
35
"did": {
36
36
"type": "string",
37
37
"format": "did"
38
38
}
39
39
}
40
40
},
41
41
"description": "Every per-identity quota for one DID: the limit that applies, the deployment default, and the operator override that replaced it, if there is one."
42
42
},
43
43
"quotaView": {
44
44
"type": "object",
45
45
"required": [
46
46
"quota",
47
47
"limit",
48
48
"default",
49
49
"overridden"
50
50
],
51
51
"properties": {
52
52
"limit": {
53
53
"type": "integer",
54
54
"minimum": 0,
55
-
"description": "The limit that applies to this identity: the override when there is one, the default otherwise. A count for sites, tiles and spaces; bytes for the other two."
55
+
"description": "The limit that applies to this identity: the override when there is one, the default otherwise. A count for sites, tiles and spaces; bytes for tileBytes, maxBlobBytes and monthlyBandwidthBytes."
56
56
},
57
57
"quota": {
58
58
"type": "string",
59
59
"knownValues": [
60
60
"sites",
61
61
"tiles",
62
+
"tileBytes",
62
63
"spaces",
63
64
"maxBlobBytes",
64
65
"monthlyBandwidthBytes"
65
66
]
66
67
},
67
68
"setBy": {
68
69
"type": "string",
69
70
"format": "did",
70
71
"description": "The operator that wrote the override. Absent when there is none."
71
72
},
72
73
"reason": {
73
74
"type": "string",
74
75
"maxLength": 1000
75
76
},
76
77
"default": {
77
78
"type": "integer",
78
79
"minimum": 0,
79
80
"description": "What the deployment's configuration says for an identity with no override."
80
81
},
81
82
"updatedAt": {
82
83
"type": "string",
83
84
"format": "datetime"
84
85
},
85
86
"overridden": {
86
87
"type": "boolean"
87
88
}
88
89
},
89
90
"description": "One quota for one identity."
90
91
}
91
92
},
92
93
"$type": "com.atproto.lexicon.schema",
93
94
"lexicon": 1
94
95
}