Kong · Schema

API Specification Validation Success Response

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
validation_messages array Any informational messages or warnings generated during validation. Empty if none.
View JSON Schema on GitHub

JSON Schema

kong-validateapispecsuccessresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidateApiSpecSuccessResponse",
  "title": "API Specification Validation Success Response",
  "type": "object",
  "properties": {
    "validation_messages": {
      "description": "Any informational messages or warnings generated during validation. Empty if none.",
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "message"
        ],
        "properties": {
          "message": {
            "type": "string"
          }
        }
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "validation_messages"
  ]
}