Kong · Schema

UpdateGoogleAnalytics4Integration

Partially update Google Analytics 4 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-updategoogleanalytics4integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateGoogleAnalytics4Integration",
  "title": "UpdateGoogleAnalytics4Integration",
  "description": "Partially update Google Analytics 4 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": [
        "analytics"
      ]
    },
    "config_data": {
      "type": "object",
      "$ref": "#/components/schemas/GoogleAnalytics4IntegrationConfigProperties"
    }
  },
  "additionalProperties": false,
  "nullable": true
}