-
CWA Technical User authored
* Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/9407efff72fa1fa8e55ce45809d2cea3447e6404 * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/4033ef872478e2d4b0d64becfaa33342616b92d4 * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/d8011ec8efba92d7aae3c5b50c24d3d43d256d38 Co-authored-by:
harambasicluka <64483219+harambasicluka@users.noreply.github.com> Co-authored-by:
BMItter <46747780+BMItter@users.noreply.github.com>
CWA Technical User authored* Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/9407efff72fa1fa8e55ce45809d2cea3447e6404 * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/4033ef872478e2d4b0d64becfaa33342616b92d4 * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/d8011ec8efba92d7aae3c5b50c24d3d43d256d38 Co-authored-by:
harambasicluka <64483219+harambasicluka@users.noreply.github.com> Co-authored-by:
BMItter <46747780+BMItter@users.noreply.github.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
app_config_ios.proto 1.93 KiB
// This file is auto-generated, DO NOT make any changes here
syntax = "proto3";
package de.rki.coronawarnapp.server.protocols.internal.v2;
import "internal/v2/app_features.proto";
import "internal/v2/event_registration_parameters.proto";
import "internal/v2/exposure_detection_parameters.proto";
import "internal/v2/key_download_parameters.proto";
import "internal/v2/ppdd_edus_parameters.proto";
import "internal/v2/ppdd_els_parameters.proto";
import "internal/v2/ppdd_ppa_parameters.proto";
import "internal/v2/risk_calculation_parameters.proto";
import "internal/v2/semantic_version.proto";
message ApplicationConfigurationIOS {
SemanticVersion minVersion = 1;
SemanticVersion latestVersion = 2;
AppFeatures appFeatures = 3;
repeated string supportedCountries = 4;
KeyDownloadParametersIOS keyDownloadParameters = 5;
ExposureDetectionParametersIOS exposureDetectionParameters = 6;
RiskCalculationParameters riskCalculationParameters = 7;
ExposureConfiguration exposureConfiguration = 8;
PPDDEventDrivenUserSurveyParametersIOS eventDrivenUserSurveyParameters = 9;
PPDDPrivacyPreservingAnalyticsParametersIOS privacyPreservingAnalyticsParameters = 10;
PPDDErrorLogSharingParametersIOS errorLogSharingParameters = 11;
EventRegistrationParameters eventRegistrationParameters = 12;
}
message ExposureConfiguration {
map<int32, int32> infectiousnessForDaysSinceOnsetOfSymptoms = 1;
int32 reportTypeNoneMap = 2;
repeated int32 attenuationDurationThresholds = 3;
double immediateDurationWeight = 4;
double mediumDurationWeight = 5;
double nearDurationWeight = 6;
double otherDurationWeight = 7;
int32 daysSinceLastExposureThreshold = 8;
double infectiousnessStandardWeight = 9;
double infectiousnessHighWeight = 10;
double reportTypeConfirmedTestWeight = 11;
double reportTypeConfirmedClinicalDiagnosisWeight = 12;
double reportTypeSelfReportedWeight = 13;
double reportTypeRecursiveWeight = 14;
}