fastlane-plugin-google_data_safety 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40b801d950ef2c54b5dff6015bf2ff90f77b502c509408c8bd51538c0eca0948
4
- data.tar.gz: f469686cb3772ab11d328d4891b8e8e4aa30a7a744de9e94b99919d68822495a
3
+ metadata.gz: 0b1755c253f37377d06fe1c7c3cae9a182af4d59fec7b758c6b233349bc240ac
4
+ data.tar.gz: f10c4e8cab62e4aa3aa0a333971af80403c330081735e3c85b49fc6bc853226b
5
5
  SHA512:
6
- metadata.gz: d65d43564f78fcc032356047b3ae7a6053d3fadae44d78ab8d92c26b786e8799d27c71d021b7acb5528544477cb8a878a5e3c6e9e32413be0c287e3e57ed7576
7
- data.tar.gz: 600b3413608be49ff72fcd0abd115a452c0a8e862f11d9c9ed0fd95e6e37ebf4dba98eb952c91a8a33712d01a08e7891f30ead1f22527cd0d540dd78ff859886
6
+ metadata.gz: 26b72d0673ed1f71be97ca89df7aecbde284e05cb5ee3245fe5b4e701a3790a675a31df103239fe1a3ab781d129997e64a2ba1e8a13f32a6e669a578cee65c2f
7
+ data.tar.gz: 69be13bdb4299c5ce77bca00a2351bf2d22f5135bd2854ee2e3813ccbfea58c9194da889a3f3dddbe81626a617ff8db504e3c0f25681bdfc4e8a63e35850d2fe
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # google_data_safety plugin
1
+ # Fastlane google_data_safety Plugin
2
2
 
3
- [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-data_safety)
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-google_data_safety)
4
4
 
5
5
  ## Getting Started
6
6
 
@@ -12,32 +12,68 @@ fastlane add_plugin google_data_safety
12
12
 
13
13
  ## About google_data_safety
14
14
 
15
- Google safety data sheet for automation of safety form
15
+ Google safety data plugin help with automation of data safety form on Google Play Console. Review [Google policy data safety section](https://support.google.com/googleplay/android-developer/answer/10787469?hl=en) for more information about the form.
16
16
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
17
+ ## Actions
18
18
 
19
- ## Example
19
+ ### upload_google_data_safety
20
20
 
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
21
+ Uploads Google data safety csv file to Google Play Console.
22
22
 
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
- ## Run tests for this plugin
26
-
27
- To run both the tests, and code style validation, run
23
+ #### 2 Examples
28
24
 
29
- ```
30
- rake
25
+ ```ruby
26
+ upload_google_data_safety(
27
+ csv_file: "data_safety_export.csv",
28
+ package_name: "my.package.name",
29
+ json_key: "key.json"
30
+ )
31
31
  ```
32
32
 
33
- To automatically fix many of the styling issues, use
33
+ ```ruby
34
+ upload_google_data_safety(
35
+ csv_content: "Question ID (machine readable),Response ID (machine readable),Response value,Answer requirement,Human-friendly question label\n ...",
36
+ package_name: "my.package.name",
37
+ json_key_data: "..."
38
+ )
34
39
  ```
35
- rubocop -a
40
+
41
+ #### Parameters
42
+
43
+ | Key | Description |
44
+ | --- | ----------- |
45
+ | json_key_data | The raw service account JSON data used to authenticate with Google |
46
+ | json_key | The path to a file containing service account JSON, used to authenticate with Google |
47
+ | package_name | The package name of the application to use |
48
+ | csv_file | The path to a file containing Google data safety csv |
49
+ | csv_content | The raw csv data used for Google data safety |
50
+
51
+ ### prompt_create_data_safety_csv
52
+
53
+ Prompt user questions about data usage within Android app.
54
+ **Does not allow for non interactive mode**.
55
+
56
+ #### Example
57
+
58
+ ```ruby
59
+ prompt_create_data_safety_csv(
60
+ csv_file: "google_data_safety.csv"
61
+ )
36
62
  ```
37
63
 
64
+ #### Parameters
65
+
66
+ | Key | Description |
67
+ | --- | ----------- |
68
+ | csv_file | The path to save csv file for upload to Google Play Console |
69
+
70
+ #### Issue reporting
71
+
72
+ For Issues on incorrect CSV file, please get a screenshot of manual import of csv file issues.
73
+
38
74
  ## Issues and Feedback
39
75
 
40
- For any other issues and feedback about this plugin, please submit it to this repository.
76
+ For any other issues and feedback about this plugin, please submit it to this repository. Any issue specific to generating CSV file, please upload a screenshot of CSV file error and all of the question prompt answers.
41
77
 
42
78
  ## Troubleshooting
43
79
 
@@ -0,0 +1,340 @@
1
+ require 'fastlane/action'
2
+ require 'googleauth'
3
+ require_relative '../helper/prompt_create_data_safety_csv_helper'
4
+ require 'net/http'
5
+ require 'json'
6
+ require 'csv'
7
+
8
+ module Fastlane
9
+ module Actions
10
+ class PromptCreateDataSafetyCsvAction < Action
11
+ def self.run(params)
12
+
13
+ if !UI.interactive?
14
+ UI.error("Prompts questions can only display in interactive.")
15
+ end
16
+
17
+ csv_file_path = params[:csv_file]
18
+ csv_file_path = File.expand_path(csv_file_path)
19
+
20
+ hash = {}
21
+
22
+ self.headerDisplay(csv_file: csv_file_path)
23
+ self.startingQuestion(hash: hash)
24
+
25
+ template_data = Helper::PromptCreateDataSafetyHelper.template_array()
26
+
27
+ template_data.each_with_index do | row |
28
+ hash_key = "#{row[0]},#{row[1]}"
29
+ if hash.key?(hash_key)
30
+ row[2] = hash[hash_key]
31
+ end
32
+ end
33
+
34
+ CSV.open(csv_file_path, "w") do |csv|
35
+ template_data.each do |row|
36
+ csv << row
37
+ end
38
+ end
39
+
40
+ end
41
+
42
+ def self.headerDisplay(csv_file: nil)
43
+ UI.important("")
44
+ UI.important(" ____ _ ____ _ ____ __ _ ")
45
+ UI.important(" / ___| ___ ___ __ _| | ___ | _ \\ __ _| |_ __ _ / ___| __ _ / _| ___| |_ _ _ ")
46
+ UI.important(" | | _ / _ \\ / _ \\ / _` | |/ _ \\ | | | |/ _` | __/ _` | \\___ \\ / _` | |_ / _ | __| | | |")
47
+ UI.important(" | |_| | (_) | (_) | (_| | | __/ | |_| | (_| | || (_| | ___) | (_| | _| __| |_| |_| |")
48
+ UI.important(" \\____|\\___/ \\___/ \\__, |_|\\___| |____/ \\__,_|\\__\\__,_| |____/ \\__,_|_| \\___|\\__|\\__, |")
49
+ UI.important(" |___/ |___/ ")
50
+ UI.important("")
51
+ UI.important("By: Owen Bean")
52
+ UI.important("Report problems at https://github.com/owenbean400/fastlane-plugin-google_data_safety/issues")
53
+ UI.important("")
54
+ UI.important("Answer the following prompt below to generate CSV file to upload at #{csv_file}")
55
+ UI.important("")
56
+ end
57
+
58
+ def self.startingQuestion(hash: nil)
59
+ dataInputAppInfo = UI.input("Does your app collect or share any of the required user data types? Y/N")
60
+
61
+ self.addToHash(hash: hash, question_id: "PSL_DATA_COLLECTION_COLLECTS_PERSONAL_DATA", response_id: "", value: self.trueOrFalse(str_response: dataInputAppInfo))
62
+
63
+ if dataInputAppInfo.downcase == "y" || dataInputAppInfo.downcase == "yes"
64
+
65
+ dataInputEncryption = UI.input("Is all of the user data collected by your app encrypted in transit? Y/N")
66
+ self.addToHash(hash: hash, question_id: "PSL_DATA_COLLECTION_ENCRYPTED_IN_TRANSIT", response_id: "", value: self.trueOrFalse(str_response: dataInputEncryption))
67
+
68
+ dataInputAccountCreate = UI.input("Does the app allow for account creation from within the app? Y/N")
69
+
70
+ if dataInputAccountCreate.downcase == "y" || dataInputAccountCreate.downcase == "yes"
71
+
72
+ dataInputCreateUserPass = UI.input("Does the app allow for account creation from username and password? Y/N")
73
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", response_id: "PSL_ACM_USER_ID_PASSWORD", value: self.trueOrBlank(str_response: dataInputCreateUserPass))
74
+
75
+ dataInputCreateUserAuth = UI.input("Does the app allow for account creation from username and other authentication? Y/N")
76
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", response_id: "PSL_ACM_USER_ID_OTHER_AUTH", value: self.trueOrBlank(str_response: dataInputCreateUserAuth))
77
+
78
+ dataInputCreateUserPassAuth = UI.input("Does the app allow for account creation from username, password, and other authentication? Y/N")
79
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", response_id: "PSL_ACM_USER_ID_PASSWORD_OTHER_AUTH", value: self.trueOrBlank(str_response: dataInputCreateUserPassAuth))
80
+
81
+ dataInputCreateOauth = UI.input("Does the app allow for account creation from OAuth? Y/N")
82
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", response_id: "PSL_ACM_OAUTH", value: self.trueOrBlank(str_response: dataInputCreateOauth))
83
+
84
+ dataInputCreateOther = UI.input("Does the app allow for other account creation method? Y/N")
85
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", response_id: "PSL_ACM_OTHER", value: self.trueOrBlank(str_response: dataInputCreateOther))
86
+
87
+ if dataInputCreateOther.downcase == "y" || dataInputCreateOther.downcase == "yes"
88
+
89
+ dataInputCreateOtherDesc = UI.input("Describe the method of account creation that your app supports")
90
+ self.addToHash(hash: hash, question_id: "PSL_ACM_SPECIFY", response_id: "", value: dataInputCreateOtherDesc)
91
+
92
+ end
93
+
94
+ dataInputAccountDeletionURL = UI.input("Added valid URL for account deletion")
95
+ self.addToHash(hash: hash, question_id: "PSL_ACCOUNT_DELETION_URL", response_id: "", value: dataInputAccountDeletionURL)
96
+
97
+ else
98
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", response_id: "PSL_ACM_NONE", value: "true")
99
+
100
+ dataInputLoginOutside = UI.input("Can users login to your app with accounts created outside of the app?")
101
+ self.addToHash(hash: hash, question_id: "PSL_HAS_OUTSIDE_APP_ACCOUNTS", response_id: "", value: self.trueOrBlank(str_response: dataInputLoginOutside))
102
+
103
+ if dataInputLoginOutside.downcase == "y" || dataInputLoginOutside.downcase == "yes"
104
+
105
+ dataInputLoginOutsideOut = UI.input("Can users create account outside of app by app identification (e.g. SIM binding, service subscription)? Y/N")
106
+ self.addToHash(hash: hash, question_id: "PSL_OUTSIDE_APP_ACCOUNT_TYPES", response_id: "PSL_LOGIN_WITH_OUTSIDE_APP_ID", value: self.trueOrBlank(str_response: dataInputLoginOutsideOut))
107
+
108
+ dataInputLoginOutsideAccount = UI.input("Can users create account outside of app by employment or enterprise account?")
109
+ self.addToHash(hash: hash, question_id: "PSL_OUTSIDE_APP_ACCOUNT_TYPES", response_id: "PSL_LOGIN_THROUGH_EMPLOYMENT_OR_ENTERPRISE_ACCOUNT", value: self.trueOrBlank(str_response: dataInputLoginOutsideAccount))
110
+
111
+ dataInputLoginOutsideOther = UI.input("Is there other way users can create account outside of app?")
112
+ self.addToHash(hash: hash, question_id: "PSL_OUTSIDE_APP_ACCOUNT_TYPES", response_id: "PSL_OUTSIDE_APP_ACCOUNT_TYPE_OTHER", value: self.trueOrBlank(str_response: dataInputLoginOutsideOther))
113
+
114
+ if dataInputLoginOutsideOther.downcase == "y" || dataInputLoginOutsideOther.downcase == "yes"
115
+
116
+ dataInputLoginOutsideOther = UI.input("Describe how these accounts are created")
117
+ self.addToHash(hash: hash, question_id: "PSL_OUTSIDE_APP_ACCOUNT_TYPE_SPECIFY", response_id: "", value: dataInputLoginOutsideOther)
118
+
119
+ end
120
+
121
+ end
122
+
123
+ end
124
+
125
+ dataInputDeleteData = UI.input("Do you provide a way for users to request that their data is deleted? Type 90 for deletion after 90 days. Y/N/90")
126
+
127
+ if dataInputDeleteData.downcase == "y" || dataInputDeleteData == "yes"
128
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORT_DATA_DELETION_BY_USER", response_id: "DATA_DELETION_YES", value: "true")
129
+
130
+ dataInputDeleteLink = UI.input("What URL link can users request to delete data?")
131
+ self.addToHash(hash: hash, question_id: "PSL_DATA_DELETION_URL", response_id: "", value: dataInputDeleteLink)
132
+ elsif dataInputDeleteData.downcase == "90"
133
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORT_DATA_DELETION_BY_USER", response_id: "DATA_DELETION_NO_AUTO_DELETED", value: "true")
134
+ else
135
+ self.addToHash(hash: hash, question_id: "PSL_SUPPORT_DATA_DELETION_BY_USER", response_id: "DATA_DELETION_NO", value: "true")
136
+ end
137
+
138
+ self.questionDataInfo(hash: hash)
139
+ end
140
+ end
141
+
142
+ def self.questionDataInfo(hash: nil)
143
+ UI.important("*** Below questions will be asked about personal information data ***")
144
+ self.questionDataType(title: "name", code: "PSL_NAME", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
145
+ self.questionDataType(title: "email", code: "PSL_EMAIL", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
146
+ self.questionDataType(title: "user ID", code: "PSL_USER_ACCOUNT", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
147
+ self.questionDataType(title: "address", code: "PSL_ADDRESS", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
148
+ self.questionDataType(title: "phone", code: "PSL_PHONE", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
149
+ self.questionDataType(title: "race and ethnicity", code: "PSL_RACE_ETHNICITY", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
150
+ self.questionDataType(title: "political or religious beliefs", code: "PSL_POLITICAL_RELIGIOUS", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
151
+ self.questionDataType(title: "sexual orientation", code: "PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
152
+ self.questionDataType(title: "other personal information", code: "PSL_OTHER_PERSONAL", group_code: "PSL_DATA_TYPES_PERSONAL", hash: hash)
153
+
154
+ UI.important("*** Below questions will be asked about financial data ***")
155
+ self.questionDataType(title: "user payment information", code: "PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER", group_code: "PSL_DATA_TYPES_FINANCIAL", hash: hash)
156
+ self.questionDataType(title: "purchase history", code: "PSL_PURCHASE_HISTORY", group_code: "PSL_DATA_TYPES_FINANCIAL", hash: hash)
157
+ self.questionDataType(title: "credit score", code: "PSL_CREDIT_SCORE", group_code: "PSL_DATA_TYPES_FINANCIAL", hash: hash)
158
+ self.questionDataType(title: "other financial info", code: "PSL_OTHER", group_code: "PSL_DATA_TYPES_FINANCIAL", hash: hash)
159
+
160
+ UI.important("*** Below questions will be asked about location data ***")
161
+ self.questionDataType(title: "approximate location", code: "PSL_APPROX_LOCATION", group_code: "PSL_DATA_TYPES_LOCATION", hash: hash)
162
+ self.questionDataType(title: "precise location", code: "PSL_PRECISE_LOCATION", group_code: "PSL_DATA_TYPES_LOCATION", hash: hash)
163
+
164
+ UI.important("*** Below questions will be asked about location data ***")
165
+ self.questionDataType(title: "web browser history", code: "PSL_WEB_BROWSING_HISTORY", group_code: "PSL_DATA_TYPES_SEARCH_AND_BROWSING", hash: hash)
166
+
167
+ UI.important("*** Below questions will be asked about email and text data ***")
168
+ self.questionDataType(title: "email", code: "PSL_EMAILS", group_code: "PSL_DATA_TYPES_EMAIL_AND_TEXT", hash: hash)
169
+ self.questionDataType(title: "SMS or MMS", code: "PSL_SMS_CALL_LOG", group_code: "PSL_DATA_TYPES_EMAIL_AND_TEXT", hash: hash)
170
+ self.questionDataType(title: "Other in-app messages", code: "PSL_OTHER_MESSAGES", group_code: "PSL_DATA_TYPES_EMAIL_AND_TEXT", hash: hash)
171
+
172
+ UI.important("*** Below questions will be asked about photo and video data ***")
173
+ self.questionDataType(title: "photo", code: "PSL_PHOTOS", group_code: "PSL_DATA_TYPES_PHOTOS_AND_VIDEOS", hash: hash)
174
+ self.questionDataType(title: "videos", code: "PSL_VIDEOS", group_code: "PSL_DATA_TYPES_PHOTOS_AND_VIDEOS", hash: hash)
175
+
176
+ UI.important("*** Below questions will be asked about audio and music data ***")
177
+ self.questionDataType(title: "voice or sound recordings", code: "PSL_AUDIO", group_code: "PSL_DATA_TYPES_AUDIO", hash: hash)
178
+ self.questionDataType(title: "music files", code: "PSL_MUSIC", group_code: "PSL_DATA_TYPES_AUDIO", hash: hash)
179
+ self.questionDataType(title: "Other audio files", code: "PSL_OTHER_AUDIO", group_code: "PSL_DATA_TYPES_AUDIO", hash: hash)
180
+
181
+ UI.important("\n*** Below questions will be asked about audio and music data ***")
182
+ self.questionDataType(title: "health info", code: "PSL_HEALTH", group_code: "PSL_DATA_TYPES_HEALTH_AND_FITNESS", hash: hash)
183
+ self.questionDataType(title: "fitness info", code: "PSL_FITNESS", group_code: "PSL_DATA_TYPES_HEALTH_AND_FITNESS", hash: hash)
184
+
185
+ UI.important("*** Below questions will be asked about contact data ***")
186
+ self.questionDataType(title: "contacts", code: "PSL_CONTACTS", group_code: "PSL_DATA_TYPES_CONTACTS", hash: hash)
187
+
188
+ UI.important("*** Below questions will be asked about calendar data ***")
189
+ self.questionDataType(title: "calendar events", code: "PSL_CALENDAR", group_code: "PSL_DATA_TYPES_CALENDAR", hash: hash)
190
+
191
+ UI.important("*** Below questions will be asked about app performance data ***")
192
+ self.questionDataType(title: "crash log", code: "PSL_CRASH_LOGS", group_code: "PSL_DATA_TYPES_APP_PERFORMANCE", hash: hash)
193
+ self.questionDataType(title: "performance diagnostics", code: "PSL_PERFORMANCE_DIAGNOSTICS", group_code: "PSL_DATA_TYPES_APP_PERFORMANCE", hash: hash)
194
+ self.questionDataType(title: "other app performance data", code: "PSL_OTHER_PERFORMANCE", group_code: "PSL_DATA_TYPES_APP_PERFORMANCE", hash: hash)
195
+
196
+ UI.important("*** Below questions will be asked about files and documents data ***")
197
+ self.questionDataType(title: "files and docs", code: "PSL_FILES_AND_DOCS", group_code: "PSL_DATA_TYPES_FILES_AND_DOCS", hash: hash)
198
+
199
+ UI.important("*** Below questions will be asked about app activity data ***")
200
+ self.questionDataType(title: "app interactions", code: "PSL_USER_INTERACTION", group_code: "PSL_DATA_TYPES_APP_ACTIVITY", hash: hash)
201
+ self.questionDataType(title: "installed apps", code: "PSL_IN_APP_SEARCH_HISTORY", group_code: "PSL_DATA_TYPES_APP_ACTIVITY", hash: hash)
202
+ self.questionDataType(title: "other user-generated content", code: "PSL_USER_GENERATED_CONTENT", group_code: "PSL_DATA_TYPES_APP_ACTIVITY", hash: hash)
203
+ self.questionDataType(title: "other actions", code: "PSL_OTHER_APP_ACTIVITY", group_code: "PSL_DATA_TYPES_APP_ACTIVITY", hash: hash)
204
+
205
+ UI.important("*** Below questions will be asked about identifier data ***")
206
+ self.questionDataType(title: "device or other IDs", code: "PSL_DEVICE_ID", group_code: "PSL_DATA_TYPES_IDENTIFIERS", hash: hash)
207
+ end
208
+
209
+ def self.questionDataType(title: "", code: "", group_code: "", hash: nil)
210
+ dataInputCollectOrShare = UI.input("Is #{title} data being collected or shared? Y/N")
211
+ self.addToHash(hash: hash, question_id: group_code, response_id: code, value: self.trueOrBlank(str_response: dataInputCollectOrShare))
212
+
213
+ if dataInputCollectOrShare.downcase == "y" || dataInputCollectOrShare.downcase == "yes"
214
+ dataInputShared = UI.input("Is #{title} data being shared? Y/N")
215
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:PSL_DATA_USAGE_COLLECTION_AND_SHARING", response_id: "PSL_DATA_USAGE_ONLY_SHARED", value: self.trueOrBlank(str_response: dataInputShared))
216
+
217
+ # Data Shared Question
218
+ if dataInputShared.downcase == "y" || dataInputShared.downcase == "yes"
219
+ dataInputShareAppFunctionality = UI.input("Is #{title} shared for app functionality? Y/N")
220
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_APP_FUNCTIONALITY", value: self.trueOrBlank(str_response: dataInputShareAppFunctionality))
221
+
222
+ dataInputShareAnalytics = UI.input("Is #{title} shared for analytics? Y/N")
223
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_ANALYTICS", value: self.trueOrBlank(str_response: dataInputShareAnalytics))
224
+
225
+ dataInputShareDeveloperComm = UI.input("Is #{title} shared for developer communications? Y/N")
226
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_DEVELOPER_COMMUNICATIONS", value: self.trueOrBlank(str_response: dataInputShareDeveloperComm))
227
+
228
+ dataInputShareAdvertise = UI.input("Is #{title} shared for advertising or marketing? Y/N")
229
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_ADVERTISING", value: self.trueOrBlank(str_response: dataInputShareAdvertise))
230
+
231
+ dataInputShareFraud = UI.input("Is #{title} shared for fraud prevention, security, or compliance? Y/N")
232
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_FRAUD_PREVENTION_SECURITY", value: self.trueOrBlank(str_response: dataInputShareFraud))
233
+
234
+ dataInputSharePersonal = UI.input("Is #{title} shared for personalizing the app? Y/N")
235
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_PERSONALIZATION", value: self.trueOrBlank(str_response: dataInputSharePersonal))
236
+
237
+ dataInputShareAccount = UI.input("Is #{title} shared to manage account? Y/N")
238
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_SHARING_PURPOSE", response_id: "PSL_ACCOUNT_MANAGEMENT", value: self.trueOrBlank(str_response: dataInputShareAccount))
239
+ end
240
+
241
+ dataInputCollected = UI.input("Is #{title} data being collected? Y/N")
242
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:PSL_DATA_USAGE_COLLECTION_AND_SHARING", response_id: "PSL_DATA_USAGE_ONLY_COLLECTED", value: self.trueOrBlank(str_response: dataInputCollected))
243
+
244
+ # Data Collection Question
245
+ if dataInputCollected.downcase == "y" || dataInputCollected.downcase == "yes"
246
+ dataInputEphemeral = UI.input("Is #{title} data processed ephemerally? Y/N")
247
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:PSL_DATA_USAGE_EPHEMERAL", response_id: "", value: self.trueOrBlank(str_response: dataInputEphemeral))
248
+
249
+ dataInputRequired = UI.input("Is #{title} data required for your app? Y/N")
250
+ if dataInputRequired.downcase == "y" || dataInputRequired == "yes"
251
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_USER_CONTROL", response_id: "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", value: "true")
252
+ else
253
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_USER_CONTROL", response_id: "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", value: "true")
254
+ end
255
+
256
+
257
+ dataInputCollectAppFunctionality = UI.input("Is #{title} collected for app functionality? Y/N")
258
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_APP_FUNCTIONALITY", value: self.trueOrBlank(str_response: dataInputCollectAppFunctionality))
259
+
260
+ dataInputCollectAnalytics = UI.input("Is #{title} collected for analytics? Y/N")
261
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_ANALYTICS", value: self.trueOrBlank(str_response: dataInputCollectAnalytics))
262
+
263
+ dataInputCollectDeveloperComm = UI.input("Is #{title} collected for developer communications? Y/N")
264
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_DEVELOPER_COMMUNICATIONS", value: self.trueOrBlank(str_response: dataInputCollectDeveloperComm))
265
+
266
+ dataInputCollectAdvertise = UI.input("Is #{title} collected for advertising or marketing? Y/N")
267
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_ADVERTISING", value: self.trueOrBlank(str_response: dataInputCollectAdvertise))
268
+
269
+ dataInputCollectFraud = UI.input("Is #{title} collected for fraud prevention, security, or compliance? Y/N")
270
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_FRAUD_PREVENTION_SECURITY", value: self.trueOrBlank(str_response: dataInputCollectFraud))
271
+
272
+ dataInputCollectPersonal = UI.input("Is #{title} collected for personalizing the app? Y/N")
273
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_PERSONALIZATION", value: self.trueOrBlank(str_response: dataInputCollectPersonal))
274
+
275
+ dataInputCollectAccount = UI.input("Is #{title} collected to manage account? Y/N")
276
+ self.addToHash(hash: hash, question_id: "PSL_DATA_USAGE_RESPONSES:#{code}:DATA_USAGE_COLLECTION_PURPOSE", response_id: "PSL_ACCOUNT_MANAGEMENT", value: self.trueOrBlank(str_response: dataInputCollectAccount))
277
+ end
278
+ end
279
+ end
280
+
281
+ def self.addToHash(hash: nil, question_id: nil, response_id: "", value: nil)
282
+ if !value.nil?
283
+ hash["#{question_id},#{response_id}"] = value
284
+ end
285
+ end
286
+
287
+ def self.trueOrBlank(str_response: nil)
288
+ if str_response.downcase == "y" || str_response.downcase == "yes"
289
+ "true"
290
+ else
291
+ nil
292
+ end
293
+ end
294
+
295
+ def self.trueOrFalse(str_response: nil)
296
+ if str_response.downcase == "y" || str_response.downcase == "yes"
297
+ "true"
298
+ else
299
+ "false"
300
+ end
301
+ end
302
+
303
+ def self.description
304
+ "Prompt user questions to generate Google data safety sheet"
305
+ end
306
+
307
+ def self.authors
308
+ ["Owen Bean"]
309
+ end
310
+
311
+ def self.return_value
312
+ # If your method provides a return value, you can describe here what it does
313
+ end
314
+
315
+ def self.details
316
+ "Command line question prompts for information about Android app data collection"
317
+ end
318
+
319
+ def self.available_options
320
+ [
321
+ FastlaneCore::ConfigItem.new(
322
+ key: :csv_file,
323
+ env_name: "CSV_FILE",
324
+ description: "File location to save csv file for Google data safety sheet",
325
+ optional: false,
326
+ type: String
327
+ )
328
+ ]
329
+ end
330
+
331
+ def self.is_supported?(platform)
332
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
333
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
334
+ #
335
+ # [:ios, :mac, :android].include?(platform)
336
+ true
337
+ end
338
+ end
339
+ end
340
+ end
@@ -0,0 +1,17 @@
1
+ require 'fastlane_core/ui/ui'
2
+
3
+ module Fastlane
4
+ UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
5
+
6
+ module Helper
7
+ class PromptCreateDataSafetyHelper
8
+ def self.template_array
9
+
10
+ doubleArrTemplate = [["Question ID (machine readable)", "Response ID (machine readable)", "Response value", "Answer requirement", "Human-friendly question label"], ["PSL_DATA_COLLECTION_COLLECTS_PERSONAL_DATA", nil, nil, "REQUIRED", "Does your app collect or share any of the required user data types?"], ["PSL_DATA_COLLECTION_ENCRYPTED_IN_TRANSIT", nil, nil, "MAYBE_REQUIRED", "Is all of the user data collected by your app encrypted in transit?"], ["PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", "PSL_ACM_USER_ID_PASSWORD", nil, "MULTIPLE_CHOICE", "Which of the following methods of account creation does your app support? Select all that apply / Username and password"], ["PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", "PSL_ACM_USER_ID_OTHER_AUTH", nil, "MULTIPLE_CHOICE", "Which of the following methods of account creation does your app support? Select all that apply / Username and other authentication"], ["PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", "PSL_ACM_USER_ID_PASSWORD_OTHER_AUTH", nil, "MULTIPLE_CHOICE", "Which of the following methods of account creation does your app support? Select all that apply / Username, password, and other authentication"], ["PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", "PSL_ACM_OAUTH", nil, "MULTIPLE_CHOICE", "Which of the following methods of account creation does your app support? Select all that apply / OAuth"], ["PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", "PSL_ACM_OTHER", nil, "MULTIPLE_CHOICE", "Which of the following methods of account creation does your app support? Select all that apply / Other"], ["PSL_SUPPORTED_ACCOUNT_CREATION_METHODS", "PSL_ACM_NONE", nil, "MULTIPLE_CHOICE", "Which of the following methods of account creation does your app support? Select all that apply / My app does not allow users to create an account"], ["PSL_ACM_SPECIFY", nil, nil, "MAYBE_REQUIRED", "Describe the method of account creation that your app supports"], ["PSL_ACCOUNT_DELETION_URL", nil, nil, "MAYBE_REQUIRED", "Add a link that users can use to request that their account and associated data is deleted "], ["PSL_SUPPORT_DATA_DELETION_BY_USER", "DATA_DELETION_YES", nil, "SINGLE_CHOICE", "Do you provide a way for users to request that their data is deleted? / Yes"], ["PSL_SUPPORT_DATA_DELETION_BY_USER", "DATA_DELETION_NO", nil, "SINGLE_CHOICE", "Do you provide a way for users to request that their data is deleted? / No"], ["PSL_SUPPORT_DATA_DELETION_BY_USER", "DATA_DELETION_NO_AUTO_DELETED", nil, "SINGLE_CHOICE", "Do you provide a way for users to request that their data is deleted? / No, but user data is automatically deleted within 90 days"], ["PSL_DATA_DELETION_URL", nil, nil, "MAYBE_REQUIRED", "Delete data URL"], ["PSL_DATA_COLLECTION_COMPLIES_FAMILY_POLICY", nil, nil, "OPTIONAL", "Only answer this question if you've indicated that your app's target age group includes children, or you've opted into the Designed for Families program. If either of the above is true, you are required to follow the Google Play Families Policy (https://support.google.com/googleplay/android-developer/answer/9893335). Do you want to let users know about this commitment in the Data safety section on your store listing?"], ["PSL_INDEPENDENTLY_VALIDATED", nil, nil, "OPTIONAL", "Has your app successfully completed an independent security review, according to the Mobile Application Security Assessment (MASA) framework? Only answer \"yes\" if the review is in good standing."], ["PSL_UPI_BADGE_OPT_IN", nil, nil, "OPTIONAL", "Do you want to show this badge on your store listing?"], ["PSL_HAS_OUTSIDE_APP_ACCOUNTS", nil, nil, "OPTIONAL", "Can users login to your app with accounts created outside of the app?"], ["PSL_OUTSIDE_APP_ACCOUNT_TYPES", "PSL_LOGIN_WITH_OUTSIDE_APP_ID", nil, "MULTIPLE_CHOICE", "How are these accounts created? / Out of app identification (e.g. SIM binding, service subscription)"], ["PSL_OUTSIDE_APP_ACCOUNT_TYPES", "PSL_LOGIN_THROUGH_EMPLOYMENT_OR_ENTERPRISE_ACCOUNT", nil, "MULTIPLE_CHOICE", "How are these accounts created? / Through employment, or enterprise accounts"], ["PSL_OUTSIDE_APP_ACCOUNT_TYPES", "PSL_OUTSIDE_APP_ACCOUNT_TYPE_OTHER", nil, "MULTIPLE_CHOICE", "How are these accounts created? / Other"], ["PSL_OUTSIDE_APP_ACCOUNT_TYPE_SPECIFY", nil, nil, "MAYBE_REQUIRED", "Describe how these accounts are created"], ["PSL_DATA_TYPES_PERSONAL", "PSL_NAME", nil, "MULTIPLE_CHOICE", "Personal info / Name"], ["PSL_DATA_TYPES_PERSONAL", "PSL_EMAIL", nil, "MULTIPLE_CHOICE", "Personal info / Email address"], ["PSL_DATA_TYPES_PERSONAL", "PSL_USER_ACCOUNT", nil, "MULTIPLE_CHOICE", "Personal info / User IDs"], ["PSL_DATA_TYPES_PERSONAL", "PSL_ADDRESS", nil, "MULTIPLE_CHOICE", "Personal info / Address"], ["PSL_DATA_TYPES_PERSONAL", "PSL_PHONE", nil, "MULTIPLE_CHOICE", "Personal info / Phone number"], ["PSL_DATA_TYPES_PERSONAL", "PSL_RACE_ETHNICITY", nil, "MULTIPLE_CHOICE", "Personal info / Race and ethnicity"], ["PSL_DATA_TYPES_PERSONAL", "PSL_POLITICAL_RELIGIOUS", nil, "MULTIPLE_CHOICE", "Personal info / Political or religious beliefs"], ["PSL_DATA_TYPES_PERSONAL", "PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY", nil, "MULTIPLE_CHOICE", "Personal info / Sexual orientation"], ["PSL_DATA_TYPES_PERSONAL", "PSL_OTHER_PERSONAL", nil, "MULTIPLE_CHOICE", "Personal info / Other info"], ["PSL_DATA_TYPES_FINANCIAL", "PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER", nil, "MULTIPLE_CHOICE", "Financial info / User payment info"], ["PSL_DATA_TYPES_FINANCIAL", "PSL_PURCHASE_HISTORY", nil, "MULTIPLE_CHOICE", "Financial info / Purchase history"], ["PSL_DATA_TYPES_FINANCIAL", "PSL_CREDIT_SCORE", nil, "MULTIPLE_CHOICE", "Financial info / Credit score"], ["PSL_DATA_TYPES_FINANCIAL", "PSL_OTHER", nil, "MULTIPLE_CHOICE", "Financial info / Other financial info"], ["PSL_DATA_TYPES_LOCATION", "PSL_APPROX_LOCATION", nil, "MULTIPLE_CHOICE", "Location / Approximate location"], ["PSL_DATA_TYPES_LOCATION", "PSL_PRECISE_LOCATION", nil, "MULTIPLE_CHOICE", "Location / Precise location"], ["PSL_DATA_TYPES_SEARCH_AND_BROWSING", "PSL_WEB_BROWSING_HISTORY", nil, "MULTIPLE_CHOICE", "Web browsing / Web browsing history"], ["PSL_DATA_TYPES_EMAIL_AND_TEXT", "PSL_EMAILS", nil, "MULTIPLE_CHOICE", "Messages / Emails"], ["PSL_DATA_TYPES_EMAIL_AND_TEXT", "PSL_SMS_CALL_LOG", nil, "MULTIPLE_CHOICE", "Messages / SMS or MMS"], ["PSL_DATA_TYPES_EMAIL_AND_TEXT", "PSL_OTHER_MESSAGES", nil, "MULTIPLE_CHOICE", "Messages / Other in-app messages"], ["PSL_DATA_TYPES_PHOTOS_AND_VIDEOS", "PSL_PHOTOS", nil, "MULTIPLE_CHOICE", "Photos and videos / Photos"], ["PSL_DATA_TYPES_PHOTOS_AND_VIDEOS", "PSL_VIDEOS", nil, "MULTIPLE_CHOICE", "Photos and videos / Videos"], ["PSL_DATA_TYPES_AUDIO", "PSL_AUDIO", nil, "MULTIPLE_CHOICE", "Audio files / Voice or sound recordings"], ["PSL_DATA_TYPES_AUDIO", "PSL_MUSIC", nil, "MULTIPLE_CHOICE", "Audio files / Music files"], ["PSL_DATA_TYPES_AUDIO", "PSL_OTHER_AUDIO", nil, "MULTIPLE_CHOICE", "Audio files / Other audio files"], ["PSL_DATA_TYPES_HEALTH_AND_FITNESS", "PSL_HEALTH", nil, "MULTIPLE_CHOICE", "Health and fitness / Health info"], ["PSL_DATA_TYPES_HEALTH_AND_FITNESS", "PSL_FITNESS", nil, "MULTIPLE_CHOICE", "Health and fitness / Fitness info"], ["PSL_DATA_TYPES_CONTACTS", "PSL_CONTACTS", nil, "MULTIPLE_CHOICE", "Contacts / Contacts"], ["PSL_DATA_TYPES_CALENDAR", "PSL_CALENDAR", nil, "MULTIPLE_CHOICE", "Calendar / Calendar events"], ["PSL_DATA_TYPES_APP_PERFORMANCE", "PSL_CRASH_LOGS", nil, "MULTIPLE_CHOICE", "App info and performance / Crash logs"], ["PSL_DATA_TYPES_APP_PERFORMANCE", "PSL_PERFORMANCE_DIAGNOSTICS", nil, "MULTIPLE_CHOICE", "App info and performance / Diagnostics"], ["PSL_DATA_TYPES_APP_PERFORMANCE", "PSL_OTHER_PERFORMANCE", nil, "MULTIPLE_CHOICE", "App info and performance / Other app performance data"], ["PSL_DATA_TYPES_FILES_AND_DOCS", "PSL_FILES_AND_DOCS", nil, "MULTIPLE_CHOICE", "Files and docs / Files and docs"], ["PSL_DATA_TYPES_APP_ACTIVITY", "PSL_USER_INTERACTION", nil, "MULTIPLE_CHOICE", "App activity / App interactions"], ["PSL_DATA_TYPES_APP_ACTIVITY", "PSL_IN_APP_SEARCH_HISTORY", nil, "MULTIPLE_CHOICE", "App activity / In-app search history"], ["PSL_DATA_TYPES_APP_ACTIVITY", "PSL_APPS_ON_DEVICE", nil, "MULTIPLE_CHOICE", "App activity / Installed apps"], ["PSL_DATA_TYPES_APP_ACTIVITY", "PSL_USER_GENERATED_CONTENT", nil, "MULTIPLE_CHOICE", "App activity / Other user-generated content"], ["PSL_DATA_TYPES_APP_ACTIVITY", "PSL_OTHER_APP_ACTIVITY", nil, "MULTIPLE_CHOICE", "App activity / Other actions"], ["PSL_DATA_TYPES_IDENTIFIERS", "PSL_DEVICE_ID", nil, "MULTIPLE_CHOICE", "Device or other IDs / Device or other IDs"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Name) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Name) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Name) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_NAME:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Name) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Email address) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Email address) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Email address) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAIL:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Email address) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (User IDs) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (User IDs) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (User IDs) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_ACCOUNT:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (User IDs) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Address) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Address) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Address) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_ADDRESS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Address) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Phone number) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Phone number) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Phone number) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHONE:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Phone number) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Race and ethnicity) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Race and ethnicity) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Race and ethnicity) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_RACE_ETHNICITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Race and ethnicity) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Political or religious beliefs) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_POLITICAL_RELIGIOUS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Political or religious beliefs) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Sexual orientation) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Sexual orientation) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Sexual orientation) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_SEXUAL_ORIENTATION_GENDER_IDENTITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Sexual orientation) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other info) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other info) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other info) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERSONAL:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other info) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (User payment info) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (User payment info) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (User payment info) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_DEBIT_BANK_ACCOUNT_NUMBER:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (User payment info) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Purchase history) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Purchase history) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Purchase history) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PURCHASE_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Purchase history) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Credit score) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Credit score) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Credit score) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CREDIT_SCORE:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Credit score) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other financial info) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other financial info) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other financial info) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other financial info) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Approximate location) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Approximate location) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Approximate location) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPROX_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Approximate location) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Precise location) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Precise location) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Precise location) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PRECISE_LOCATION:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Precise location) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Web browsing history) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Web browsing history) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Web browsing history) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_WEB_BROWSING_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Web browsing history) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Emails) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Emails) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Emails) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_EMAILS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Emails) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (SMS or MMS) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (SMS or MMS) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (SMS or MMS) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_SMS_CALL_LOG:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (SMS or MMS) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other in-app messages) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other in-app messages) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other in-app messages) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_MESSAGES:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other in-app messages) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Photos) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Photos) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Photos) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PHOTOS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Photos) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Videos) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Videos) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Videos) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_VIDEOS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Videos) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Voice or sound recordings) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Voice or sound recordings) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Music files) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Music files) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Music files) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_MUSIC:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Music files) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other audio files) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other audio files) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other audio files) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_AUDIO:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other audio files) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Health info) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Health info) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Health info) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_HEALTH:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Health info) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Fitness info) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Fitness info) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Fitness info) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_FITNESS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Fitness info) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Contacts) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Contacts) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Contacts) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CONTACTS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Contacts) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Calendar events) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Calendar events) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Calendar events) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CALENDAR:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Calendar events) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Crash logs) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Crash logs) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Crash logs) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_CRASH_LOGS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Crash logs) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Diagnostics) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Diagnostics) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Diagnostics) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_PERFORMANCE_DIAGNOSTICS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Diagnostics) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other app performance data) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other app performance data) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other app performance data) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_PERFORMANCE:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other app performance data) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Files and docs) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Files and docs) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Files and docs) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_FILES_AND_DOCS:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Files and docs) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (App interactions) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (App interactions) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (App interactions) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_INTERACTION:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (App interactions) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (In-app search history) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (In-app search history) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (In-app search history) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_IN_APP_SEARCH_HISTORY:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (In-app search history) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Installed apps) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Installed apps) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Installed apps) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_APPS_ON_DEVICE:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Installed apps) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other user-generated content) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other user-generated content) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other user-generated content) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_USER_GENERATED_CONTENT:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other user-generated content) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Other actions) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Other actions) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Other actions) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_OTHER_APP_ACTIVITY:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Other actions) / Why is this user data shared? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_COLLECTED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Is this data collected, shared, or both? / Collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:PSL_DATA_USAGE_COLLECTION_AND_SHARING", "PSL_DATA_USAGE_ONLY_SHARED", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Is this data collected, shared, or both? / Shared"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:PSL_DATA_USAGE_EPHEMERAL", nil, nil, "MAYBE_REQUIRED", "Data usage and handling (Device or other IDs) / Is this data processed ephemerally?"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_OPTIONAL", nil, "SINGLE_CHOICE", "Data usage and handling (Device or other IDs) / Is this data required for your app, or can users choose whether it's collected? / Users can choose whether this data is collected"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_USER_CONTROL", "PSL_DATA_USAGE_USER_CONTROL_REQUIRED", nil, "SINGLE_CHOICE", "Data usage and handling (Device or other IDs) / Is this data required for your app, or can users choose whether it's collected? / Data collection is required (users can't turn off this data collection)"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_COLLECTION_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data collected? Select all that apply. / Account management"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_APP_FUNCTIONALITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / App functionality"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_ANALYTICS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / Analytics"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_DEVELOPER_COMMUNICATIONS", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / Developer communications"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_FRAUD_PREVENTION_SECURITY", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / Fraud prevention, security, and compliance"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_ADVERTISING", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / Advertising or marketing"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_PERSONALIZATION", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / Personalization"], ["PSL_DATA_USAGE_RESPONSES:PSL_DEVICE_ID:DATA_USAGE_SHARING_PURPOSE", "PSL_ACCOUNT_MANAGEMENT", nil, "MULTIPLE_CHOICE", "Data usage and handling (Device or other IDs) / Why is this user data shared? Select all that apply. / Account management"]]
11
+
12
+ doubleArrTemplate
13
+
14
+ end
15
+ end
16
+ end
17
+ end
@@ -5,12 +5,6 @@ module Fastlane
5
5
 
6
6
  module Helper
7
7
  class GoogleDataSafetyHelper
8
- # class methods that you define here become available in your action
9
- # as `Helper::DataSafetyHelper.your_method`
10
- #
11
- def self.show_message
12
- UI.message("Hello from the data_safety plugin helper!")
13
- end
14
8
  end
15
9
  end
16
10
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GoogleDataSafety
3
- VERSION = "0.1.2"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-google_data_safety
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Owen Bean
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-13 00:00:00.000000000 Z
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: googleauth
@@ -33,10 +33,12 @@ files:
33
33
  - LICENSE
34
34
  - README.md
35
35
  - lib/fastlane/plugin/google_data_safety.rb
36
+ - lib/fastlane/plugin/google_data_safety/actions/prompt_create_data_safety_csv_action.rb
36
37
  - lib/fastlane/plugin/google_data_safety/actions/upload_google_data_safety_action.rb
38
+ - lib/fastlane/plugin/google_data_safety/helper/prompt_create_data_safety_csv_helper.rb
37
39
  - lib/fastlane/plugin/google_data_safety/helper/upload_google_data_safety_helper.rb
38
40
  - lib/fastlane/plugin/google_data_safety/version.rb
39
- homepage:
41
+ homepage: https://github.com/owenbean400/fastlane-plugin-google_data_safety
40
42
  licenses:
41
43
  - MIT
42
44
  metadata:
@@ -59,5 +61,5 @@ requirements: []
59
61
  rubygems_version: 3.0.3.1
60
62
  signing_key:
61
63
  specification_version: 4
62
- summary: Google safety data sheet for automation of safety form
64
+ summary: Google safety data Fastlane plugin for automation.
63
65
  test_files: []