Kong · Schema

CreateGatewayRequest

The request schema for the create gateway request.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name object
description object
min_runtime_version object
labels object
View JSON Schema on GitHub

JSON Schema

kong-creategatewayrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateGatewayRequest",
  "title": "CreateGatewayRequest",
  "description": "The request schema for the create gateway request.",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/GatewayName"
    },
    "description": {
      "$ref": "#/components/schemas/GatewayDescription"
    },
    "min_runtime_version": {
      "$ref": "#/components/schemas/MinRuntimeVersion"
    },
    "labels": {
      "$ref": "#/components/schemas/Labels"
    }
  },
  "additionalProperties": false,
  "required": [
    "name"
  ]
}