Skip to content

Commit

Permalink
Fix #4987 - adds new privacy_sandbox meta field (#5038)
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 authored Dec 20, 2023
1 parent 4c1457c commit 3f5cc53
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _layouts/bidder.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ <h3>Features</h3>
<tr>
<th class="pbTh">Safeframes OK</th>
<td class="pbTd">{% if page.safeframes_ok == false %}no{% elsif page.safeframes_ok == true %}yes{% else %}check with bidder{% endif %}</td>
<th class="pbTh"></th>
<td class="pbTd"></td>
<th class="pbTh">Privacy Sandbox</th>
<td class="pbTd">{% if page.privacy_sandbox %}{{page.privacy_sandbox}}{% else %}check with bidder{% endif %}</td>
</tr>
</table>

Expand Down
2 changes: 2 additions & 0 deletions dev-docs/bidder-adaptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -1291,6 +1291,7 @@ registerBidder(spec);
* If you support first party data, you must document what exactly is supported and then you may set `fpd_supported: true`. No default value.
* If you support any OpenRTB blocking parameters, you must document what exactly is supported and then you may set `ortb_blocking_supported` to 'true','partial', or 'false'. No default value. In order to set 'true', you must support: bcat, badv, battr, and bapp.
* Let publishers know how you support multiformat requests -- those with more than one mediatype (e.g. both banner and video). Here are the options: will-bid-on-any, will-bid-on-one, will-not-bid
* If you support [privacy sandbox features](https://developers.google.com/privacy-sandbox) you can list them in the `privacy_sandbox` meta field. Allowed values are `paapi`, `topics`.
* If you're a member of Prebid.org, add `prebid_member: true`. Default is false.
* Always add `sidebarType: 1`. This is required for docs.prebid.org site navigation.
* Submit both the code and docs pull requests
Expand Down Expand Up @@ -1322,6 +1323,7 @@ pbs: true/false
prebid_member: true/false
multiformat_supported: will-bid-on-any, will-bid-on-one, will-not-bid
ortb_blocking_supported: true/partial/false
privacy_sandbox: no or comma separated list of `paapi`, `topics`
sidebarType: 1
---
### Note
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/pbs-bidders.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Publishers are advised to check with legal counsel before doing business with an
| **Mobile App Support** | {% if page.pbs_app_supported == false %}no{% elsif page.pbs_app_supported == true %}yes{% else %}check with bidder{% endif %} | **Prebid Server Adapter** | yes |
| **Floors Support** | {% if page.floors_supported == false %}no{% elsif page.floors_supported == true %}yes{% else %}check with bidder{% endif %} | **First Party Data Support** | {% if page.fpd_supported == true %}yes{% elsif page.fpd_supported == false %}no{% else %}check with bidder{% endif %} |
| **Multi Format Support** | {% if page.multiformat_supported %}{{page.multiformat_supported}}{% else %}check with bidder{% endif %} | **ORTB Blocking Support** | {% if page.ortb_blocking_supported == true %}yes{% elsif page.ortb_blocking_supported == false %}no{% elsif page.ortb_blocking_supported == 'partial' %}partial{% else %}check with bidder{% endif %} |
| **GPP Support** | {% if page.gpp_sids and page.gpp_sids != '' %}{{page.gpp_sids}}{% elsif page.gpp_supported == true and page.gpp_sids == nil %}some (check with bidder){% elsif page.gpp_supported == false and gpp_sids == nil %}None{% else %}check with bidder{% endif %} |
| **GPP Support** | {% if page.gpp_sids and page.gpp_sids != '' %}{{page.gpp_sids}}{% elsif page.gpp_supported == true and page.gpp_sids == nil %}some (check with bidder){% elsif page.gpp_supported == false and gpp_sids == nil %}None{% else %}check with bidder{% endif %} | **Privacy Sandbox** | {% if page.privacy_sandbox %}{{page.privacy_sandbox}}{% else %}check with bidder{% endif %}

<h3>"Send All Bids" Ad Server Keys</h3>

Expand Down
1 change: 1 addition & 0 deletions prebid-server/developers/add-new-bidder-go.md
Original file line number Diff line number Diff line change
Expand Up @@ -1309,6 +1309,7 @@ pbs_app_supported: true/false
prebid_member: true/false
multiformat_supported: will-bid-on-any, will-bid-on-one, will-not-bid
ortb_blocking_supported: true/partial/false
privacy_sandbox: no or comma separated list of `paapi`, `topics`
---

### Registration
Expand Down
1 change: 1 addition & 0 deletions prebid-server/developers/add-new-bidder-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,7 @@ pbs_app_supported: true/false
prebid_member: true/false
multiformat_supported: will-bid-on-any, will-bid-on-one, will-not-bid
ortb_blocking_supported: true/partial/false
privacy_sandbox: no or comma separated list of `paapi`, `topics`
---

### Registration
Expand Down

0 comments on commit 3f5cc53

Please sign in to comment.