Vantage · Schema
Vantage Kubernetes Efficiency Report
A Kubernetes Efficiency Report measuring cluster and namespace cost efficiency, idle costs, and total costs.
BudgetsCloud PricingCost ManagementCostsFinOps
Properties
| Name | Type | Description |
|---|---|---|
| token | string | The unique token identifier for the report. |
| cluster_name | string | The Kubernetes cluster name. |
| namespace | string | The Kubernetes namespace. |
| idle_cost | string | The idle cost for the cluster/namespace. |
| total_cost | string | The total cost for the cluster/namespace. |
| efficiency | number | The efficiency percentage. |
| created_at | string | The date and time the report was generated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/vantage/blob/main/json-schema/kubernetes-efficiency-report.json",
"title": "Vantage Kubernetes Efficiency Report",
"description": "A Kubernetes Efficiency Report measuring cluster and namespace cost efficiency, idle costs, and total costs.",
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "The unique token identifier for the report."
},
"cluster_name": {
"type": "string",
"description": "The Kubernetes cluster name."
},
"namespace": {
"type": "string",
"description": "The Kubernetes namespace."
},
"idle_cost": {
"type": "string",
"description": "The idle cost for the cluster/namespace."
},
"total_cost": {
"type": "string",
"description": "The total cost for the cluster/namespace."
},
"efficiency": {
"type": "number",
"description": "The efficiency percentage."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the report was generated."
}
}
}