zcap-spec-examples - v0.2.0
    Preparing search index...

    Interface ZcapSpecSnapshot

    Where this snapshot came from, and what exactly it is.

    interface ZcapSpecSnapshot {
        sourceUrl: string;
        retrievedAt: string;
        bytes: number;
        sha256: string;
        html: string;
    }
    Index
    sourceUrl: string

    Canonical location of the document.

    retrievedAt: string

    ISO date (UTC) the snapshot was taken.

    bytes: number

    Byte length of ZcapSpecSnapshot.html encoded as UTF-8.

    sha256: string

    SHA-256 of the UTF-8 bytes, so a copy can be checked against the original.

    html: string

    The document itself.