Google Analytics · Schema

ProfileSummary

JSON template for an Analytics ProfileSummary. ProfileSummary returns basic information (i.e., summary) for a profile.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
id string View (profile) ID.
kind string Resource type for Analytics ProfileSummary.
name string View (profile) name.
starred boolean Indicates whether this view (profile) is starred or not.
type string View (Profile) type. Supported types: WEB or APP.
View JSON Schema on GitHub

JSON Schema

google-analytics-profilesummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfileSummary",
  "title": "ProfileSummary",
  "description": "JSON template for an Analytics ProfileSummary. ProfileSummary returns basic information (i.e., summary) for a profile.",
  "properties": {
    "id": {
      "description": "View (profile) ID.",
      "type": "string"
    },
    "kind": {
      "default": "analytics#profileSummary",
      "description": "Resource type for Analytics ProfileSummary.",
      "type": "string"
    },
    "name": {
      "description": "View (profile) name.",
      "type": "string"
    },
    "starred": {
      "description": "Indicates whether this view (profile) is starred or not.",
      "type": "boolean"
    },
    "type": {
      "description": "View (Profile) type. Supported types: WEB or APP.",
      "type": "string"
    }
  },
  "type": "object"
}