Kion · Schema

Kion Label

A label provides key-value metadata for organizing and categorizing resources within Kion.

Cloud OperationsComplianceCostsFinOpsGovernanceSpend

Properties

Name Type Description
id integer Internal Kion label ID.
key string Label key.
value string Label value.
color string Display color for the label.
created_at string Timestamp when the label was created.
View JSON Schema on GitHub

JSON Schema

label.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/kion/blob/main/json-schema/label.json",
  "title": "Kion Label",
  "description": "A label provides key-value metadata for organizing and categorizing resources within Kion.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Internal Kion label ID."
    },
    "key": {
      "type": "string",
      "description": "Label key."
    },
    "value": {
      "type": "string",
      "description": "Label value."
    },
    "color": {
      "type": "string",
      "description": "Display color for the label."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the label was created."
    }
  },
  "required": ["key", "value"]
}