ReportResponse

ReportResponse schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
totalPages integer
firstPage boolean
lastPage boolean
numberOfElements integer
totalElements integer
rows array
View JSON Schema on GitHub

JSON Schema

analytics-api-report-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/analytics-api-report-response-schema.json",
  "title": "ReportResponse",
  "description": "ReportResponse schema",
  "type": "object",
  "properties": {
    "totalPages": {
      "type": "integer"
    },
    "firstPage": {
      "type": "boolean"
    },
    "lastPage": {
      "type": "boolean"
    },
    "numberOfElements": {
      "type": "integer"
    },
    "totalElements": {
      "type": "integer"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "itemId": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "data": {
            "type": "array",
            "items": {
              "type": "number"
            }
          }
        }
      }
    }
  }
}