Vantage · Schema

Vantage Budget Alert

A Budget Alert that monitors cloud spending against a defined budget threshold for a Cost Report.

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
token string The unique token identifier for the Budget Alert.
cost_report_token string The token of the associated Cost Report.
budget string The budget amount.
period string The budget period (e.g., monthly).
created_at string The date and time the Budget Alert was created.
View JSON Schema on GitHub

JSON Schema

budget-alert.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/vantage/blob/main/json-schema/budget-alert.json",
  "title": "Vantage Budget Alert",
  "description": "A Budget Alert that monitors cloud spending against a defined budget threshold for a Cost Report.",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "The unique token identifier for the Budget Alert."
    },
    "cost_report_token": {
      "type": "string",
      "description": "The token of the associated Cost Report."
    },
    "budget": {
      "type": "string",
      "description": "The budget amount."
    },
    "period": {
      "type": "string",
      "description": "The budget period (e.g., monthly)."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the Budget Alert was created."
    }
  }
}