github.com/prebid/prebid-server/v2@v2.18.0/firstpartydata/tests/extractfpdforbidders/two-bidders-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 of them; req.ext.prebid.bidderconfig for appnexus contains app and user; req.ext.prebid.bidderconfig for telaria contains app; expected to have error for appnexus: app is not present in request, user is not present in request; expect to have error for telaria: app is not present 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 "app": { 28 "id": "apnAppId" 29 }, 30 "user": { 31 "id": "apnUserId" 32 } 33 } 34 } 35 }, 36 { 37 "bidders": [ 38 "telaria" 39 ], 40 "config": { 41 "ortb2": { 42 "app": { 43 "id": "telariaAppId" 44 } 45 } 46 } 47 } 48 ] 49 } 50 } 51 }, 52 "outputRequestData":{}, 53 "biddersFPDResolved": {}, 54 "validationErrors": [ 55 {"Message": "incorrect First Party Data for bidder appnexus: App object is not defined in request, but defined in FPD config"}, 56 {"Message": "incorrect First Party Data for bidder telaria: App object is not defined in request, but defined in FPD config"} 57 ] 58 }