Google Analytics · Schema

ConcatenateExpression

Used to combine dimension values to a single dimension.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
delimiter string The delimiter placed between dimension names. Delimiters are often single characters such as "|" or "," but can be longer strings. If a dimension value contains the delimiter, both will be present in
dimensionNames array Names of dimensions. The names must refer back to names in the dimensions field of the request.
View JSON Schema on GitHub

JSON Schema

google-analytics-concatenateexpression-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConcatenateExpression",
  "title": "ConcatenateExpression",
  "description": "Used to combine dimension values to a single dimension.",
  "properties": {
    "delimiter": {
      "description": "The delimiter placed between dimension names. Delimiters are often single characters such as \"|\" or \",\" but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = \"US,FR\", dimension 2 value = \"JP\", and delimiter = \",\", then the response will contain \"US,FR,JP\".",
      "type": "string",
      "example": "example_value"
    },
    "dimensionNames": {
      "description": "Names of dimensions. The names must refer back to names in the dimensions field of the request.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}