CloudZero · Schema

InsightInput

BudgetsCloud Cost ManagementCost AllocationCost OptimizationFinOpsTelemetryUnit Economics

Properties

Name Type Description
name string Display name for the insight.
description string Description of what the insight tracks.
filters object Filters to apply to the insight.
group_by array Dimensions to group by.
View JSON Schema on GitHub

JSON Schema

cloudzero-insightinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InsightInput",
  "title": "InsightInput",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the insight."
    },
    "description": {
      "type": "string",
      "description": "Description of what the insight tracks."
    },
    "filters": {
      "type": "object",
      "additionalProperties": true,
      "description": "Filters to apply to the insight."
    },
    "group_by": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Dimensions to group by."
    }
  },
  "required": [
    "name"
  ]
}