github.com/prebid/prebid-server@v0.275.0/firstpartydata/tests/extractfpdforbidders/two-bidders-one-with-incorrect-fpd.json (about) 1 { 2 "description": "req.site is present; req.ext.prebid.data.bidders has appnexus and telaria bidders; req.ext.prebid.bidderconfig is defined for both bidders from req.ext.prebid.data.bidders; req.ext.prebid.bidderconfig for telaria has app config in it; expect to have validation error about app object is not defined in request", 3 "inputRequestData": { 4 "id": "bid_id", 5 "site": { 6 "id": "reqSiteId", 7 "page": "http://www.foobar.com/1234.html", 8 "publisher": { 9 "id": "1" 10 } 11 }, 12 "test": 1, 13 "ext": { 14 "prebid": { 15 "data": { 16 "bidders": [ 17 "appnexus", "telaria" 18 ] 19 }, 20 "bidderconfig": [ 21 { 22 "bidders": [ 23 "appnexus" 24 ], 25 "config": { 26 "ortb2": { 27 "site": { 28 "id": "apnSiteId" 29 } 30 } 31 } 32 }, 33 { 34 "bidders": [ 35 "telaria" 36 ], 37 "config": { 38 "ortb2": { 39 "app": { 40 "id": "telariaAppId" 41 } 42 } 43 } 44 } 45 ] 46 } 47 } 48 }, 49 "outputRequestData": {}, 50 "biddersFPDResolved": {}, 51 "validationErrors": [ 52 {"Message": "incorrect First Party Data for bidder telaria: App object is not defined in request, but defined in FPD config"} 53 ] 54 }