Class ExportFooter
Represents the footer (trailer) record of a .redb export file.
The footer is always the last line written to the JSONL stream
and contains aggregate statistics and the global-identity sequence value
required for a consistent restore.
public sealed class ExportFooter
Inheritance
Properties
Checksum
SHA-256 checksum of the export file (hex-encoded, lowercase).
public string Checksum { get; init; }
SequenceValue
Value of the global_identity sequence at the time of export.
public long SequenceValue { get; init; }
TotalObjects
Total number of object instance records exported.
public long TotalObjects { get; init; }
TotalPermissions
Total number of permission records exported.
public long TotalPermissions { get; init; }
TotalSchemes
Total number of scheme definition records exported.
public long TotalSchemes { get; init; }
TotalStructures
Total number of structure (field) definition records exported.
public long TotalStructures { get; init; }
TotalUserRoles
Total number of user-role junction records exported.
public long TotalUserRoles { get; init; }