Google Analytics · Schema

CheckCompatibilityResponse

The compatibility response with the compatibility of each dimension & metric.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
dimensionCompatibilities array The compatibility of each dimension.
metricCompatibilities array The compatibility of each metric.
View JSON Schema on GitHub

JSON Schema

google-analytics-checkcompatibilityresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CheckCompatibilityResponse",
  "title": "CheckCompatibilityResponse",
  "description": "The compatibility response with the compatibility of each dimension & metric.",
  "properties": {
    "dimensionCompatibilities": {
      "description": "The compatibility of each dimension.",
      "items": {
        "$ref": "#/components/schemas/DimensionCompatibility"
      },
      "type": "array"
    },
    "metricCompatibilities": {
      "description": "The compatibility of each metric.",
      "items": {
        "$ref": "#/components/schemas/MetricCompatibility"
      },
      "type": "array"
    }
  },
  "type": "object"
}