Paigo · Schema

AggregatedUsageResponse

BillingUsage-Based BillingMeteringInvoicingPricingSaaSSubscriptionsDeveloper ToolsFinOps

Properties

Name Type Description
offeringId string The unique identifier of the offering.
dimensionId string The unique identifier of a dimension.
usage array Array of usage records group by aggregation time interval
View JSON Schema on GitHub

JSON Schema

paigo-aggregated-usage.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://paigo.tech/json-schema/AggregatedUsageResponse.json",
  "title": "AggregatedUsageResponse",
  "type": "object",
  "properties": {
    "offeringId": {
      "type": "string",
      "description": "The unique identifier of the offering."
    },
    "dimensionId": {
      "type": "string",
      "description": "The unique identifier of a dimension."
    },
    "usage": {
      "description": "Array of usage records group by aggregation time interval",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UsageResponseDocument"
      }
    }
  },
  "required": [
    "dimensionId",
    "usage"
  ]
}