Kong · Schema

Choropleth map chart

A chart that displays data on a world map. Each region on the map is colored based on the metric value. This chart works only with the `api_usage` datasource and requires a single metric and a single dimension of `country_code`. No additional dimensions are supported.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
chart_title string The title of the chart, which is displayed in the tile's header.
type string
View JSON Schema on GitHub

JSON Schema

kong-choroplethmapchart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChoroplethMapChart",
  "title": "Choropleth map chart",
  "description": "A chart that displays data on a world map. Each region on the map is colored based on the metric value.\nThis chart works only with the `api_usage` datasource and requires a single metric and a single dimension of `country_code`.\nNo additional dimensions are supported.\n",
  "type": "object",
  "properties": {
    "chart_title": {
      "description": "The title of the chart, which is displayed in the tile's header.",
      "type": "string",
      "nullable": false
    },
    "type": {
      "type": "string",
      "enum": [
        "choropleth_map"
      ]
    }
  },
  "additionalProperties": false,
  "required": [
    "type"
  ]
}