Vantage · Schema

Vantage Cost Provider

A Cost Provider representing a cloud or SaaS provider whose cost data is available in Vantage.

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
token string The unique token identifier for the Cost Provider.
name string The name of the Cost Provider.
description string A description of the Cost Provider.
View JSON Schema on GitHub

JSON Schema

cost-provider.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/vantage/blob/main/json-schema/cost-provider.json",
  "title": "Vantage Cost Provider",
  "description": "A Cost Provider representing a cloud or SaaS provider whose cost data is available in Vantage.",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "The unique token identifier for the Cost Provider."
    },
    "name": {
      "type": "string",
      "description": "The name of the Cost Provider."
    },
    "description": {
      "type": "string",
      "description": "A description of the Cost Provider."
    }
  }
}