segment · Schema

Label

Properties

Name Type Description
key string The label key.
value string The label value.
description string A description of the label.
View JSON Schema on GitHub

JSON Schema

segment-label-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Label",
  "title": "Label",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The label key."
    },
    "value": {
      "type": "string",
      "description": "The label value."
    },
    "description": {
      "type": "string",
      "description": "A description of the label."
    }
  }
}