Kong · Schema

GoogleAnalytics4IntegrationConfigProperties

Configuration data for the Google Analytics integration

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string The Google Analytics measurement ID
l string The datalayer's name you want data to be associated with
View JSON Schema on GitHub

JSON Schema

kong-googleanalytics4integrationconfigproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoogleAnalytics4IntegrationConfigProperties",
  "title": "GoogleAnalytics4IntegrationConfigProperties",
  "description": "Configuration data for the Google Analytics integration",
  "type": "object",
  "properties": {
    "id": {
      "description": "The Google Analytics measurement ID",
      "type": "string",
      "example": "G-XXXXXXX",
      "maxLength": 20,
      "minLength": 5,
      "pattern": "^G-[A-Za-z0-9-]+$",
      "x-validation-message": "must be a valid Google Analytics ID (format: G-XXXXXXX)"
    },
    "l": {
      "description": "The datalayer's name you want data to be associated with",
      "type": "string",
      "example": "myNewName",
      "maxLength": 100,
      "nullable": true
    }
  },
  "additionalProperties": false
}