File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,21 @@ message Survey {
103
103
104
104
// Defines who can access the survey beyond users in the ACLs.
105
105
GeneralAccess general_access = 8 ;
106
+
107
+ // Possible values for the visibility of data in this survey.
108
+ enum DataVisibility {
109
+ // Default value when visibility unset. Same as CONTRIBUTOR_AND_ORGANIZERS.
110
+ DATA_VISIBILITY_UNSPECIFIED = 0 ;
111
+
112
+ // LOIs and submissions can only be viewed by their contributor and survey organizers.
113
+ CONTRIBUTOR_AND_ORGANIZERS = 1 ;
114
+
115
+ // LOIs and submissions can be viewed by all users with access to this survey.
116
+ ALL_SURVEY_PARTICIPANTS = 2 ;
117
+ }
118
+
119
+ // Defines who can see data submitted in this survey.
120
+ DataVisibility data_visibility = 9 ;
106
121
}
107
122
108
123
// Defines a user's role in a survey.
You can’t perform that action at this time.
0 commit comments