1//! Ledger provenance attached to federation-aware findings and work items. 2 3#[derive(Debug, Clone, PartialEq, Eq)] 4pub struct LedgerProvenance { 5 pub ledger_id: String, 6 pub ledger_path: String, 7 pub lane: String, 8 pub mode: String, 9 pub role: String, 10}