Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.69 KB

dsaControl.md

File metadata and controls

54 lines (42 loc) · 1.69 KB
layout title display_name description page_type module_code enable_download sidebarType
page_v2
DSA Control Module
DSA Control Module
Digital Services Act bid validation
module
dsaControl
true
1

DSA Control Module

{:.no_toc}

  • TOC {:toc}

Overview

The ORTB DSA extension provides a method for publishers to request DSA transparency information, and for buyers to attach it to their bids. This module adds validation for DSA information, discarding bids that do not match what was requested.

Usage

With this module installed, validations are enabled by requesting DSA transparency information. For example:

pbjs.setConfig({
  ortb2: {
      regs: {
          ext: {
              dsa: {
                  dsarequired: 2,  
                  pubrender: 0
                  // ...
              }
          }
      }
  }
})

This module will then enforce that:

  • all bids include DSA information, if required (dsarequired is either 2 or 3);
  • all bids that provide DSA information use a compatible rendering method:
    • if the request indicates that the publisher can't render (pubrender is 0), then the advertiser must (adrender cannot be 0);
    • if it indicates that the publisher will render (pubrender is 2), then the advertiser must not (adrender cannot be 1).

Bids that fail the checks above are rejected with a console warning and removed from the auction.

Further Reading