{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LearningActivityReport", "title": "LearningActivityReport", "type": "object", "properties": { "latestDataAt": { "type": "integer", "format": "int64", "description": "Timestamp of the latest data included in this report", "example": 1632207540000 }, "activities": { "type": "array", "items": { "$ref": "#/components/schemas/LearningActivity" } }, "learnerDetails": { "$ref": "#/components/schemas/LearnerDetails" } } }