github.com/prebid/prebid-server@v0.275.0/adapters/aja/ajatest/exemplary/banner-multiple-imps.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-req-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "w": 300, 9 "h": 250 10 }, 11 "ext": { 12 "bidder": { 13 "asi": "test-asi" 14 } 15 } 16 }, 17 { 18 "id": "test-imp-id2", 19 "banner": { 20 "w": 300, 21 "h": 250 22 }, 23 "ext": { 24 "bidder": { 25 "asi": "test-asi2" 26 } 27 } 28 } 29 ], 30 "user": { 31 "buyeruid": "test-uid" 32 }, 33 "tmax": 500 34 }, 35 36 "httpcalls": [ 37 { 38 "expectedRequest": { 39 "uri": "https://localhost/bid/4", 40 "headers": {}, 41 "body": { 42 "id": "test-req-id", 43 "imp": [ 44 { 45 "id": "test-imp-id", 46 "banner": { 47 "w": 300, 48 "h": 250 49 }, 50 "tagid": "test-asi" 51 } 52 ], 53 "user": { 54 "buyeruid": "test-uid" 55 }, 56 "tmax": 500 57 } 58 }, 59 "mockResponse": { 60 "status": 200, 61 "body": { 62 "id": "test-req-id", 63 "seatbid": [ 64 { 65 "bid": [ 66 { 67 "id": "test-bid-id", 68 "impid": "test-imp-id", 69 "price": 1, 70 "adm": "<div>test</div>", 71 "crid": "test-creative-id" 72 } 73 ] 74 } 75 ], 76 "bidid": "test-seatbid-id", 77 "cur": "USD" 78 } 79 } 80 }, 81 { 82 "expectedRequest": { 83 "uri": "https://localhost/bid/4", 84 "headers": {}, 85 "body": { 86 "id": "test-req-id", 87 "imp": [ 88 { 89 "id": "test-imp-id2", 90 "banner": { 91 "w": 300, 92 "h": 250 93 }, 94 "tagid": "test-asi2" 95 } 96 ], 97 "user": { 98 "buyeruid": "test-uid" 99 }, 100 "tmax": 500 101 } 102 }, 103 "mockResponse": { 104 "status": 200, 105 "body": { 106 "id": "test-req-id", 107 "seatbid": [ 108 { 109 "bid": [ 110 { 111 "id": "test-bid-id2", 112 "impid": "test-imp-id2", 113 "price": 1, 114 "adm": "<div>test2</div>", 115 "crid": "test-creative-id2" 116 } 117 ] 118 } 119 ], 120 "bidid": "test-seatbid-id", 121 "cur": "USD" 122 } 123 } 124 } 125 ], 126 127 "expectedBidResponses": [ 128 { 129 "currency": "USD", 130 "bids": [ 131 { 132 "bid": { 133 "id": "test-bid-id", 134 "impid": "test-imp-id", 135 "price": 1, 136 "adm": "<div>test</div>", 137 "crid": "test-creative-id" 138 }, 139 "type": "banner" 140 } 141 ] 142 }, 143 { 144 "currency": "USD", 145 "bids": [ 146 { 147 "bid": { 148 "id": "test-bid-id2", 149 "impid": "test-imp-id2", 150 "price": 1, 151 "adm": "<div>test2</div>", 152 "crid": "test-creative-id2" 153 }, 154 "type": "banner" 155 } 156 ] 157 } 158 ] 159 }