Amberflo · Schema

UsageRecord

A usage record grouped by dimension values

Usage-Based BillingMeteringFinOpsAI Cost ManagementBillingMonetization

Properties

Name Type Description
groupInfo object Group dimension values for this record
records array Time-series usage data points
View JSON Schema on GitHub

JSON Schema

metering-usage-record-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amberflo/refs/heads/main/json-schema/metering-usage-record-schema.json",
  "title": "UsageRecord",
  "description": "A usage record grouped by dimension values",
  "type": "object",
  "properties": {
    "groupInfo": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Group dimension values for this record"
    },
    "records": {
      "type": "array",
      "description": "Time-series usage data points",
      "items": {
        "type": "object",
        "additionalProperties": {
          "type": "number"
        }
      }
    }
  }
}