diff --git a/src/service/poc_mobile.proto b/src/service/poc_mobile.proto index 16f97de2..ba289f2b 100644 --- a/src/service/poc_mobile.proto +++ b/src/service/poc_mobile.proto @@ -755,6 +755,22 @@ message invalid_data_transfer_ingest_report_v1 { uint64 timestamp = 3; } +message verified_data_transfer_ingest_report_v1 { + enum report_status { + valid = 0; + invalid_gateway_key = 1; + invalid_routing_key = 2; + duplicate = 3; + } + // the invalid ingest report + data_transfer_session_ingest_report_v1 report = 1; + // the invalid reason as determined by the verifications + report_status status = 2; + // Timestamp at which verification was determined, in milliseconds since unix + // epoch + uint64 timestamp = 3; +} + message oracle_boosting_report_v1 { // UUID of the coverage object for the given hex bytes coverage_object = 1;