SAP HANA · Schema

MeteringValueList

A collection of metering data points for billing and capacity tracking.

AnalyticsCloudDatabaseEnterpriseIn-Memory

Properties

Name Type Description
values array The list of metering records.
View JSON Schema on GitHub

JSON Schema

sap-hana-meteringvaluelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeteringValueList",
  "title": "MeteringValueList",
  "type": "object",
  "description": "A collection of metering data points for billing and capacity tracking.",
  "properties": {
    "values": {
      "type": "array",
      "description": "The list of metering records.",
      "items": {
        "$ref": "#/components/schemas/MeteringValue"
      },
      "example": []
    }
  }
}