Kong · Schema

ConfigStore

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string The Config Store ID.
name string The name of the Config Store
created_at object
updated_at object
View JSON Schema on GitHub

JSON Schema

kong-configstore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigStore",
  "title": "ConfigStore",
  "type": "object",
  "properties": {
    "id": {
      "description": "The Config Store ID.",
      "type": "string",
      "format": "uuid",
      "example": "b9e81174-b5bb-4638-a3c3-8afe61a0abf8",
      "readOnly": true
    },
    "name": {
      "description": "The name of the Config Store",
      "type": "string",
      "example": "My Name"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    }
  }
}