Kong · Schema

Default Resource Configuration

Object containing information about a default resource configurations, and any organizational overrides.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
id object
qualifier object
name object
description object
value object
overrides array Organizational overrides for this default resource configuration.
created_at string An RFC-3339 timestamp representation of default resource configuration creation date.
updated_at string An RFC-3339 timestamp representation of default resource configuration update date.
View JSON Schema on GitHub

JSON Schema

kong-defaultresourceconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultResourceConfiguration",
  "title": "Default Resource Configuration",
  "description": "Object containing information about a default resource configurations, and any organizational overrides.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/DefaultResourceConfigurationId"
    },
    "qualifier": {
      "$ref": "#/components/schemas/ResourceConfigurationQualifier"
    },
    "name": {
      "$ref": "#/components/schemas/ResourceConfigurationName"
    },
    "description": {
      "$ref": "#/components/schemas/ResourceConfigurationDescription"
    },
    "value": {
      "$ref": "#/components/schemas/ResourceConfigurationValue"
    },
    "overrides": {
      "description": "Organizational overrides for this default resource configuration.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceConfiguration"
      }
    },
    "created_at": {
      "description": "An RFC-3339 timestamp representation of default resource configuration creation date.",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-04T20:10:06.927Z",
      "readOnly": true
    },
    "updated_at": {
      "description": "An RFC-3339 timestamp representation of default resource configuration update date.",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-04T20:10:06.927Z",
      "readOnly": true
    }
  },
  "required": [
    "id",
    "qualifier",
    "name",
    "description",
    "value",
    "overrides",
    "created_at",
    "updated_at"
  ]
}