Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 131 additions & 0 deletions PixelDefinitions/pixels/personal_information_removal.json5
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,136 @@
"enum": ["on", "off", "unsupported"]
}
]
},
"dbp_databroker_custom_stats_optoutsubmit": {
"description": "Pixel that contains a broker's opt-out 24h submission success rate.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that this opt-out attempt targets",
"type": "string"
},
{
"key": "optout_submit_success_rate",
"description": "The success rate of how many opt-out jobs successfully requested within 24 hours of creation",
"type": "string"
}
]
},
"dbp_optoutjob_at-7-days_confirmed": {
"description": "Pixel that contains if any submitted opt-out has been confirmed 7 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has a confirmed opt-out after 7 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-7-days_unconfirmed": {
"description": "Pixel that contains if any submitted opt-out are still unconfirmed 7 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has an unconfirmed opt-out after 7 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-14-days_confirmed": {
"description": "Pixel that contains if any submitted opt-out has been confirmed 14 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has a confirmed opt-out after 14 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-14-days_unconfirmed": {
"description": "Pixel that contains if any submitted opt-out are still unconfirmed 14 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has an unconfirmed opt-out after 14 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-21-days_confirmed": {
"description": "Pixel that contains if any submitted opt-out has been confirmed 21 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has a confirmed opt-out after 21 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-21-days_unconfirmed": {
"description": "Pixel that contains if any submitted opt-out are still unconfirmed 21 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has an unconfirmed opt-out after 21 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-42-days_confirmed": {
"description": "Pixel that contains if any submitted opt-out has been confirmed 42 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has a confirmed opt-out after 42 days",
"type": "string"
}
]
},
"dbp_optoutjob_at-42-days_unconfirmed": {
"description": "Pixel that contains if any submitted opt-out are still unconfirmed 42 days after submission.",
"owners": ["karlenDimla", "landomen"],
"triggers": ["other"],
"suffixes": ["form_factor"],
"parameters": [
"appVersion",
{
"key": "data_broker",
"description": "The URL of the data broker that has an unconfirmed opt-out after 42 days",
"type": "string"
}
]
}
}
1 change: 1 addition & 0 deletions pir/pir-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ dependencies {
testImplementation AndroidX.test.ext.junit
testImplementation Testing.robolectric
testImplementation "androidx.lifecycle:lifecycle-runtime-testing:_"
testImplementation AndroidX.work.testing
testImplementation(KotlinX.coroutines.test) {
// https://github.com/Kotlin/kotlinx.coroutines/issues/2023
// conflicts with mockito due to direct inclusion of byte buddy
Expand Down
Loading
Loading