{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TimelineEntry", "title": "TimelineEntry", "additionalProperties": false, "properties": { "events": { "items": { "$ref": "#/components/schemas/EventType" }, "title": "Events", "type": "array" }, "recording_duration_s": { "default": null, "description": "Duration of the recording in seconds.", "title": "Recording Duration S", "type": "number", "nullable": true }, "sessionId": { "default": null, "description": "Session ID. None means out-of-session events", "title": "Sessionid", "type": "string", "nullable": true } }, "required": [ "events" ], "type": "object" }