Usage metric for a specific service or resource
{ "$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" } } }