-
Notifications
You must be signed in to change notification settings - Fork 217
Alternate Bcat Taxonomy proposal #107
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
Open
patmmccann
wants to merge
6
commits into
InteractiveAdvertisingBureau:main
Choose a base branch
from
patmmccann:patch-6
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c7e1e0f
Alternate Bcat Taxonomy proposal
patmmccann 5bf55bf
Update alt-bcats.md
patmmccann fc5cd2c
Update alt-bcats.md
patmmccann f5c9e18
Update alt-bcats.md
patmmccann 83ee3eb
Update alt-bcats.md
patmmccann dcaf9d9
Update alt-bcats.md
patmmccann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # Alternate BCAT Taxonomy Blocks | ||
| Sponsor: Cafemedia, Mediavine | ||
|
|
||
| ## Background | ||
|
|
||
| The popularity of [IAB Segment Taxonomy 1](https://iabtechlab.com/standards/content-taxonomy/) for banned advertiser categories seems difficult to transition off of, even though it is deprecated and its use is recommended against by the IAB. Ads receive only the legacy taxonomy category and publishers must express their blocks in it or risk completely ineffective blocks. | ||
|
|
||
| The legacy categories for example, do not have a tobacco advertiser category, a payday loans category, an online gambling category, nor a pharmaceutical drugs category. Some conventions have emerged, such as banning cigars meaning banning all tobacco, but this is not widely publicized. A publisher wishing to ban payday loans may need to ban all banks from advertising on their site. | ||
|
|
||
| The taxonomy migration problem has already been solved in publisher content categorization, with publishers or exchanges able to specify content categories on multiple simultaneous taxonomies. Blocks need the same flexibility to enable a transition. The bcat taxonomy field, `cattax`, while well intentioned, is ineffective because there is no current path to its use. | ||
|
|
||
| Entities managing ads for multiple domains may have a large variety of advertiser category tolerences across those domains. For example, a magazine company may wish to block car ads on its car magazine website and alcohol ads on its children's magazine. Frequently, SSP backends accept BCATs per account, and allow request based overrides. Other SSP backends accept BCATs per account, and allow request based appends. It would also be quite useful to be able to communicate if blocked categories should be appended to or replace an existing list. | ||
|
|
||
| ## Request Changes | ||
|
|
||
| <table> | ||
| <tr> | ||
| <th>Site Object</th> | ||
| <th>Type</th> | ||
| <th>Example values</th> | ||
| <th>Description</th> | ||
| </tr> | ||
| <tr> | ||
| <td>site.ext.bcat.segtax</td> | ||
| <td>integer</td> | ||
| <td>6</td> | ||
| <td>A taxonomy enumerated in the [segtax extension](https://raw.githubusercontent.com/InteractiveAdvertisingBureau/openrtb/master/extensions/community_extensions/segtax.md)</td> | ||
| </tr> | ||
| <tr> | ||
| <td>site.ext.bcat.ltype</td> | ||
| <td>integer</td> | ||
| <td>1</td> | ||
| <td>1 represents replace, 2 represents append</td> | ||
| </tr> | ||
| <tr> | ||
| <td>site.ext.bcat.segment.id</td> | ||
| <td>string</td> | ||
| <td>"324"</td> | ||
| <td>Identifies a segment in the segment taxonomy</td> | ||
| </tr> | ||
| </table> | ||
|
|
||
| The following example illustrates the usage of the new field in `BidRequest.site`, though the equivalent applies to other appearances of the same structure, e.g., in `BidRequest.app`. Below, one blocks advertising in both the IAB Product Taxonomy and the Content Taxonomy 3. | ||
|
|
||
| ``` | ||
| { ..., | ||
| "site": { "ext": { "bcat": [ | ||
| { "segtax": 3, "ltype": 1, "segment": [ { "id": "1001" }, { "id": "1002" } ]}, | ||
| { "segtax": 7, "ltype": 1, "segment": [ { "id": "1003" }, { "id": "1004" } ]} | ||
| ], | ||
| ..., } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ## How To Use This Extension | ||
|
|
||
| ### If the advertiser category is known within any `site.ext.bcat.segtax` | ||
| Ignore `bcat` and `cattax` and prefer these taxonomies when responding to bid requests. If ltype is 2, append the list in the bid request to any stored list associated with that requestor. | ||
|
|
||
| ### If the advertiser category is unknown in all `site.ext.bcat.segtax` | ||
| Fallback to top level `bcat` and `cattax` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.