Google Analytics · Schema

SimpleSegment

A Simple segment conditions consist of one or more dimension/metric conditions that can be combined.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
orFiltersForSegment array A list of segment filters groups which are combined with logical `AND` operator.
View JSON Schema on GitHub

JSON Schema

google-analytics-simplesegment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimpleSegment",
  "title": "SimpleSegment",
  "description": "A Simple segment conditions consist of one or more dimension/metric conditions that can be combined.",
  "properties": {
    "orFiltersForSegment": {
      "description": "A list of segment filters groups which are combined with logical `AND` operator.",
      "items": {
        "$ref": "#/components/schemas/OrFiltersForSegment"
      },
      "type": "array"
    }
  },
  "type": "object"
}