-
Notifications
You must be signed in to change notification settings - Fork 760
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PBS GPP phase 3 #2591
Comments
Discussed in PBS committee. Giving time to committee members to review in detail. |
Spoke with the PBJS committee -- there's some possible changes in the syntax coming. Moving back to "needs req" while that discussions settles. |
Ok, updated with the current state of the Prebid.js discussion. |
I read that to mean "everything is denied unless explicitly allowed". Is that true? in JS, the default-default is true (everything is allowed unless explicitly denied).
If attributes are map keys, they can't really be present more than once. They can be present in different
The purpose of this is for JS to say things like "allow image but not iframe user syncs". If that's a distinction that doesn't make sense server-side, that tells me that it's not a question of privacy control, and we may want to drop it from JS as well (reduce the control to "allow/disallow user syncs", and keep the iframe/image toggle configuration somewhere else). |
Updated here.
This is worth bringing up in the PBJS committee. Option 1) integrate the fine-grained behavior of iframe/image usersync into the activity infrastructure right now. Specifically for Prebid Server, this is the /cookie_sync endpoint, not the /auction endpoint. /cookie_sync doesn't support ORTB requests -- it's a POST body with a few parameters, which does include the iframe/image details. My take: I think this project is big enough as-is. Leave the iframe/image sync details out of the activity infra for now. |
Removed these from scope:
Updated the condition logic. |
Removed the request-level activity controls. |
Discussed with the PBS GPP sub-committee. We've decided to go back to the original "script-based" approach for these reasons:
|
this only works if all the rules are defined in one place. the reason we made it a requirement is so that the pub would say "here's my rules, but also use your own GPP rules". Priority was a mechanism to tell whether the pub's rule would override other rules. |
The priority mechanism was not removed. Priority is now expressed as the ordinal position in a JSON array "script" rather than an explicit number. The concept of "use your own GPP rules" is represented as a call out to the privacy policies. This is the original approach for PBS before we begun to align with PBJS. We would like to revert to this original approach as it's been mutually determined that alignment with PBS and PBJS on this syntax is not necessary (we'll continue to align on privacy activity names and definitions). The examples will be updated. The approximate new syntax is:
The callouts to privacy policies/regulations can be ordered in any desired arrangement and can be explicitly broken apart by using a policy identifier (tcfeuv2) in place of the catch-all (*). |
@dgirardi - the server development team pushed the implementation back to the "centralized script" model. My intuition from January seems to have been validated, and now that client- and server-side coordination is no longer needed, I don't see a need to hold them to the more expensive rules-based system. I suspect you're likely to object that the rules-based system isn't more expensive, but the server engineers disagree: processing can more easily be stopped short when publisher config is going to completely obviate anything the regulations might say. |
Very well - just wanted to make that clear since I know it was a point of confusion during design; I think I hear that you do, in fact, have all the rules in one place now, so priority is not needed. I'll keep my complaints about that for other occasions :) |
Please note that the main GPP doc has been updated for Prebid Server to combine the |
Updated to move the account config under |
Done in PBS-Java |
@VeronikaSolovei9 - would you say this is done from a PBS-Go perspective? |
Splitting up the GPP feature tracked originally by #2380.
Phase 3 is the "Activity Infrastructure". From the document, this phase is described as:
Prebid.js and Prebid Server will define a set of special activities, each of which can be controlled either directly by the publisher or, in the future, via consent modules like GPP. The activities defined for Prebid Server are in the document section 3.3.4.
The work for this phase includes:
Details
Account-level config defines an ordered set of rules by which the system determines whether a given activity is allowed.
Here's the general form:
Definitions:
Note that rules can have no conditions, in which case they automatically match and the "allow" value is utilized.
Conditions
In general, a condition is a series of clauses that are processed separately. Only if all clauses present are true is the entire condition true.
The general forms a condition take:
Notes:
Requirements:
The following attributes may be seen:
Metrics
Metrics will track the number of disallowed activities:
An additional metric will track the overall number of rules processed across activities:
Module Stages
Every module stage is subject to the
transmit
activities except theentrypoint
stage. This is because the account ID is not yet resolved, so account config is not yet available. This means that modules employing the entrypoint stage must not utilize user-specific data (UFPD, EIDS, IP address).Example 1
Account-level activity controls:
Example 2
Let GPP decide whether to transmitUfpd, but by default let RTD and Analytics modules do it.
The text was updated successfully, but these errors were encountered: