Acronis · Schema

UsageItem

Usage metric for a specific service or resource

CybersecurityData ProtectionEndpoint Management

Properties

Name Type Description
offering_item string Name of the offering item
application_id string
value number Current usage value
edition string
View JSON Schema on GitHub

JSON Schema

acronis-usageitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UsageItem",
  "title": "UsageItem",
  "type": "object",
  "description": "Usage metric for a specific service or resource",
  "properties": {
    "offering_item": {
      "type": "string",
      "description": "Name of the offering item",
      "example": "vms"
    },
    "application_id": {
      "type": "string",
      "format": "uuid"
    },
    "value": {
      "type": "number",
      "description": "Current usage value",
      "example": 42
    },
    "edition": {
      "type": "string"
    }
  }
}