diff --git a/src/service/poc_mobile.proto b/src/service/poc_mobile.proto index e783bc9a..c8cd7ee0 100644 --- a/src/service/poc_mobile.proto +++ b/src/service/poc_mobile.proto @@ -10,18 +10,15 @@ import "service_provider.proto"; message hex_usage_counts_req_v1 { // H3 resolution 10 tile uint64 hex = 1; - // Average count of unique helium mobile subscribers active in the hex during - // the previous 7 days ( inclusive of discovery mapping subscribers ) - uint64 helium_mobile_subscriber_avg_count = 2; - // Average count of unique helium mobile discovery mapping subscribers active + // Average count of unique service provider subscribers active in the hex + // during the previous 7 days ( inclusive of discovery mapping subscribers ) + uint64 service_provider_subscriber_avg_count = 2; + // Average count of unique discovery mapping subscribers active // in the hex during the previous 7 days - uint64 helium_mobile_disco_mapping_avg_count = 3; + uint64 disco_mapping_avg_count = 3; // Average count of unique offload sessions active in the hex during the // previous 7 days uint64 offload_avg_count = 4; - // Average count of unique tmo cell tower sessions active in the hex during - // the previous 7 days - uint64 tmo_cell_avg_count = 5; // Unix timestamp in milliseconds of when the report was generated uint64 timestamp = 6; // Carrier pubkey from verification mapping service @@ -44,13 +41,13 @@ message radio_usage_counts_req_v1 { bytes hotspot_pubkey = 1; // the cbsd id of the radio if it is a cbrs radio otherwise empty string cbsd_id = 2; - // Average count of unique helium mobile subscribers which have connected to - // the radio during the previous 7 days ( inclusive of discovery mapping + // Average count of unique service provider subscribers which have connected + // to the radio during the previous 7 days ( inclusive of discovery mapping // subscribers ) - uint64 helium_mobile_subscriber_avg_count = 3; - // Average count of unique helium mobile discovery mapping subscribers which + uint64 service_provider_subscriber_avg_count = 3; + // Average count of unique discovery mapping subscribers which // have connected to the radio during the previous 7 days - uint64 helium_mobile_disco_mapping_avg_count = 4; + uint64 disco_mapping_avg_count = 4; // Average count of unique offload sessions which have connected to the radio // during the previous 7 days uint64 offload_avg_count = 5;