Google Analytics · Schema

EntityAdWordsLinks

An entity Google Ads link collection provides a list of GA-Google Ads links Each resource in this collection corresponds to a single link.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
items array A list of entity Google Ads links.
itemsPerPage integer The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by
kind string Collection type.
nextLink string Next link for this Google Ads link collection.
previousLink string Previous link for this Google Ads link collection.
startIndex integer The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
totalResults integer The total number of results for the query, regardless of the number of results in the response.
View JSON Schema on GitHub

JSON Schema

google-analytics-entityadwordslinks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityAdWordsLinks",
  "title": "EntityAdWordsLinks",
  "description": "An entity Google Ads link collection provides a list of GA-Google Ads links Each resource in this collection corresponds to a single link.",
  "properties": {
    "items": {
      "description": "A list of entity Google Ads links.",
      "items": {
        "$ref": "#/components/schemas/EntityAdWordsLink"
      },
      "type": "array"
    },
    "itemsPerPage": {
      "description": "The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.",
      "format": "int32",
      "type": "integer",
      "example": 42
    },
    "kind": {
      "default": "analytics#entityAdWordsLinks",
      "description": "Collection type.",
      "type": "string",
      "example": "example_value"
    },
    "nextLink": {
      "description": "Next link for this Google Ads link collection.",
      "type": "string",
      "example": "example_value"
    },
    "previousLink": {
      "description": "Previous link for this Google Ads link collection.",
      "type": "string",
      "example": "example_value"
    },
    "startIndex": {
      "description": "The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.",
      "format": "int32",
      "type": "integer",
      "example": 42
    },
    "totalResults": {
      "description": "The total number of results for the query, regardless of the number of results in the response.",
      "format": "int32",
      "type": "integer",
      "example": 42
    }
  },
  "type": "object"
}