Kong · Schema

NotFoundError

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-notfounderror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotFoundError",
  "title": "NotFoundError",
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseError"
    },
    {
      "type": "object",
      "properties": {
        "status": {
          "example": 404
        },
        "title": {
          "example": "Not Found"
        },
        "type": {
          "example": "https://httpstatuses.com/404"
        },
        "instance": {
          "example": "kong:trace:1234567890"
        },
        "detail": {
          "example": "Not found"
        }
      }
    }
  ]
}