Acronis · Schema

Quota

Quota configuration for an offering item

CybersecurityData ProtectionEndpoint Management

Properties

Name Type Description
value number Quota value (null for unlimited)
overage number Allowed overage beyond quota
version integer Quota version for concurrency
View JSON Schema on GitHub

JSON Schema

acronis-quota-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Quota",
  "title": "Quota",
  "type": "object",
  "description": "Quota configuration for an offering item",
  "properties": {
    "value": {
      "type": "number",
      "description": "Quota value (null for unlimited)",
      "example": 100
    },
    "overage": {
      "type": "number",
      "description": "Allowed overage beyond quota"
    },
    "version": {
      "type": "integer",
      "description": "Quota version for concurrency"
    }
  }
}