Amberflo · Schema

UsageQueryResponse

Response from a usage data query

Usage-Based BillingMeteringFinOpsAI Cost ManagementBillingMonetization

Properties

Name Type Description
clientMeters object Map of meter API name to usage records
View JSON Schema on GitHub

JSON Schema

metering-usage-query-response-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-query-response-schema.json",
  "title": "UsageQueryResponse",
  "description": "Response from a usage data query",
  "type": "object",
  "properties": {
    "clientMeters": {
      "type": "object",
      "additionalProperties": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/UsageRecord"
        }
      },
      "description": "Map of meter API name to usage records"
    }
  }
}