Google Analytics · Schema

GoogleAnalyticsAdminV1betaAccessStringFilter

The filter for strings.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
caseSensitive boolean If true, the string value is case sensitive.
matchType string The match type for this filter.
value string The string value used for the matching.
View JSON Schema on GitHub

JSON Schema

google-analytics-googleanalyticsadminv1betaaccessstringfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoogleAnalyticsAdminV1betaAccessStringFilter",
  "title": "GoogleAnalyticsAdminV1betaAccessStringFilter",
  "description": "The filter for strings.",
  "properties": {
    "caseSensitive": {
      "description": "If true, the string value is case sensitive.",
      "type": "boolean",
      "example": true
    },
    "matchType": {
      "description": "The match type for this filter.",
      "enum": [
        "MATCH_TYPE_UNSPECIFIED",
        "EXACT",
        "BEGINS_WITH",
        "ENDS_WITH",
        "CONTAINS",
        "FULL_REGEXP",
        "PARTIAL_REGEXP"
      ],
      "type": "string",
      "example": "MATCH_TYPE_UNSPECIFIED"
    },
    "value": {
      "description": "The string value used for the matching.",
      "type": "string",
      "example": "example_value"
    }
  },
  "type": "object"
}