Google Analytics · Schema
RemarketingAudiences
A remarketing audience collection lists Analytics remarketing audiences to which the user has access. Each resource in the collection corresponds to a single Analytics remarketing audience.
AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution
Properties
| Name | Type | Description |
|---|---|---|
| items | array | A list of remarketing audiences. |
| itemsPerPage | integer | The maximum number of resources the response can contain, regardless of the actual number of resources returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified |
| kind | string | Collection type. |
| nextLink | string | Link to next page for this remarketing audience collection. |
| previousLink | string | Link to previous page for this view (profile) collection. |
| startIndex | integer | The starting index of the resources, 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. |
| username | string | Email ID of the authenticated user |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RemarketingAudiences",
"title": "RemarketingAudiences",
"description": "A remarketing audience collection lists Analytics remarketing audiences to which the user has access. Each resource in the collection corresponds to a single Analytics remarketing audience.",
"properties": {
"items": {
"description": "A list of remarketing audiences.",
"items": {
"$ref": "#/components/schemas/RemarketingAudience"
},
"type": "array"
},
"itemsPerPage": {
"description": "The maximum number of resources the response can contain, regardless of the actual number of resources 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"
},
"kind": {
"default": "analytics#remarketingAudiences",
"description": "Collection type.",
"type": "string"
},
"nextLink": {
"description": "Link to next page for this remarketing audience collection.",
"type": "string"
},
"previousLink": {
"description": "Link to previous page for this view (profile) collection.",
"type": "string"
},
"startIndex": {
"description": "The starting index of the resources, which is 1 by default or otherwise specified by the start-index query parameter.",
"format": "int32",
"type": "integer"
},
"totalResults": {
"description": "The total number of results for the query, regardless of the number of results in the response.",
"format": "int32",
"type": "integer"
},
"username": {
"description": "Email ID of the authenticated user",
"type": "string"
}
},
"type": "object"
}