github.com/prebid/prebid-server@v0.275.0/adapters/vrtcal/vrtcaltest/exemplary/simple-banner.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 "ext": { 16 "bidder": { 17 "Just_an_unused_vrtcal_param": "unused_data_for_this" 18 } 19 } 20 } 21 ], 22 "app": { 23 "id": "fake-app-id" 24 } 25 }, 26 "httpCalls": [ 27 { 28 "expectedRequest": { 29 "uri": "http://rtb.vrtcal.com/bidder_prebid.vap?ssp=1804", 30 "body": { 31 "id": "test-request-id", 32 "imp": [ 33 { 34 "id": "test-imp-id", 35 "banner": { 36 "format": [ 37 { 38 "w": 300, 39 "h": 250 40 } 41 ] 42 }, 43 44 "ext": { 45 "bidder": { 46 "Just_an_unused_vrtcal_param": "unused_data_for_this" 47 } 48 } 49 } 50 ], 51 "app": { 52 "id": "fake-app-id" 53 } 54 } 55 }, 56 "mockResponse": { 57 "status": 200, 58 "body": { 59 "id": "test-request-id", 60 "seatbid": [ 61 { 62 "seat": "vrtcal", 63 "bid": [ 64 { 65 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 66 "impid": "test-imp-id", 67 "price": 0.500000, 68 "adm": "some-test-ad", 69 "crid": "crid_10", 70 "h": 250, 71 "w": 300, 72 "mtype":1 73 } 74 ] 75 } 76 ], 77 "cur": "USD" 78 } 79 } 80 } 81 ], 82 "expectedBidResponses": [ 83 { 84 "currency": "USD", 85 "bids": [ 86 { 87 "bid": { 88 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 89 "impid": "test-imp-id", 90 "price": 0.5, 91 "adm": "some-test-ad", 92 "crid": "crid_10", 93 "w": 300, 94 "h": 250, 95 "mtype":1 96 }, 97 "type": "banner" 98 } 99 ] 100 } 101 ] 102 }