Google Analytics · Schema

MetricCompatibility

The compatibility for a single metric.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
compatibility string The compatibility of this metric. If the compatibility is COMPATIBLE, this metric can be successfully added to the report.
metricMetadata object The metric metadata contains the API name for this compatibility information. The metric metadata also contains other helpful information like the UI name and description.
View JSON Schema on GitHub

JSON Schema

google-analytics-metriccompatibility-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricCompatibility",
  "title": "MetricCompatibility",
  "description": "The compatibility for a single metric.",
  "properties": {
    "compatibility": {
      "description": "The compatibility of this metric. If the compatibility is COMPATIBLE, this metric can be successfully added to the report.",
      "enum": [
        "COMPATIBILITY_UNSPECIFIED",
        "COMPATIBLE",
        "INCOMPATIBLE"
      ],
      "type": "string"
    },
    "metricMetadata": {
      "$ref": "#/components/schemas/MetricMetadata",
      "description": "The metric metadata contains the API name for this compatibility information. The metric metadata also contains other helpful information like the UI name and description."
    }
  },
  "type": "object"
}