Adobe Analytics · JSON Structure

Adobe Analytics Report Response Structure

The result of an analytics report request

Type: object Properties: 5
AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

ReportResponse is a JSON Structure definition published by Adobe Analytics, describing 5 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

totalPages numberOfElements rows columns summaryData

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "The result of an analytics report request",
  "name": "ReportResponse",
  "properties": {
    "totalPages": {
      "type": "integer",
      "description": "Total number of result pages"
    },
    "numberOfElements": {
      "type": "integer",
      "description": "Number of rows in this response"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A single row in a report result",
        "properties": {
          "itemId": {
            "type": "string",
            "description": "The dimension item ID"
          },
          "value": {
            "type": "string",
            "description": "The dimension item display value"
          },
          "data": {
            "type": "array",
            "description": "Metric values for this row, in column order",
            "items": {
              "type": "number"
            }
          }
        }
      }
    },
    "columns": {
      "type": "object",
      "description": "Column metadata for the report"
    },
    "summaryData": {
      "type": "object",
      "description": "Totals and summary statistics"
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}