Skip to content
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

Added First Party Data to feature list #3325

Merged
merged 2 commits into from
Oct 6, 2021
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
8 changes: 4 additions & 4 deletions _layouts/bidder.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h3>Features</h3>
</tr>
<tr>
<th class="pbTh">Supports Deals</th>
<td class="pbTd">{% if page.bidder_supports_deals == false %}no{% elsif page.bidder_supports_deals == true %}yes{% else %}check with bidder{% endif %}</td>
<td class="pbTd">{% if page.deals_supported == false %}no{% elsif page.deals_supported == true %}yes{% else %}check with bidder{% endif %}</td>
<th class="pbTh">Prebid.js Adapter</th>
<td class="pbTd">yes</td>
</tr>
Expand All @@ -88,9 +88,9 @@ <h3>Features</h3>
</tr>
<tr>
<th class="pbTh">Floors Module Support</th>
<td class="pbTd">{% if page.getFloor == true %}yes{% else %}no{% endif %}</td>
<th class="pbTh"></th>
<td class="pbTd"></td>
<td class="pbTd">{% if page.floors_supported == true %}yes{% else %}no{% endif %}</td>
<th class="pbTh">First Party Data Support</th>
<td class="pbTd">{% if page.fpd_supported == true %}yes{% elsif page.fpd_supported == false %}no{% else %}check with bidder{% endif %}</td>
</tr>
</table>

Expand Down
14 changes: 8 additions & 6 deletions dev-docs/bidder-adaptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -1069,15 +1069,16 @@ registerBidder(spec);
- Add `pbjs: true`. If you also have a [Prebid Server bid adapter](/prebid-server/developers/add-new-bidder-go.html), add `pbs: true`. Default is false for both.
- If you're on the IAB Global Vendor List, add your ID number in `gvl_id`.
- If you support the GDPR consentManagement module and have a GVL ID, you may add `gdpr_supported: true`. Default is false.
- If you have an IAB Global Vendor List ID, add `gvl_id: ID`. There's no default.
- If you support the US Privacy consentManagementUsp module, add `usp_supported: true`. Default is false.
- If you support one or more userId modules, add `userId: (list of supported vendors)`. No default value.
- If you support video and/or native mediaTypes add `media_types: video, native`. Note that display is added by default. If you don't support display, add "no-display" as the first entry, e.g. `media_types: no-display, native`. No default value.
- If you support COPPA, add `coppa_supported: true`. Default is false.
- If you support the [supply chain](/dev-docs/modules/schain.html) feature, add `schain_supported: true`. Default is false.
- If you support passing a demadn chain on the response, add `dchain_supported: true`. Default is false.
- If you support passing a demand chain on the response, add `dchain_supported: true`. Default is false.
- If your bidder doesn't work well with safeframed creatives, add `safeframes_ok: false`. This will alert publishers to not use safeframed creatives when creating the ad server entries for your bidder. No default value.
- If you support deals, set `bidder_supports_deals: true`. No default value..
- If you support deals, set `deals_supported: true`. No default value..
- If you support floors, set `floors_supported: true`. No default value..
- If you support first party data, set `fpd_supported: true`. No default value..
- If you're a member of Prebid.org, add `prebid_member: true`. Default is false.
- Submit both the code and docs pull requests

Expand All @@ -1090,19 +1091,20 @@ description: Prebid example Bidder Adapter
biddercode: example
aliasCode: fileContainingPBJSAdapterCodeIfDifferentThenBidderCode
gdpr_supported: true/false
gvl_id: 111
gvl_id: none
usp_supported: true/false
coppa_supported: true/false
schain_supported: true/false
dchain_supported: true/false
userId: (list of supported vendors)
media_types: banner, video, native
safeframes_ok: true/false
bidder_supports_deals: true/false
deals_supported: true/false
floors_supported: true/false
fpd_supported: true/false
pbjs: true/false
pbs: true/false
prebid_member: true/false
gvl_id: none
---
### Note:

Expand Down
4 changes: 2 additions & 2 deletions dev-docs/bidder-data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
layout: none
search: exclude
---
bidder-code,bidder-name,banner,video,native,gdpr,schain,coppa,usp,safeframes,deals,client-adapter,server-adapter,user-ids,usp,mobile-apps,floors,prebid-member
{% assign bidder_pages = site.pages | where: "layout", "bidder" %}{% for page in bidder_pages %}{{ page.biddercode }},{{ page.title }},{% if page.media_types contains 'banner' %}yes{% else %}no{% endif %},{% if page.media_types contains 'video' %}yes{% else %}no{% endif %},{% if page.media_types contains 'native' %}yes{% else %}no{% endif %},{% if page.gdpr_supported == true %}yes{% else %}no{% endif %},{% if page.schain_supported == true %}yes{% else %}no{% endif %},{% if page.coppa_supported == true %}yes{% else %}no{% endif %},{% if page.usp_supported == true %}yes{% else %}no{% endif %},{% if page.safeframes_ok and page.safeframes_ok == false %}no{% elsif page.safeframes_ok and page.safeframes_ok == true %}yes{% else %}check with bidder{% endif %},{% if page.bidder_supports_deals and page.bidder_supports_deals == false %}no{% else %}yes{% endif %},{% if page.pbjs == true %}yes{% else %}no{% endif %},{% if page.pbs == true %}yes{% else %}no{% endif %},{% if page.userIds and page.userIds != '' %}"{{page.userIds}}"{% else %}none{% endif %},{% if page.usp_supported == true %}yes{% else %}no{% endif %},{% if page.pbs_app_supported and page.pbs_app_supported == false %}no{% elsif page.pbs_app_supported and page.pbs_app_supported == true %}yes{% elsif page.pbs and page.pbs == false %}no{% elsif page.pbs==nil %}no{% else %}check with bidder{% endif %},{% if page.getFloor == true %}yes{% else %}no{% endif %},{% if page.prebid_member == true %}yes{% else %}no{% endif %}
bidder-code,bidder-name,banner,video,native,gdpr,schain,coppa,usp,safeframes,deals,client-adapter,server-adapter,user-ids,usp,mobile-apps,floors,fpd,prebid-member
{% assign bidder_pages = site.pages | where: "layout", "bidder" %}{% for page in bidder_pages %}{{ page.biddercode }},{{ page.title }},{% if page.media_types contains 'banner' %}yes{% else %}no{% endif %},{% if page.media_types contains 'video' %}yes{% else %}no{% endif %},{% if page.media_types contains 'native' %}yes{% else %}no{% endif %},{% if page.gdpr_supported == true %}yes{% else %}no{% endif %},{% if page.schain_supported == true %}yes{% else %}no{% endif %},{% if page.coppa_supported == true %}yes{% else %}no{% endif %},{% if page.usp_supported == true %}yes{% else %}no{% endif %},{% if page.safeframes_ok and page.safeframes_ok == false %}no{% elsif page.safeframes_ok and page.safeframes_ok == true %}yes{% else %}check with bidder{% endif %},{% if page.deals_supported and page.deals_supported == false %}no{% else %}yes{% endif %},{% if page.pbjs == true %}yes{% else %}no{% endif %},{% if page.pbs == true %}yes{% else %}no{% endif %},{% if page.userIds and page.userIds != '' %}"{{page.userIds}}"{% else %}none{% endif %},{% if page.usp_supported == true %}yes{% else %}no{% endif %},{% if page.pbs_app_supported and page.pbs_app_supported == false %}no{% elsif page.pbs_app_supported and page.pbs_app_supported == true %}yes{% elsif page.pbs and page.pbs == false %}no{% elsif page.pbs==nil %}no{% else %}check with bidder{% endif %},{% if page.floors_supported == true %}yes{% else %}no{% endif %},{% if page.fpd_supported == true %}yes{% elsif page.fpd_supported == false %}no{% else %}check with bidder{% endif %},{% if page.prebid_member == true %}yes{% else %}no{% endif %}
{% endfor %}
2 changes: 1 addition & 1 deletion dev-docs/bidders/33across.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pbs: true
biddercode: 33across
media_types: banner, video
gdpr_supported: true
getFloor: true
floors_supported: true
schain_supported: true
usp_supported: true
userIds: all
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/aceex.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ schain_supported: true
userId: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
media_types: banner, video, native
safeframes_ok: true
bidder_supports_deals: true
deals_supported: true
pbjs: false
pbs: true
---
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/acuityads.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ schain_supported: true
userId: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
media_types: banner, video, native
safeframes_ok: true
bidder_supports_deals: true
deals_supported: true
pbjs: false
pbs: true
---
Expand Down
3 changes: 2 additions & 1 deletion dev-docs/bidders/adagio.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ pbjs: true
biddercode: adagio
media_types: banner, native, video
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, pubProvidedId, sharedId, unifiedId
getFloor: true
floors_supported: true
gdpr_supported: true
usp_supported: true
coppa_supported: true
schain_supported: true
gvl_id: 617
prebid_member: true
pbs: true
fpd_supported: true
---

### Note
Expand Down
3 changes: 2 additions & 1 deletion dev-docs/bidders/adf.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ schain_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, sharedId, unifiedId
gvl_id: 50
prevBiddercode: adformOpenRTB
getFloor: true
floors_supported: true
fpd_supported: true
---

### Bid params
Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/admixer.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ media_types: video
gdpr_supported: true
usp_supported: true
schain_supported: true
fpd_supported: true
gvl_id: 511
---

Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/adnuntius.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pbjs: true
biddercode: adnuntius
media_types: banner
gdpr_supported: true
fpd_supported: true
---

### Bid Params
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/adpone.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Prebid Adpone Bidder Adaptor
pbjs: true
pbs: true
biddercode: adpone
bidder_supports_deals: false
deals_supported: false
media_types: banner
gvl_id: 799
---
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/adquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ gvl_id: 902
| Name | Scope | Description | Example | Type |
|---------------|----------|---------------|-------------------------------------------|-----------|
| `placementId` | required | Placement ID | `6d93f2a0e5f0fe2cc3a6e9e3ade964b43b07f897`| `string` |
| `type` | required | Ad Type | `banner300x250` | `string` |
| `type` | required | Ad Type | `banner300x250` | `string` |
1 change: 1 addition & 0 deletions dev-docs/bidders/adrelevantis.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Adrelevantis
description: Prebid Adrelevantis (adrelevantis.xyz) Bidder Adaptor
biddercode: adrelevantis
media_types: banner, video, native
fpd_supported: true
pbjs: true
---

Expand Down
4 changes: 2 additions & 2 deletions dev-docs/bidders/adriver.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ title: adriver
description: Adriver adapter
biddercode: adriver
pbjs: true
bidder_supports_deals: true
deals_supported: true
userIds: sharedId, id5Id, uid2Id
getFloor: true
floors_supported: true
---


Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/adxcg.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: bidder
title: adxcg
description: Prebid adxcg bidder adaptor
bidder_supports_deals: true
deals_supported: true
pbjs: true
pbs: true
pbs_app_supported: true
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/adyoulike.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ media_types: banner, video, native
biddercode: adyoulike
gdpr_supported: true
usp_supported: true
getFloor: true
floors_supported: true
---

### Note:
Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/amx.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ media_types: banner, video
pbjs: true
pbs: true
pbs_app_supported: true
fpd_supported: true
gvl_id: 737
---

Expand Down
4 changes: 2 additions & 2 deletions dev-docs/bidders/apacdex.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gdpr_supported: true
schain_supported: true
usp_supported: true
userIds: all
getFloor: true
floors_supported: true
---

### Table of Contents
Expand Down Expand Up @@ -171,4 +171,4 @@ var outstreamAdUnit = {
};
```
mediaTypes.video object reference to section 3.2.7 Object: Video in the OpenRTB 2.5 document
You must review all video parameters to ensure validity for your player and DSPs
You must review all video parameters to ensure validity for your player and DSPs
3 changes: 2 additions & 1 deletion dev-docs/bidders/appnexus.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ userIds: criteo, unifiedId, netId, identityLink, flocId, uid2
schain_supported: true
coppa_supported: true
usp_supported: true
getFloor: true
floors_supported: true
fpd_supported: true
pbjs: true
pbs: true
gvl_id: 32
Expand Down
6 changes: 3 additions & 3 deletions dev-docs/bidders/aso.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ gdpr_supported: true
usp_supported: true
media_types: video
safeframes_ok: true
bidder_supports_deals: false
deals_supported: false
pbjs: true
pbs: false
getFloor: true
floors_supported: true
---
### Note:

Expand Down Expand Up @@ -55,4 +55,4 @@ pbjs.setConfig({
url: 'https://prebid.adnxs.com/pbc/v1/cache'
}
});
```
```
1 change: 1 addition & 0 deletions dev-docs/bidders/automatad.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description: Automatad OpenRTB Bid Adapter
biddercode: automatad
pbjs: true
media_types: banner
fpd_supported: true
---

#### Bid Params
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/beachfront.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Beachfront
description: Prebid Beachfront Bidder Adapter
biddercode: beachfront
media_types: video
getFloor: true
floors_supported: true
gdpr_supported: true
usp_supported: true
userIds: unifiedId, identityLink, uid2, haloId
Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/beop.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: BeOp
description: BeOp Bidder Adaptor
pbjs: true
biddercode: beop
fpd_supported: true
---

### Bid Params
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/bidmachine.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ schain_supported: true
dchain_supported: false
media_types: banner, video
safeframes_ok: true
bidder_supports_deals: false
deals_supported: false
pbjs: false
pbs: true
pbs_app_supported: true
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/bizzclick.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ coppa_supported: true
schain_supported: true
media_types: banner, video, native
safeframes_ok: true
bidder_supports_deals: true
deals_supported: true
pbjs: true
---

Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/bmtm.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Bright Mountain Media
description: Prebid Bright Mountain Media Bidder Adapter
biddercode: bmtm
media_types: banner, video
getFloor: true
floors_supported: true
schain_supported: true
pbjs: true
pbs: true
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/brave.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ coppa_supported: true
schain_supported: true
media_types: banner, video, native
safeframes_ok: true
bidder_supports_deals: true
deals_supported: true
pbjs: true
pbs: false
---
Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/colossusssp.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ schain_supported: true
media_types: banner, video, native
userIds: britepoolid, identityLink, unifiedId, id5Id, uid2
gdpr: true
fpd_supported: true
pbjs: true
pbs: false
---
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/connectad.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ schain_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
prebid_member: true
safeframes_ok: true
getFloor: true
floors_supported: true
pbjs: true
pbs: true
gvl_id: 138
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/contentexchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ pbs_app_supported: false
| Name | Scope | Description | Example | Type |
|----------------|----------|----------------------------------------------------------|------------|-----------|
| `placementId` | required | Placement Id will be generated on ContentExchange Platform. | `'1234'` | `string` |
| `adFormat` | required | `[banner, video, native]` | `'banner'` | `string` |
| `adFormat` | required | `[banner, video, native]` | `'banner'` | `string` |
3 changes: 2 additions & 1 deletion dev-docs/bidders/criteo.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ gdpr_supported: true
usp_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, pubProvidedId, sharedId, unifiedId
prebid_member: true
getFloor: false*
floors_supported: false
fpd_supported: true
gvl_id: 91
---
### Notes
Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/datablocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pbs_app_supported: true
schain_supported: true
usp_supported: true
userIds: criteo,unifiedId,netId,pubcid
fpd_supported: true
---

### Bid Params
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/districtmdmx.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pbjs: true
biddercode: districtmDMX
gdpr_supported: true
schain_supported: true
getFloor: true
floors_supported: true
usp_supported: true
coppa_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, intentiq, liveIntentId, netId, parrableId, pubCommonId, unifiedId
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/epom.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ coppa_supported: true
schain_supported: false
media_types: banner, video, native
safeframes_ok: true
bidder_supports_deals: true
deals_supported: true
pbjs: false
pbs: true
pbs_app_supported: true
Expand Down
1 change: 1 addition & 0 deletions dev-docs/bidders/etarget.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pbjs: true
biddercode: etarget
media_types: banner, video
gdpr_supported: true
fpd_supported: true
---


Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/getintent.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Prebid GetIntent Bidder Adaptor
pbjs: true
biddercode: getintent
media_types: video, banner
getFloor: true
floors_supported: true
---


Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/gothamads.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ccpa_supported: true
schain_supported: true
media_types: banner, video, native
safeframes_ok: true
bidder_supports_deals: true
deals_supported: true
pbjs: true
---

Expand Down
Loading