Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Corona-Warn-App-Technical-User committed Nov 2, 2022
1 parent 3472117 commit 5fe1e6d
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,11 @@ message SubmissionPayload {
SUBMISSION_TYPE_PCR_TEST = 0;
SUBMISSION_TYPE_RAPID_TEST = 1;
SUBMISSION_TYPE_HOST_WARNING = 2;
SUBMISSION_TYPE_SRS_SELF_TEST = 3;
SUBMISSION_TYPE_SRS_RAT = 4;
SUBMISSION_TYPE_SRS_REGISTERED_PCR = 5;
SUBMISSION_TYPE_SRS_UNREGISTERED_PCR = 6;
SUBMISSION_TYPE_SRS_RAPID_PCR = 7;
SUBMISSION_TYPE_SRS_OTHER = 8;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import "app/coronawarn/server/common/protocols/internal/v2/key_download_paramete
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_edus_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_els_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_ppa_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_srs_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/presence_tracing_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/risk_calculation_parameters.proto";

Expand Down Expand Up @@ -41,6 +42,8 @@ message ApplicationConfigurationAndroid {
CoronaTestParameters coronaTestParameters = 14;

DGCParameters dgcParameters = 15;

PPDDSelfReportSubmissionParametersAndroid selfReportParameters = 16;
}

message DiagnosisKeysDataMapping {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import "app/coronawarn/server/common/protocols/internal/v2/key_download_paramete
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_edus_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_els_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_ppa_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_srs_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/risk_calculation_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/presence_tracing_parameters.proto";
import "app/coronawarn/server/common/protocols/internal/v2/semantic_version.proto";
Expand Down Expand Up @@ -40,6 +41,8 @@ message ApplicationConfigurationIOS {
CoronaTestParameters coronaTestParameters = 13;

DGCParameters dgcParameters = 14;

PPDDSelfReportSubmissionParametersIOS selfReportParameters = 15;
}

message ExposureConfiguration {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// This file is auto-generated, DO NOT make any changes here
syntax = "proto3";
package app.coronawarn.server.common.protocols.internal.v2;
option java_multiple_files = true;
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_ppac_parameters.proto";

message PPDDSelfReportSubmissionParametersIOS {
PPDDSelfReportSubmissionParametersCommon common = 1;
PPDDPrivacyPreservingAccessControlParametersIOS ppac = 2;
}

message PPDDSelfReportSubmissionParametersAndroid {
PPDDSelfReportSubmissionParametersCommon common = 1;
PPDDPrivacyPreservingAccessControlParametersAndroid ppac = 2;
}

message PPDDSelfReportSubmissionParametersCommon {
int32 timeSinceOnboardingInHours = 1;
int32 timeBetweenSubmissionsInDays = 2;
}

0 comments on commit 5fe1e6d

Please sign in to comment.