Google Analytics · Schema

UserPropertyValue

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
value object The value of the user property.
View JSON Schema on GitHub

JSON Schema

google-analytics-userpropertyvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserPropertyValue",
  "title": "UserPropertyValue",
  "type": "object",
  "properties": {
    "value": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "number"
        },
        {
          "type": "boolean"
        }
      ],
      "description": "The value of the user property.",
      "example": "example_value"
    }
  }
}