{ "$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" } } } } } } }