Vantage · Schema

Vantage Anomaly Alert

An Anomaly Alert that monitors a Cost Report for unexpected cost spikes based on a percentage threshold.

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
token string The unique token identifier for the Anomaly Alert.
cost_report_token string The token of the associated Cost Report.
threshold number The threshold percentage for anomaly detection.
created_at string The date and time the Anomaly Alert was created.
View JSON Schema on GitHub

JSON Schema

anomaly-alert.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/vantage/blob/main/json-schema/anomaly-alert.json",
  "title": "Vantage Anomaly Alert",
  "description": "An Anomaly Alert that monitors a Cost Report for unexpected cost spikes based on a percentage threshold.",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "The unique token identifier for the Anomaly Alert."
    },
    "cost_report_token": {
      "type": "string",
      "description": "The token of the associated Cost Report."
    },
    "threshold": {
      "type": "number",
      "description": "The threshold percentage for anomaly detection."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the Anomaly Alert was created."
    }
  }
}