PostHog · Schema
PatchedDesktopRecording
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| team | integer | |
| created_by | integer | |
| sdk_upload_id | string | |
| recall_recording_id | string | |
| platform | object | |
| meeting_title | string | |
| meeting_url | string | |
| duration_seconds | integer | |
| status | object | |
| notes | string | |
| error_message | string | |
| video_url | string | |
| video_size_bytes | integer | |
| participants | array | List of participant names |
| transcript_text | string | |
| transcript_segments | array | Transcript segments with timestamps |
| summary | string | |
| extracted_tasks | array | AI-extracted tasks from transcript |
| tasks_generated_at | string | |
| summary_generated_at | string | |
| started_at | string | |
| completed_at | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedDesktopRecording",
"title": "PatchedDesktopRecording",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"team": {
"type": "integer",
"readOnly": true
},
"created_by": {
"type": "integer",
"readOnly": true,
"nullable": true
},
"sdk_upload_id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"recall_recording_id": {
"type": "string",
"format": "uuid",
"nullable": true
},
"platform": {
"$ref": "#/components/schemas/MeetingPlatformEnum"
},
"meeting_title": {
"type": "string",
"nullable": true,
"maxLength": 255
},
"meeting_url": {
"type": "string",
"format": "uri",
"nullable": true,
"maxLength": 200
},
"duration_seconds": {
"type": "integer",
"maximum": 2147483647,
"minimum": -2147483648,
"nullable": true
},
"status": {
"$ref": "#/components/schemas/DesktopRecordingStatusEnum"
},
"notes": {
"type": "string",
"nullable": true
},
"error_message": {
"type": "string",
"nullable": true
},
"video_url": {
"type": "string",
"format": "uri",
"nullable": true,
"maxLength": 200
},
"video_size_bytes": {
"type": "integer",
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"format": "int64",
"nullable": true
},
"participants": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of participant names"
},
"transcript_text": {
"type": "string",
"readOnly": true
},
"transcript_segments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TranscriptSegment"
},
"description": "Transcript segments with timestamps"
},
"summary": {
"type": "string",
"nullable": true
},
"extracted_tasks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DesktopRecordingTask"
},
"description": "AI-extracted tasks from transcript"
},
"tasks_generated_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"summary_generated_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"started_at": {
"type": "string",
"format": "date-time"
},
"completed_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
}
}