rmapi-js
    Preparing search index...

    Interface ItemRef

    a reference to stored cloud data: an id paired with the hash of its state

    This is the canonical way to point at something in the cloud. The id names what: a document's uuid at the high level, or a stored file name (like <id>.content) at the low level. The hash names which version, and changes every time that data mutates. Reads take one of these, and mutations return a fresh one with the new hash.

    interface ItemRef {
        hash: string;
        id: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    hash: string

    the hash of the referenced state

    id: string

    the id of the referenced data: a document uuid, or a stored file name