Interface DataKey

The schema for a DataKey in the key vault collection.

interface DataKey {
    _id: UUID;
    creationDate: Date;
    keyAltNames?: string[];
    keyMaterial: Binary;
    masterKey: Document;
    status: number;
    updateDate: Date;
    version?: number;
}

Properties

_id: UUID
creationDate: Date
keyAltNames?: string[]
keyMaterial: Binary
masterKey: Document
status: number
updateDate: Date
version?: number