Adobe Analytics · Schema

ReportRow

A single row in a report result

AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

Properties

Name Type Description
itemId string The dimension item ID
value string The dimension item display value
data array Metric values for this row, in column order
View JSON Schema on GitHub

JSON Schema

adobe-analytics-report-row-schema.json Raw ↑
{
  "type": "object",
  "description": "A single row in a report result",
  "properties": {
    "itemId": {
      "type": "string",
      "description": "The dimension item ID",
      "example": "500123"
    },
    "value": {
      "type": "string",
      "description": "The dimension item display value",
      "example": "example_value"
    },
    "data": {
      "type": "array",
      "description": "Metric values for this row, in column order",
      "example": [],
      "items": {
        "type": "number"
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ReportRow"
}