io.atcr.hold.listTiers

atcr.io

Documentation

List the hold's available tiers with storage quotas (no pricing info).

main query

List the hold's available tiers with storage quotas (no pricing info).

Output

Encodingapplication/json
tiers array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "tiers"
      ],
      "properties": {
        "tiers": {
          "type": "array",
          "items": {
            "ref": "#defs/tierInfo",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "List the hold's available tiers with storage quotas (no pricing info)."
}
tierInfo object

No description available.

Properties

name string Required

Tier name.

maxLength: 64 bytes
quotaBytes integer Required

Storage quota in bytes.

quotaFormatted string Required

Human-readable quota (e.g. '5.0 GB').

maxLength: 32 bytes
scanOnPush boolean Required

Whether pushing triggers an immediate vulnerability scan.

View raw schema
{
  "type": "object",
  "required": [
    "name",
    "quotaBytes",
    "quotaFormatted",
    "scanOnPush"
  ],
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 64,
      "description": "Tier name."
    },
    "quotaBytes": {
      "type": "integer",
      "description": "Storage quota in bytes."
    },
    "scanOnPush": {
      "type": "boolean",
      "description": "Whether pushing triggers an immediate vulnerability scan."
    },
    "quotaFormatted": {
      "type": "string",
      "maxLength": 32,
      "description": "Human-readable quota (e.g. '5.0 GB')."
    }
  }
}

Lexicon Garden

@