Kong · Schema

Resource Configuration

Object containing information about a resource configuration.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id object
qualifier object
value object
View JSON Schema on GitHub

JSON Schema

kong-resourceconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceConfiguration",
  "title": "Resource Configuration",
  "description": "Object containing information about a resource configuration.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/ResourceConfigurationId"
    },
    "qualifier": {
      "$ref": "#/components/schemas/ResourceConfigurationQualifier"
    },
    "value": {
      "$ref": "#/components/schemas/ResourceConfigurationValue"
    }
  },
  "required": [
    "id",
    "qualifier",
    "value"
  ]
}