github.com/prebid/prebid-server/v2@v2.18.0/exchange/exchangetest/bidadjustmentfactors.json (about) 1 { 2 "incomingRequest": { 3 "ortbRequest": { 4 "id": "some-request-id", 5 "site": { 6 "page": "test.somepage.com" 7 }, 8 "imp": [ 9 { 10 "id": "my-imp-id", 11 "video": { 12 "mimes": [ 13 "video/mp4" 14 ] 15 }, 16 "ext": { 17 "prebid": { 18 "bidder": { 19 "appnexus": { 20 "placementId": 1 21 }, 22 "districtm": { 23 "placementId": 2 24 } 25 } 26 } 27 } 28 } 29 ], 30 "ext": { 31 "prebid": { 32 "aliases": { 33 "districtm": "appnexus" 34 }, 35 "bidadjustmentfactors": { 36 "appnexus": 2.5, 37 "districtm": 0.3 38 } 39 } 40 } 41 } 42 }, 43 "outgoingRequests": { 44 "appnexus": { 45 "expectRequest": { 46 "ortbRequest": { 47 "id": "some-request-id", 48 "site": { 49 "page": "test.somepage.com" 50 }, 51 "imp": [ 52 { 53 "id": "my-imp-id", 54 "video": { 55 "mimes": [ 56 "video/mp4" 57 ] 58 }, 59 "ext": { 60 "bidder": { 61 "placementId": 1 62 } 63 } 64 } 65 ] 66 }, 67 "bidAdjustments": { 68 "appnexus": 2.5, 69 "districtm": 0.3 70 } 71 }, 72 "mockResponse": { 73 "errors": [ 74 "appnexus-error" 75 ] 76 } 77 }, 78 "districtm": { 79 "expectRequest": { 80 "ortbRequest": { 81 "id": "some-request-id", 82 "site": { 83 "page": "test.somepage.com" 84 }, 85 "imp": [ 86 { 87 "id": "my-imp-id", 88 "video": { 89 "mimes": [ 90 "video/mp4" 91 ] 92 }, 93 "ext": { 94 "bidder": { 95 "placementId": 2 96 } 97 } 98 } 99 ] 100 }, 101 "bidAdjustments": { 102 "appnexus": 2.5, 103 "districtm": 0.3 104 } 105 }, 106 "mockResponse": { 107 "errors": [ 108 "districtm-error" 109 ] 110 } 111 } 112 }, 113 "response": { 114 "bids": { 115 "id": "some-request-id", 116 "ext": { 117 "errors": { 118 "appnexus": [ 119 "appnexus-error" 120 ], 121 "districtm": [ 122 "districtm-error" 123 ] 124 } 125 } 126 } 127 } 128 }