Vantage · Schema

Price

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
id string The unique identifier for the Price.
unit string The pricing unit (e.g., per hour, per GB-month).
price string The price amount.
currency string The currency of the price.
region string The cloud region this price applies to.
description string A description of the pricing tier or option.
product_id string The identifier of the associated Product.
View JSON Schema on GitHub

JSON Schema

vantage-cloud-pricing-price-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Price",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the Price."
    },
    "unit": {
      "type": "string",
      "description": "The pricing unit (e.g., per hour, per GB-month)."
    },
    "price": {
      "type": "string",
      "description": "The price amount."
    },
    "currency": {
      "type": "string",
      "description": "The currency of the price."
    },
    "region": {
      "type": "string",
      "description": "The cloud region this price applies to."
    },
    "description": {
      "type": "string",
      "description": "A description of the pricing tier or option."
    },
    "product_id": {
      "type": "string",
      "description": "The identifier of the associated Product."
    }
  }
}