Enum IntegritySeverity
How bad a finding is. Ordered most-severe first so a numeric comparison ranks findings.
public enum IntegritySeverity
Fields
Advisory = 4Informational — a condition worth surfacing that is not itself a defect.
DataLoss = 1Primary data is unreadable. Something the user stored is gone and cannot be regenerated from within the database.
Divergence = 2A derived structure disagrees with primary data. Repairable by regeneration; no user data is lost.
Fatal = 0The database cannot be safely opened or traversed. Scanning may have stopped early.
Leak = 3Space is allocated but unreachable. Wastes capacity; costs no correctness.