SignalCD Modern PoC API
    Preparing search index...

    Interface DocumentAccessState

    interface DocumentAccessState {
        archived: boolean;
        authorizationHead?: string;
        authorizationRoot?: string;
        authorizationStatus?: "active" | "conflict";
        deleted: boolean;
        participants: readonly DocumentParticipant[];
        revision: number;
        selfRole: DocumentRole;
    }
    Index
    archived: boolean
    authorizationHead?: string

    Replay-safe authorization head. Absent only on legacy persisted state that has not yet been migrated by a current client.

    authorizationRoot?: string

    Commitment to a creator-signed shared authorization root. This is absent for legacy zero-genesis/local-anchor state so legacy ACLs cannot be mistaken for cryptographically shared bootstrap authority.

    authorizationStatus?: "active" | "conflict"

    A detected valid fork freezes authorization/document mutation fail-closed.

    deleted: boolean
    participants: readonly DocumentParticipant[]
    revision: number
    selfRole: DocumentRole