Kong · Schema

PortalFooterMenuSection

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
title string The footer menu section title
items array
View JSON Schema on GitHub

JSON Schema

kong-portalfootermenusection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalFooterMenuSection",
  "title": "PortalFooterMenuSection",
  "type": "object",
  "properties": {
    "title": {
      "description": "The footer menu section title",
      "type": "string",
      "maxLength": 512
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PortalMenuItem"
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "title",
    "items"
  ]
}