Google Analytics · Schema

QueryAudienceExportResponse

A list of users in an audience export.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
audienceExport object Configuration data about AudienceExport being queried. Returned to help interpret the audience rows in this response. For example, the dimensions in this AudienceExport correspond to the columns in th
audienceRows array Rows for each user in an audience export. The number of rows in this response will be less than or equal to request's page size.
rowCount integer The total number of rows in the AudienceExport result. `rowCount` is independent of the number of rows returned in the response, the `limit` request parameter, and the `offset` request parameter. For
View JSON Schema on GitHub

JSON Schema

google-analytics-queryaudienceexportresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueryAudienceExportResponse",
  "title": "QueryAudienceExportResponse",
  "description": "A list of users in an audience export.",
  "properties": {
    "audienceExport": {
      "$ref": "#/components/schemas/AudienceExport",
      "description": "Configuration data about AudienceExport being queried. Returned to help interpret the audience rows in this response. For example, the dimensions in this AudienceExport correspond to the columns in the AudienceRows."
    },
    "audienceRows": {
      "description": "Rows for each user in an audience export. The number of rows in this response will be less than or equal to request's page size.",
      "items": {
        "$ref": "#/components/schemas/V1betaAudienceRow"
      },
      "type": "array"
    },
    "rowCount": {
      "description": "The total number of rows in the AudienceExport result. `rowCount` is independent of the number of rows returned in the response, the `limit` request parameter, and the `offset` request parameter. For example if a query returns 175 rows and includes `limit` of 50 in the API request, the response will contain `rowCount` of 175 but only 50 rows. To learn more about this pagination parameter, see [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).",
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}