Kong · Schema

SimpleSchema

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
definition object
View JSON Schema on GitHub

JSON Schema

kong-simpleschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimpleSchema",
  "title": "SimpleSchema",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "simple"
      ]
    },
    "definition": {
      "type": "object",
      "additionalProperties": {
        "type": "string",
        "enum": [
          "string",
          "number",
          "boolean"
        ],
        "x-speakeasy-unknown-values": "allow"
      }
    }
  },
  "required": [
    "type",
    "definition"
  ]
}