Kong · Schema

UrlCustomField

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string The human-readable name of the URL link.
link string The href value of the URL link.
View JSON Schema on GitHub

JSON Schema

kong-urlcustomfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UrlCustomField",
  "title": "UrlCustomField",
  "type": "object",
  "properties": {
    "name": {
      "description": "The human-readable name of the URL link.",
      "type": "string",
      "example": "On-Call Dashboard"
    },
    "link": {
      "description": "The href value of the URL link.",
      "type": "string",
      "format": "uri-reference",
      "example": "https://my-dashboard-svc.io/dashboards/1"
    }
  },
  "nullable": true,
  "required": [
    "name",
    "link"
  ]
}