Kong · Schema

InvalidParameterMaximumLength

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
field string
rule string invalid parameters rules
maximum integer
source string
reason string
View JSON Schema on GitHub

JSON Schema

kong-invalidparametermaximumlength-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvalidParameterMaximumLength",
  "title": "InvalidParameterMaximumLength",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "example": "name",
      "readOnly": true
    },
    "rule": {
      "description": "invalid parameters rules",
      "type": "string",
      "enum": [
        "max_length",
        "max_items",
        "max"
      ],
      "nullable": false,
      "readOnly": true,
      "x-speakeasy-unknown-values": "allow"
    },
    "maximum": {
      "type": "integer",
      "example": 8
    },
    "source": {
      "type": "string",
      "example": "body"
    },
    "reason": {
      "type": "string",
      "example": "must not have more than 8 characters",
      "readOnly": true
    }
  },
  "additionalProperties": false,
  "required": [
    "field",
    "reason",
    "rule",
    "maximum"
  ]
}