Google Analytics · Schema

SegmentSequenceStep

A segment sequence definition.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
matchType string Specifies if the step immediately precedes or can be any time before the next step.
orFiltersForSegment array A sequence is specified with a list of Or grouped filters which are combined with `AND` operator.
View JSON Schema on GitHub

JSON Schema

google-analytics-segmentsequencestep-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SegmentSequenceStep",
  "title": "SegmentSequenceStep",
  "description": "A segment sequence definition.",
  "properties": {
    "matchType": {
      "description": "Specifies if the step immediately precedes or can be any time before the next step.",
      "enum": [
        "UNSPECIFIED_MATCH_TYPE",
        "PRECEDES",
        "IMMEDIATELY_PRECEDES"
      ],
      "type": "string"
    },
    "orFiltersForSegment": {
      "description": "A sequence is specified with a list of Or grouped filters which are combined with `AND` operator.",
      "items": {
        "$ref": "#/components/schemas/OrFiltersForSegment"
      },
      "type": "array"
    }
  },
  "type": "object"
}