Vantage · Schema

Vantage Access Grant

An Access Grant that assigns a specific level of access to a Vantage resource for a Team.

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
token string The unique token identifier for the Access Grant.
team_token string The token of the Team the grant applies to.
resource_token string The token of the resource being granted access to.
access string The level of access granted.
created_at string The date and time the Access Grant was created.
View JSON Schema on GitHub

JSON Schema

access-grant.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/vantage/blob/main/json-schema/access-grant.json",
  "title": "Vantage Access Grant",
  "description": "An Access Grant that assigns a specific level of access to a Vantage resource for a Team.",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "The unique token identifier for the Access Grant."
    },
    "team_token": {
      "type": "string",
      "description": "The token of the Team the grant applies to."
    },
    "resource_token": {
      "type": "string",
      "description": "The token of the resource being granted access to."
    },
    "access": {
      "type": "string",
      "description": "The level of access granted."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the Access Grant was created."
    }
  }
}