DB Schema
Audio
Audio index record. Properties populated by Lambda after processing.
| Field | Type | Description |
|---|---|---|
id | ObjectId | Primary key |
owner | String | Namespace slug |
project | String | Project slug |
episodeId | String? | DreamLake episode ID |
name | String | Display name (default: "") |
embId | String? | VectorIndex ID (null = not yet indexed) |
st | Float | Start time: Unix timestamp (seconds) |
sampleRate | Int | Hz, e.g. 48000 (default: 0, set by Lambda) |
channels | Int | 1 = mono, 2 = stereo (default: 0) |
durationSec | Float | Duration in seconds (default: 0) |
codec | String | e.g. "pcm_s16le", "opus", "aac" (default: "") |
deletedAt | DateTime? | Soft delete timestamp |
createdAt | DateTime | Created timestamp |
updatedAt | DateTime | Last updated |
Indexes: owner, [owner, project], episodeId, embId