Vantage · Schema

TeamInput

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
name string The name of the Team.
description string The description of the Team.
workspace_token string The token of the Workspace for the Team.
user_tokens array Tokens of users to add to the Team.
View JSON Schema on GitHub

JSON Schema

vantage-cost-management-team-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TeamInput",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Team."
    },
    "description": {
      "type": "string",
      "description": "The description of the Team."
    },
    "workspace_token": {
      "type": "string",
      "description": "The token of the Workspace for the Team."
    },
    "user_tokens": {
      "type": "array",
      "description": "Tokens of users to add to the Team."
    }
  }
}