Vantage · Schema

BudgetAlert

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

vantage-cost-management-budget-alert-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BudgetAlert",
  "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",
      "description": "The date and time the Budget Alert was created."
    }
  }
}