Google Analytics · Schema

GoogleAnalyticsAdminV1betaChangeHistoryChange

A description of a change to a single Google Analytics resource.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
action string The type of action that changed this resource.
resource string Resource name of the resource whose changes are described by this entry.
resourceAfterChange object Resource contents from after the change was made. If this resource was deleted in this change, this field will be missing.
resourceBeforeChange object Resource contents from before the change was made. If this resource was created in this change, this field will be missing.
View JSON Schema on GitHub

JSON Schema

google-analytics-googleanalyticsadminv1betachangehistorychange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoogleAnalyticsAdminV1betaChangeHistoryChange",
  "title": "GoogleAnalyticsAdminV1betaChangeHistoryChange",
  "description": "A description of a change to a single Google Analytics resource.",
  "properties": {
    "action": {
      "description": "The type of action that changed this resource.",
      "enum": [
        "ACTION_TYPE_UNSPECIFIED",
        "CREATED",
        "UPDATED",
        "DELETED"
      ],
      "type": "string",
      "example": "ACTION_TYPE_UNSPECIFIED"
    },
    "resource": {
      "description": "Resource name of the resource whose changes are described by this entry.",
      "type": "string",
      "example": "example_value"
    },
    "resourceAfterChange": {
      "$ref": "#/components/schemas/GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource",
      "description": "Resource contents from after the change was made. If this resource was deleted in this change, this field will be missing."
    },
    "resourceBeforeChange": {
      "$ref": "#/components/schemas/GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource",
      "description": "Resource contents from before the change was made. If this resource was created in this change, this field will be missing."
    }
  },
  "type": "object"
}