Productiv · Schema

SpendData

Represents spend data for an application tracked in the Productiv platform.

Application PortfolioProvisioningSaaS ManagementSpend ManagementUsage Analytics

Properties

Name Type Description
amount number The spend amount.
currency string The currency code (e.g., USD).
date string The date of the spend.
description string A description of the spend.
View JSON Schema on GitHub

JSON Schema

spend-data.json Raw ↑
{
  "$id": "spend-data.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SpendData",
  "description": "Represents spend data for an application tracked in the Productiv platform.",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "description": "The spend amount."
    },
    "currency": {
      "type": "string",
      "description": "The currency code (e.g., USD)."
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "The date of the spend."
    },
    "description": {
      "type": "string",
      "description": "A description of the spend."
    }
  }
}