Finout · Schema

Finout CostGuard Scan

A CostGuard scan configuration that identifies cost optimization opportunities and waste across cloud resources.

BudgetsCostsFinOps

Properties

Name Type Description
id string The unique identifier of the scan.
name string The name of the scan.
lastRunTime string The last time the scan was executed.
status string The current status of the scan.
View JSON Schema on GitHub

JSON Schema

cost-guard-scan.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/finout/blob/main/json-schema/cost-guard-scan.json",
  "title": "Finout CostGuard Scan",
  "description": "A CostGuard scan configuration that identifies cost optimization opportunities and waste across cloud resources.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the scan."
    },
    "name": {
      "type": "string",
      "description": "The name of the scan."
    },
    "lastRunTime": {
      "type": "string",
      "description": "The last time the scan was executed."
    },
    "status": {
      "type": "string",
      "description": "The current status of the scan."
    }
  },
  "required": ["id", "name"]
}