Kong · Schema

InvalidParameterStandard

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
field string
rule object
source string
reason string
View JSON Schema on GitHub

JSON Schema

kong-invalidparameterstandard-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvalidParameterStandard",
  "title": "InvalidParameterStandard",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "example": "name",
      "readOnly": true
    },
    "rule": {
      "$ref": "#/components/schemas/InvalidRules"
    },
    "source": {
      "type": "string",
      "example": "body"
    },
    "reason": {
      "type": "string",
      "example": "is a required field",
      "readOnly": true
    }
  },
  "additionalProperties": false,
  "required": [
    "field",
    "reason"
  ]
}