The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain rowCount = 175 but only 50 rows.
To learn more about this pagination parameter, see Pagination.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["\u003cp\u003eThe JSON response represents a report table generated from a data request, containing dimension and metric values.\u003c/p\u003e\n"],["\u003cp\u003eReport data is structured with \u003ccode\u003edimensionHeaders\u003c/code\u003e, \u003ccode\u003emetricHeaders\u003c/code\u003e, and \u003ccode\u003erows\u003c/code\u003e to organize information.\u003c/p\u003e\n"],["\u003cp\u003eAdditional fields such as \u003ccode\u003etotals\u003c/code\u003e, \u003ccode\u003emaximums\u003c/code\u003e, \u003ccode\u003eminimums\u003c/code\u003e, \u003ccode\u003erowCount\u003c/code\u003e, \u003ccode\u003emetadata\u003c/code\u003e, and \u003ccode\u003epropertyQuota\u003c/code\u003e provide further context and insights.\u003c/p\u003e\n"],["\u003cp\u003eEach row represents a combination of dimension values and corresponding metric values for those dimensions.\u003c/p\u003e\n"],["\u003cp\u003eLinks are provided for further exploration of specific objects like \u003ccode\u003eDimensionHeader\u003c/code\u003e, \u003ccode\u003eMetricHeader\u003c/code\u003e, \u003ccode\u003eRow\u003c/code\u003e, \u003ccode\u003eResponseMetaData\u003c/code\u003e, and \u003ccode\u003ePropertyQuota\u003c/code\u003e.\u003c/p\u003e\n"]]],["The response report contains `dimensionHeaders` and `metricHeaders` describing the columns, and `rows` representing combinations of dimension and metric values. It includes `totals`, `maximums`, and `minimums` rows if requested. `rowCount` indicates the total rows in the query result, and `metadata` provides report details. The report's `propertyQuota` shows the property's quota state. All objects reference other data structures, and all information is present within the JSON representation.\n"],null,["# RunReportResponse\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nThe response report table corresponding to a request.\n\n| JSON representation ||\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| ``` { \"dimensionHeaders\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/DimensionHeader) } ], \"metricHeaders\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/MetricHeader) } ], \"rows\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/Row) } ], \"totals\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/Row) } ], \"maximums\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/Row) } ], \"minimums\": [ { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/Row) } ], \"rowCount\": integer, \"metadata\": { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/ResponseMetaData) }, \"propertyQuota\": { object (/analytics/devguides/reporting/data/v1/rest/v1alpha/PropertyQuota) } } ``` |\n\n| Fields ||\n|----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `dimensionHeaders[]` | `object (`[DimensionHeader](/analytics/devguides/reporting/data/v1/rest/v1alpha/DimensionHeader)`)` Describes dimension columns. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows. |\n| `metricHeaders[]` | `object (`[MetricHeader](/analytics/devguides/reporting/data/v1/rest/v1alpha/MetricHeader)`)` Describes metric columns. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows. |\n| `rows[]` | `object (`[Row](/analytics/devguides/reporting/data/v1/rest/v1alpha/Row)`)` Rows of dimension value combinations and metric values in the report. |\n| `totals[]` | `object (`[Row](/analytics/devguides/reporting/data/v1/rest/v1alpha/Row)`)` If requested, the totaled values of metrics. |\n| `maximums[]` | `object (`[Row](/analytics/devguides/reporting/data/v1/rest/v1alpha/Row)`)` If requested, the maximum values of metrics. |\n| `minimums[]` | `object (`[Row](/analytics/devguides/reporting/data/v1/rest/v1alpha/Row)`)` If requested, the minimum values of metrics. |\n| `rowCount` | `integer` The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain rowCount = 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). |\n| `metadata` | `object (`[ResponseMetaData](/analytics/devguides/reporting/data/v1/rest/v1alpha/ResponseMetaData)`)` Metadata for the report. |\n| `propertyQuota` | `object (`[PropertyQuota](/analytics/devguides/reporting/data/v1/rest/v1alpha/PropertyQuota)`)` This Analytics Property's quota state including this request. |"]]