import { LedgerAccess } from './ledger-access'; import { LedgerHash } from './ledger-hash'; export type LedgerBaseData = { /** * Hash of the parent record. This property is set * when the record is updated in order to maintain * an explicit and signed chain of changes. This * value should be equal the hash of a previous * record version. **/ parent?: LedgerHash; /** * Determines access controls for the schema. */ access?: LedgerAccess; };