Kong · Schema

UpdateGoogleTagManagerIntegration

Partially update Google Tag Manager integration configuration

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
enabled boolean Whether the integration is enabled
type string The type of the integration for categorization
config_data object
View JSON Schema on GitHub

JSON Schema

kong-updategoogletagmanagerintegration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateGoogleTagManagerIntegration",
  "title": "UpdateGoogleTagManagerIntegration",
  "description": "Partially update Google Tag Manager integration configuration",
  "type": "object",
  "properties": {
    "enabled": {
      "description": "Whether the integration is enabled",
      "type": "boolean"
    },
    "type": {
      "description": "The type of the integration for categorization",
      "type": "string",
      "enum": [
        "tracking"
      ]
    },
    "config_data": {
      "type": "object",
      "$ref": "#/components/schemas/GoogleTagManagerIntegrationConfigProperties"
    }
  },
  "additionalProperties": false,
  "nullable": true
}