io.atcr.hold.listTiers
Schema Diff
+6 -1
1
1
{
2
2
"id": "io.atcr.hold.listTiers",
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
"tiers"
11
11
],
12
12
"properties": {
13
13
"tiers": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "#defs/tierInfo",
17
17
"type": "ref"
18
18
}
19
19
}
20
20
}
21
21
},
22
22
"encoding": "application/json"
23
23
},
24
24
"description": "List the hold's available tiers with storage quotas (no pricing info)."
25
25
},
26
26
"tierInfo": {
27
27
"type": "object",
28
28
"required": [
29
29
"name",
30
30
"quotaBytes",
31
-
"quotaFormatted"
31
+
"quotaFormatted",
32
+
"scanOnPush"
32
33
],
33
34
"properties": {
34
35
"name": {
35
36
"type": "string",
36
37
"maxLength": 64,
37
38
"description": "Tier name."
38
39
},
39
40
"quotaBytes": {
40
41
"type": "integer",
41
42
"description": "Storage quota in bytes."
42
43
},
44
+
"scanOnPush": {
45
+
"type": "boolean",
46
+
"description": "Whether pushing triggers an immediate vulnerability scan."
47
+
},
43
48
"quotaFormatted": {
44
49
"type": "string",
45
50
"maxLength": 32,
46
51
"description": "Human-readable quota (e.g. '5.0 GB')."
47
52
}
48
53
}
49
54
}
50
55
},
51
56
"$type": "com.atproto.lexicon.schema",
52
57
"lexicon": 1
53
58
}