Adobe Experience Cloud · JSON Structure

Analytics Api Report Response Structure

ReportResponse schema

Type: object Properties: 6
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

ReportResponse is a JSON Structure definition published by Adobe Experience Cloud, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalPages firstPage lastPage numberOfElements totalElements rows

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-structure/analytics-api-report-response-structure.json",
  "name": "ReportResponse",
  "description": "ReportResponse schema",
  "type": "object",
  "properties": {
    "totalPages": {
      "type": "int32"
    },
    "firstPage": {
      "type": "boolean"
    },
    "lastPage": {
      "type": "boolean"
    },
    "numberOfElements": {
      "type": "int32"
    },
    "totalElements": {
      "type": "int32"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "itemId": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "data": {
            "type": "array",
            "items": {
              "type": "double"
            }
          }
        }
      }
    }
  }
}