Google Analytics · Schema

NumericValue

To represent a number.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
doubleValue number Double value
int64Value string Integer value
View JSON Schema on GitHub

JSON Schema

google-analytics-numericvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NumericValue",
  "title": "NumericValue",
  "description": "To represent a number.",
  "properties": {
    "doubleValue": {
      "description": "Double value",
      "format": "double",
      "type": "number"
    },
    "int64Value": {
      "description": "Integer value",
      "format": "int64",
      "type": "string"
    }
  },
  "type": "object"
}