videosphere
    Preparing search index...

    Interface DraftDocument

    Raw MongoDB document shape for the drafts collection.

    document is intentionally stored as a JSON string to preserve the existing payload shape used by repository mapping and API contracts.

    interface DraftDocument {
        _id: string;
        userId: string;
        document: string;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    _id: string
    userId: string
    document: string
    createdAt: Date
    updatedAt: Date