{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchedSessionRecording", "title": "PatchedSessionRecording", "type": "object", "properties": { "id": { "type": "string", "readOnly": true }, "distinct_id": { "type": "string", "readOnly": true, "nullable": true }, "viewed": { "type": "boolean", "readOnly": true }, "viewers": { "type": "array", "items": { "type": "string" }, "readOnly": true }, "recording_duration": { "type": "integer", "readOnly": true }, "active_seconds": { "type": "integer", "readOnly": true, "nullable": true }, "inactive_seconds": { "type": "integer", "readOnly": true, "nullable": true }, "start_time": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true }, "end_time": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true }, "click_count": { "type": "integer", "readOnly": true, "nullable": true }, "keypress_count": { "type": "integer", "readOnly": true, "nullable": true }, "mouse_activity_count": { "type": "integer", "readOnly": true, "nullable": true }, "console_log_count": { "type": "integer", "readOnly": true, "nullable": true }, "console_warn_count": { "type": "integer", "readOnly": true, "nullable": true }, "console_error_count": { "type": "integer", "readOnly": true, "nullable": true }, "start_url": { "type": "string", "readOnly": true, "nullable": true }, "person": { "$ref": "#/components/schemas/MinimalPerson" }, "retention_period_days": { "type": "integer", "readOnly": true, "nullable": true }, "expiry_time": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true }, "recording_ttl": { "type": "integer", "readOnly": true, "nullable": true }, "snapshot_source": { "type": "string", "nullable": true, "readOnly": true }, "snapshot_library": { "type": "string", "nullable": true, "readOnly": true }, "ongoing": { "type": "boolean", "readOnly": true }, "activity_score": { "type": "number", "format": "double", "nullable": true, "readOnly": true }, "has_summary": { "type": "boolean", "readOnly": true }, "summary_outcome": { "allOf": [ { "$ref": "#/components/schemas/Outcome" } ], "nullable": true, "readOnly": true }, "external_references": { "type": "array", "items": { "type": "object", "additionalProperties": true }, "description": "Load external references (linked issues) for this recording", "readOnly": true } } }