Kong · Schema

Dashboard Request

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string The dashboard name, which is displayed at the top of the dashboard and in lists. It does not need to be unique.
definition object
labels object
View JSON Schema on GitHub

JSON Schema

kong-dashboardupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DashboardUpdateRequest",
  "title": "Dashboard Request",
  "type": "object",
  "properties": {
    "name": {
      "description": "The dashboard name, which is displayed at the top of the dashboard and in lists.\nIt does not need to be unique.\n",
      "type": "string",
      "maxLength": 255,
      "minLength": 1
    },
    "definition": {
      "$ref": "#/components/schemas/Dashboard"
    },
    "labels": {
      "$ref": "#/components/schemas/Labels"
    }
  },
  "required": [
    "name",
    "definition"
  ]
}