{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InteractionStatsResponse", "title": "InteractionStatsResponse", "type": "object", "properties": { "requestId": { "type": "string", "description": "A unique identifier for the request." }, "records": { "type": "object", "properties": { "totalRecords": { "type": "integer" }, "currentPageSize": { "type": "integer" }, "cursor": { "type": "string" } } }, "usersInteractionStats": { "type": "array", "items": { "$ref": "#/components/schemas/UserInteractionStats" }, "description": "Interaction statistics per user." } } }