prebid / prebid-server

Open-source solution for running real-time advertising auctions in the cloud.
https://prebid.org/product-suite/prebid-server/
Apache License 2.0
424 stars 726 forks source link

Link COPPA flag to Activity Controls #3415

Open bretg opened 8 months ago

bretg commented 8 months ago

Towards pushing forward with making Activity Controls more complete, I propose that we link regs.coppa to an Activity Control similar to what we've done for GPC. This paves the way for someday, in a major release, dropping the built-in COPPA functionality and getting host companies to set default Activity Controls.

e.g. anonymize ACTIVITY when the regs.coppa flag is set:

{
  privacy: {
    allowactivities: {
      ACTIVITY: {
        rules: [{
            condition: {
                coppa: "1"
            },
            allow: false
        }]
      }
    }
  }
}
bretg commented 8 months ago

Discussed - this something we'll wait on for a major release.