space.highport.admin.getQuota

lexicons.highport.space

Documentation

Every quota for one DID: the limit in effect, the deployment default, and any operator override.

main query

Every quota for one DID: the limit in effect, the deployment default, and any operator override.

Parameters

did string did Required

A decentralized identifier (DID).

Output

Encodingapplication/json
did stringdid Required

A decentralized identifier (DID).

quotas 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)
Parameters
A decentralized identifier (DID).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "quotas"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "quotas": {
          "type": "array",
          "items": {
            "ref": "#quotaView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      }
    }
  },
  "description": "Every quota for one DID: the limit in effect, the deployment default, and any operator override."
}
quotaView object

One quota for one identity.

Properties

default integer Required

The deployment default, which applies when there is no override.

minimum: 0
limit integer Required

The limit in effect: the override if there is one, otherwise the default. Sites, tiles and spaces are counts; tileBytes, maxBlobBytes and monthlyBandwidthBytes are bytes.

minimum: 0
overridden boolean Required

No description available.

quota string Required

No description available.

Known values: sites, tiles, tileBytes, spaces, maxBlobBytes, monthlyBandwidthBytes
reason string Optional

No description available.

maxLength: 1000 bytes
setBy string did Optional

The operator who set the override. Absent when there is none.

updatedAt string datetime Optional

An RFC 3339 formatted timestamp.

View raw schema
{
  "type": "object",
  "required": [
    "quota",
    "limit",
    "default",
    "overridden"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 0,
      "description": "The limit in effect: the override if there is one, otherwise the default. Sites, tiles and spaces are counts; tileBytes, maxBlobBytes and monthlyBandwidthBytes are bytes."
    },
    "quota": {
      "type": "string",
      "knownValues": [
        "sites",
        "tiles",
        "tileBytes",
        "spaces",
        "maxBlobBytes",
        "monthlyBandwidthBytes"
      ]
    },
    "setBy": {
      "type": "string",
      "format": "did",
      "description": "The operator who set the override. Absent when there is none."
    },
    "reason": {
      "type": "string",
      "maxLength": 1000
    },
    "default": {
      "type": "integer",
      "minimum": 0,
      "description": "The deployment default, which applies when there is no override."
    },
    "updatedAt": {
      "type": "string",
      "format": "datetime"
    },
    "overridden": {
      "type": "boolean"
    }
  },
  "description": "One quota for one identity."
}

Lexicon Garden

@