github.com/prebid/prebid-server@v0.275.0/adapters/videoheroes/videoheroestest/exemplary/banner-app.json (about) 1 { 2 "mockBidRequest": { 3 "id": "request-id", 4 "app": { 5 "publisher": { 6 "id": "123456789" 7 }, 8 "cat": [ 9 "IAB9-1" 10 ], 11 "bundle": "com.app.test", 12 "name": "Test App", 13 "id": "12345678" 14 }, 15 "device": { 16 "ua": "useragent", 17 "ip": "100.100.100.100", 18 "language": "en" 19 }, 20 "tmax": 1000, 21 "user": { 22 "id": "some-user" 23 }, 24 "imp": [ 25 { 26 "id": "impression-id", 27 "tagid": "tid", 28 "banner": { 29 "w":320, 30 "h":50 31 }, 32 "ext": { 33 "bidder": { 34 "placementId": "f897beb0daba0253d8e59a098eef9311" 35 } 36 } 37 } 38 ] 39 }, 40 "httpCalls": [ 41 { 42 "expectedRequest": { 43 "headers": { 44 "Content-Type": [ 45 "application/json;charset=utf-8" 46 ], 47 "Accept": [ 48 "application/json" 49 ] 50 }, 51 "uri": "http://point.contextualadv.com/?t=3&partner=f897beb0daba0253d8e59a098eef9311", 52 "body": { 53 "id": "request-id", 54 "device": { 55 "ua": "useragent", 56 "ip": "100.100.100.100", 57 "language": "en" 58 }, 59 "imp": [ 60 { 61 "id": "impression-id", 62 "banner": { 63 "w":320, 64 "h":50 65 }, 66 "tagid": "tid" 67 } 68 ], 69 "app": { 70 "publisher": { 71 "id": "123456789" 72 }, 73 "cat": [ 74 "IAB9-1" 75 ], 76 "bundle": "com.app.test", 77 "name": "Test App", 78 "id": "12345678" 79 }, 80 "user": { 81 "id": "some-user" 82 }, 83 "tmax": 1000 84 } 85 }, 86 "mockResponse": { 87 "status": 200, 88 "body": { 89 "id": "resp-id", 90 "seatbid": [ 91 { 92 "bid": [ 93 { 94 "id": "123456789", 95 "impid": "impression-id", 96 "price": 2, 97 "adm": "adm code", 98 "adomain": [ 99 "testdomain.com" 100 ], 101 "crid": "100", 102 "w":320, 103 "h":50 104 } 105 ], 106 "type": "banner", 107 "seat": "videoheroes" 108 } 109 ], 110 "cur": "USD", 111 "ext": { 112 "responsetimemillis": { 113 "videoheroes": 120 114 }, 115 "tmaxrequest": 1000 116 } 117 } 118 } 119 } 120 ], 121 "expectedBidResponses": [ 122 { 123 "bids": [{ 124 "bid": { 125 "id": "123456789", 126 "impid": "impression-id", 127 "price": 2, 128 "adm": "adm code", 129 "adomain": [ 130 "testdomain.com" 131 ], 132 "crid": "100", 133 "w":320, 134 "h":50 135 }, 136 "type": "banner" 137 }] 138 } 139 ] 140 }