github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/gumgum.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "title": "GumGum Adapter Params", 4 "description": "A schema which validates params accepted by the GumGum adapter", 5 "type": "object", 6 "properties": { 7 "zone": { 8 "type": "string", 9 "description": "A tracking id used to identify GumGum zone.", 10 "minLength": 8 11 }, 12 "pubId": { 13 "type": "integer", 14 "description": "A tracking id used to identify GumGum publisher" 15 }, 16 "irisid": { 17 "type": "string", 18 "description": "A hashed IRIS.TV Content ID" 19 }, 20 "slot": { 21 "type": "integer", 22 "description": "A slot id used to identify a slot placement mapped to a GumGum zone or publisher" 23 }, 24 "product": { 25 "type": "string", 26 "description": "Product param that allow support for Desktop Skins - display and video" 27 } 28 }, 29 "anyOf": [ 30 { 31 "required": [ 32 "zone" 33 ] 34 }, 35 { 36 "required": [ 37 "pubId" 38 ] 39 } 40 ] 41 }