github.com/prebid/prebid-server/v2@v2.18.0/adapters/rtbhouse/rtbhousetest/exemplary/two-bidfloors-given-param-and-impbidfloor.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "format": [ 9 { 10 "w": 300, 11 "h": 250 12 } 13 ] 14 }, 15 "bidfloor": 1.00, 16 "bidfloorcur": "EUR", 17 "ext": { 18 "bidder": { 19 "publisherId": "12345", 20 "bidfloor": 2.00 21 } 22 } 23 } 24 ], 25 "ext": { 26 "prebid": { 27 "currency": { 28 "rates": { 29 "EUR": { 30 "USD": 0.05 31 } 32 }, 33 "usepbsrates": false 34 } 35 } 36 } 37 }, 38 "httpCalls": [ 39 { 40 "expectedRequest": { 41 "uri": "http://localhost/prebid_server", 42 "body": { 43 "id": "test-request-id", 44 "cur": [ 45 "USD" 46 ], 47 "imp": [ 48 { 49 "banner": { 50 "format": [ 51 { 52 "h": 250, 53 "w": 300 54 } 55 ] 56 }, 57 "bidfloor": 0.05, 58 "bidfloorcur": "USD", 59 "ext": { 60 "bidder": { 61 "publisherId": "12345", 62 "bidfloor": 2 63 } 64 }, 65 "id": "test-imp-id" 66 } 67 ], 68 "ext": { 69 "prebid": { 70 "currency": { 71 "rates": { 72 "EUR": { 73 "USD": 0.05 74 } 75 }, 76 "usepbsrates": false 77 } 78 } 79 } 80 }, 81 "impIDs":["test-imp-id"] 82 }, 83 "mockResponse": { 84 "status": 200, 85 "body": { 86 "id": "test-response-id", 87 "cur": "USD", 88 "seatbid": [ 89 { 90 "seat": "rtbhouse", 91 "bid": [ 92 { 93 "id": "randomid", 94 "impid": "test-imp-id", 95 "price": 300, 96 "adid": "12345678", 97 "adm": "some-test-ad", 98 "cid": "987", 99 "crid": "12345678", 100 "h": 250, 101 "w": 300, 102 "mtype": 1 103 } 104 ] 105 } 106 ] 107 } 108 } 109 } 110 ], 111 "expectedBidResponses": [ 112 { 113 "currency": "USD", 114 "bids": [ 115 { 116 "bid": { 117 "id": "randomid", 118 "impid": "test-imp-id", 119 "price": 300, 120 "adid": "12345678", 121 "adm": "some-test-ad", 122 "cid": "987", 123 "crid": "12345678", 124 "h": 250, 125 "w": 300, 126 "mtype": 1 127 }, 128 "type": "banner" 129 } 130 ] 131 } 132 ] 133 }