Sample payload for different log types

I found this page that includes all the supported log record types: RecordType in kumo_log_types - Rust

Is there a place where I can see sample payloads for each of these types? I’ve seen samples of Reception, Delivery, Bounce, TransientFailure and Expiration in my own usage, but don’t know what OOB, AdminBounce and Feedback records would look like and therefore I’m not sure how to integrate them into my own system.

The source of truth is here in the code: kumomta/crates/kumo-log-types/src/lib.rs at main · KumoCorp/kumomta · GitHub

For Feedback records, feedback_report will be populated with the ARFReport here: kumomta/crates/kumo-log-types/src/rfc5965.rs at main · KumoCorp/kumomta · GitHub

OOB records are the same as Bounce records, it’s just that the source of the data is from an incoming rfc3464 message.

AdminBounce is the same as Bounce, but rather than being caused by a delivery attempt, it was caused by the administrator.

Thanks!