Google Analytics · Schema

OrFiltersForSegment

A list of segment filters in the `OR` group are combined with the logical OR operator.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
segmentFilterClauses array List of segment filters to be combined with a `OR` operator.
View JSON Schema on GitHub

JSON Schema

google-analytics-orfiltersforsegment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrFiltersForSegment",
  "title": "OrFiltersForSegment",
  "description": "A list of segment filters in the `OR` group are combined with the logical OR operator.",
  "properties": {
    "segmentFilterClauses": {
      "description": "List of segment filters to be combined with a `OR` operator.",
      "items": {
        "$ref": "#/components/schemas/SegmentFilterClause"
      },
      "type": "array"
    }
  },
  "type": "object"
}