github.com/prebid/prebid-server@v0.275.0/adapters/adtrgtme/adtrgtmetest/exemplary/banner-web.json (about) 1 { 2 "mockBidRequest": { 3 "id": "super-req-id", 4 "at": 1, 5 "tmax": 300, 6 "imp": [ 7 { 8 "banner": { 9 "w": 300, 10 "h": 250 11 }, 12 "id": "super-bid-id", 13 "bidfloor": 1, 14 "bidfloorcur": "USD", 15 "secure": 1, 16 "ext": { 17 "bidder": { 18 "site_id": 123456789 19 } 20 } 21 }, 22 { 23 "banner": { 24 "w": 300, 25 "h": 50 26 }, 27 "id": "incredible-bid-id", 28 "bidfloor": 1, 29 "bidfloorcur": "USD", 30 "secure": 1, 31 "ext": { 32 "bidder": { 33 "site_id": 987654321 34 } 35 } 36 }, 37 { 38 "banner": { 39 "w": 160, 40 "h": 160 41 }, 42 "id": "amazing-bid-id", 43 "bidfloor": 1, 44 "bidfloorcur": "USD", 45 "secure": 1, 46 "ext": { 47 "bidder": { 48 "site_id": 432198765 49 } 50 } 51 } 52 ], 53 "site": { 54 "id": "123456789", 55 "cat": [ 56 "super-cat" 57 ], 58 "page": "super-page-site", 59 "publisher": { 60 "id": "super-site-publisher-id" 61 } 62 }, 63 "device": { 64 "ua": "super-device-user-agent", 65 "ip": "123.123.123.123", 66 "geo": { 67 "country": "TST" 68 }, 69 "os": "Android", 70 "language": "en" 71 }, 72 "user": { 73 "id": "super-user-id" 74 } 75 }, 76 "httpCalls": [ 77 { 78 "expectedRequest": { 79 "uri": "http://localhost/ssp?s=123456789&prebid", 80 "headers": { 81 "Content-Type": [ 82 "application/json;charset=utf-8" 83 ], 84 "Accept": [ 85 "application/json" 86 ], 87 "X-Openrtb-Version": [ 88 "2.5" 89 ], 90 "User-Agent": [ 91 "super-device-user-agent" 92 ], 93 "X-Forwarded-For": [ 94 "123.123.123.123" 95 ] 96 }, 97 "body": { 98 "id": "super-req-id", 99 "at": 1, 100 "tmax": 300, 101 "imp": [ 102 { 103 "banner": { 104 "w": 300, 105 "h": 250 106 }, 107 "id": "super-bid-id", 108 "bidfloor": 1, 109 "bidfloorcur": "USD", 110 "secure": 1 111 } 112 ], 113 "site": { 114 "id": "123456789", 115 "cat": [ 116 "super-cat" 117 ], 118 "page": "super-page-site", 119 "publisher": { 120 "id": "super-site-publisher-id" 121 } 122 }, 123 "device": { 124 "ua": "super-device-user-agent", 125 "ip": "123.123.123.123", 126 "geo": { 127 "country": "TST" 128 }, 129 "os": "Android", 130 "language": "en" 131 }, 132 "user": { 133 "id": "super-user-id" 134 } 135 } 136 }, 137 "mockResponse": { 138 "status": 200, 139 "body": { 140 "id": "super-req-id", 141 "seatbid": [ 142 { 143 "bid": [ 144 { 145 "id": "super-bid-id", 146 "impid": "super-bid-id", 147 "price": 1, 148 "adm": "<div>super</div>", 149 "crid": "super-creative-id" 150 } 151 ] 152 } 153 ], 154 "bidid": "super-seatbid-id", 155 "cur": "USD" 156 } 157 } 158 }, 159 { 160 "expectedRequest": { 161 "uri": "http://localhost/ssp?s=987654321&prebid", 162 "headers": { 163 "Content-Type": [ 164 "application/json;charset=utf-8" 165 ], 166 "Accept": [ 167 "application/json" 168 ], 169 "X-Openrtb-Version": [ 170 "2.5" 171 ], 172 "User-Agent": [ 173 "super-device-user-agent" 174 ], 175 "X-Forwarded-For": [ 176 "123.123.123.123" 177 ] 178 }, 179 "body": { 180 "id": "super-req-id", 181 "at": 1, 182 "tmax": 300, 183 "imp": [ 184 { 185 "banner": { 186 "w": 300, 187 "h": 50 188 }, 189 "id": "incredible-bid-id", 190 "bidfloor": 1, 191 "bidfloorcur": "USD", 192 "secure": 1 193 } 194 ], 195 "site": { 196 "id": "123456789", 197 "cat": [ 198 "super-cat" 199 ], 200 "page": "super-page-site", 201 "publisher": { 202 "id": "super-site-publisher-id" 203 } 204 }, 205 "device": { 206 "ua": "super-device-user-agent", 207 "ip": "123.123.123.123", 208 "geo": { 209 "country": "TST" 210 }, 211 "os": "Android", 212 "language": "en" 213 }, 214 "user": { 215 "id": "super-user-id" 216 } 217 } 218 }, 219 "mockResponse": { 220 "status": 200, 221 "body": { 222 "id": "super-req-id", 223 "seatbid": [ 224 { 225 "bid": [ 226 { 227 "id": "super-bid-id", 228 "impid": "incredible-bid-id", 229 "price": 1, 230 "adm": "<div>incredible</div>", 231 "crid": "incredible-creative-id" 232 } 233 ] 234 } 235 ], 236 "bidid": "incredible-seatbid-id", 237 "cur": "USD" 238 } 239 } 240 }, 241 { 242 "expectedRequest": { 243 "uri": "http://localhost/ssp?s=432198765&prebid", 244 "headers": { 245 "Content-Type": [ 246 "application/json;charset=utf-8" 247 ], 248 "Accept": [ 249 "application/json" 250 ], 251 "X-Openrtb-Version": [ 252 "2.5" 253 ], 254 "User-Agent": [ 255 "super-device-user-agent" 256 ], 257 "X-Forwarded-For": [ 258 "123.123.123.123" 259 ] 260 }, 261 "body": { 262 "id": "super-req-id", 263 "at": 1, 264 "tmax": 300, 265 "imp": [ 266 { 267 "banner": { 268 "w": 160, 269 "h": 160 270 }, 271 "id": "amazing-bid-id", 272 "bidfloor": 1, 273 "bidfloorcur": "USD", 274 "secure": 1 275 } 276 ], 277 "site": { 278 "id": "123456789", 279 "cat": [ 280 "super-cat" 281 ], 282 "page": "super-page-site", 283 "publisher": { 284 "id": "super-site-publisher-id" 285 } 286 }, 287 "device": { 288 "ua": "super-device-user-agent", 289 "ip": "123.123.123.123", 290 "geo": { 291 "country": "TST" 292 }, 293 "os": "Android", 294 "language": "en" 295 }, 296 "user": { 297 "id": "super-user-id" 298 } 299 } 300 }, 301 "mockResponse": { 302 "status": 200, 303 "body": { 304 "id": "super-req-id", 305 "seatbid": [ 306 { 307 "bid": [ 308 { 309 "id": "super-bid-id", 310 "impid": "amazing-bid-id", 311 "price": 1, 312 "adm": "<div>amazing</div>", 313 "crid": "amazing-creative-id" 314 } 315 ] 316 } 317 ], 318 "bidid": "amazing-seatbid-id", 319 "cur": "USD" 320 } 321 } 322 } 323 ], 324 "expectedBidResponses": [ 325 { 326 "currency": "USD", 327 "bids": [ 328 { 329 "bid": { 330 "id": "super-bid-id", 331 "impid": "super-bid-id", 332 "price": 1, 333 "adm": "<div>super</div>", 334 "crid": "super-creative-id" 335 }, 336 "type": "banner" 337 } 338 ] 339 }, 340 { 341 "currency": "USD", 342 "bids": [ 343 { 344 "bid": { 345 "id": "super-bid-id", 346 "impid": "incredible-bid-id", 347 "price": 1, 348 "adm": "<div>incredible</div>", 349 "crid": "incredible-creative-id" 350 }, 351 "type": "banner" 352 } 353 ] 354 }, 355 { 356 "currency": "USD", 357 "bids": [ 358 { 359 "bid": { 360 "id": "super-bid-id", 361 "impid": "amazing-bid-id", 362 "price": 1, 363 "adm": "<div>amazing</div>", 364 "crid": "amazing-creative-id" 365 }, 366 "type": "banner" 367 } 368 ] 369 } 370 ] 371 }