github.com/prebid/prebid-server/v2@v2.18.0/adapters/videoheroes/videoheroestest/exemplary/video-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 "video": { 29 "mimes": [ 30 "video/mp4" 31 ], 32 "w": 640, 33 "h": 480, 34 "minduration": 30, 35 "maxduration": 150 36 }, 37 "ext": { 38 "bidder": { 39 "placementId": "f897beb0daba0253d8e59a098eef9311" 40 } 41 } 42 } 43 ] 44 }, 45 "httpCalls": [ 46 { 47 "expectedRequest": { 48 "headers": { 49 "Content-Type": [ 50 "application/json;charset=utf-8" 51 ], 52 "Accept": [ 53 "application/json" 54 ] 55 }, 56 "uri": "http://point.contextualadv.com/?t=3&partner=f897beb0daba0253d8e59a098eef9311", 57 "body": { 58 "id": "request-id", 59 "device": { 60 "ua": "useragent", 61 "ip": "100.100.100.100", 62 "language": "en" 63 }, 64 "imp": [ 65 { 66 "id": "impression-id", 67 "video": { 68 "mimes": [ 69 "video/mp4" 70 ], 71 "minduration": 30, 72 "maxduration": 150, 73 "w": 640, 74 "h": 480 75 }, 76 "tagid": "tid" 77 } 78 ], 79 "app": { 80 "publisher": { 81 "id": "123456789" 82 }, 83 "cat": [ 84 "IAB9-1" 85 ], 86 "bundle": "com.app.test", 87 "name": "Test App", 88 "id": "12345678" 89 }, 90 "user": { 91 "id": "some-user" 92 }, 93 "tmax": 1000 94 }, 95 "impIDs":["impression-id"] 96 }, 97 "mockResponse": { 98 "status": 200, 99 "body": { 100 "id": "resp-id", 101 "seatbid": [ 102 { 103 "bid": [ 104 { 105 "id": "123456789", 106 "impid": "impression-id", 107 "price": 2, 108 "adm": "adm code", 109 "adomain": [ 110 "testdomain.com" 111 ], 112 "crid": "100", 113 "w": 1280, 114 "h": 720 115 } 116 ], 117 "type": "video", 118 "seat": "videoheroes" 119 } 120 ], 121 "cur": "USD", 122 "ext": { 123 "responsetimemillis": { 124 "videoheroes": 120 125 }, 126 "tmaxrequest": 1000 127 } 128 } 129 } 130 } 131 ], 132 "expectedBidResponses": [ 133 { 134 "bids": [{ 135 "bid": { 136 "id": "123456789", 137 "impid": "impression-id", 138 "price": 2, 139 "adm": "adm code", 140 "adomain": [ 141 "testdomain.com" 142 ], 143 "crid": "100", 144 "w": 1280, 145 "h": 720 146 }, 147 "type": "video" 148 }] 149 } 150 ] 151 }