Google Analytics · Schema

GoalSetData

Represents a set of goals that were reached in an activity.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine-LearningAttribution

Properties

Name Type Description
goals array All the goals that were reached in the current activity.
View JSON Schema on GitHub

JSON Schema

google-analytics-goalsetdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoalSetData",
  "title": "GoalSetData",
  "description": "Represents a set of goals that were reached in an activity.",
  "properties": {
    "goals": {
      "description": "All the goals that were reached in the current activity.",
      "items": {
        "$ref": "#/components/schemas/GoalData"
      },
      "type": "array"
    }
  },
  "type": "object"
}