Adobe Analytics · JSON Structure

Adobe Analytics Report Row Structure

A single row in a report result

Type: object Properties: 3
AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

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

Properties

itemId value data

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "A single row in a report result",
  "name": "ReportRow",
  "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"
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}