github.com/prebid/prebid-server/v2@v2.18.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 "impIDs":["test-imp-id"] 56 }, 57 "mockResponse": { 58 "status": 200, 59 "body": { 60 "id": "test-request-id", 61 "seatbid": [ 62 { 63 "seat": "vrtcal", 64 "bid": [ 65 { 66 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 67 "impid": "test-imp-id", 68 "price": 0.500000, 69 "adm": "some-test-ad", 70 "crid": "crid_10", 71 "h": 250, 72 "w": 300, 73 "mtype":1 74 } 75 ] 76 } 77 ], 78 "cur": "USD" 79 } 80 } 81 } 82 ], 83 "expectedBidResponses": [ 84 { 85 "currency": "USD", 86 "bids": [ 87 { 88 "bid": { 89 "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800", 90 "impid": "test-imp-id", 91 "price": 0.5, 92 "adm": "some-test-ad", 93 "crid": "crid_10", 94 "w": 300, 95 "h": 250, 96 "mtype":1 97 }, 98 "type": "banner" 99 } 100 ] 101 } 102 ] 103 }