Kong · Schema

CriteriaEvaluationRelationMap

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
instance string
relation string
map object
View JSON Schema on GitHub

JSON Schema

kong-criteriaevaluationrelationmap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CriteriaEvaluationRelationMap",
  "title": "CriteriaEvaluationRelationMap",
  "type": "object",
  "properties": {
    "instance": {
      "type": "string",
      "enum": [
        "criteria_result_relation_map"
      ]
    },
    "relation": {
      "type": "string",
      "example": "gateway_svc"
    },
    "map": {
      "additionalProperties": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/CriteriaEvaluationRelationResult"
          },
          {
            "$ref": "#/components/schemas/CriteriaEvaluationErrorResult"
          }
        ]
      }
    }
  },
  "required": [
    "instance",
    "relation",
    "map"
  ]
}