DominoDocumentMeta: {
    addedtofile?: string;
    created?: string;
    editable?: boolean;
    lastaccessed?: string;
    lastmodified?: string;
    lastmodifiedinfile?: string;
    noteclass?: string[];
    noteid?: number;
    revision?: string;
    size?: number;
    unid?: string;
    unread?: boolean;
}

Domino document metadata.

Type declaration

  • Optionaladdedtofile?: string

    Timestamp for when the document was initially created.

  • Optionalcreated?: string

    Date of document creation in ISO format.

  • Optionaleditable?: boolean

    Could the user who retrieved a document update it.

  • Optionallastaccessed?: string

    Last access date of a document in ISO format.

  • Optionallastmodified?: string

    Last update date of a document in ISO format.

  • Optionallastmodifiedinfile?: string

    Timestamp for when the document was initially created.

  • Optionalnoteclass?: string[]

    Note class of document.

  • Optionalnoteid?: number

    The note ID of a document, which is uniquely identifies a document within a particular database.

  • Optionalrevision?: string

    This field records the current revision version of document. It's a 32-character hex-encoded string of date. If db config 'requireRevisionToUpdate' is enabled, then revision is required when update document and only update document when revision version is right.

  • Optionalsize?: number

    Size in byte of a document or json result.

  • Optionalunid?: string

    Universal Id of the document, uniquely identifies a document across all replicas of a database.

  • Optionalunread?: boolean

    Is the document unread by the current user.