Vantage · Schema

Vantage Folder

A Folder for organizing Cost Reports within a Workspace, supporting nested folder hierarchies.

BudgetsCloud PricingCost ManagementCostsFinOps

Properties

Name Type Description
token string The unique token identifier for the Folder.
title string The title of the Folder.
parent_folder_token string The token of the parent Folder, if nested.
workspace_token string The token of the Workspace this Folder belongs to.
created_at string The date and time the Folder was created.
View JSON Schema on GitHub

JSON Schema

folder.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/vantage/blob/main/json-schema/folder.json",
  "title": "Vantage Folder",
  "description": "A Folder for organizing Cost Reports within a Workspace, supporting nested folder hierarchies.",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "The unique token identifier for the Folder."
    },
    "title": {
      "type": "string",
      "description": "The title of the Folder."
    },
    "parent_folder_token": {
      "type": "string",
      "description": "The token of the parent Folder, if nested."
    },
    "workspace_token": {
      "type": "string",
      "description": "The token of the Workspace this Folder belongs to."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the Folder was created."
    }
  }
}