Adobe Analytics · Schema

ReportSuiteList

Paginated list of report suites

AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

Properties

Name Type Description
content array
totalElements integer Total number of report suites
totalPages integer Total number of pages
View JSON Schema on GitHub

JSON Schema

adobe-analytics-report-suite-list-schema.json Raw ↑
{
  "type": "object",
  "description": "Paginated list of report suites",
  "properties": {
    "content": {
      "type": "array",
      "example": [],
      "items": {
        "type": "object",
        "description": "An Adobe Analytics report suite",
        "properties": {
          "rsid": {
            "type": "string",
            "description": "Report suite ID",
            "example": "500123"
          },
          "name": {
            "type": "string",
            "description": "Display name of the report suite",
            "example": "Example Title"
          },
          "timezoneZoneinfo": {
            "type": "string",
            "description": "Timezone for the report suite",
            "example": "example_value"
          },
          "type": {
            "type": "string",
            "description": "Report suite type",
            "example": "standard",
            "enum": [
              "standard",
              "virtual"
            ]
          }
        }
      }
    },
    "totalElements": {
      "type": "integer",
      "description": "Total number of report suites",
      "example": 42
    },
    "totalPages": {
      "type": "integer",
      "description": "Total number of pages",
      "example": 42
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ReportSuiteList"
}