Kong · Schema

CreateAddOnRequest

Request schema for creating an add-on.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name object
owner object
config object
View JSON Schema on GitHub

JSON Schema

kong-createaddonrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAddOnRequest",
  "title": "CreateAddOnRequest",
  "description": "Request schema for creating an add-on.",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/AddOnName"
    },
    "owner": {
      "$ref": "#/components/schemas/AddOnOwner"
    },
    "config": {
      "$ref": "#/components/schemas/CreateAddOnConfig"
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "owner",
    "config"
  ]
}