github.com/prebid/prebid-server/v2@v2.18.0/adapters/krushmedia/krushmediatest/exemplary/video-app.json (about) 1 { 2 "mockBidRequest": { 3 "id": "some-request-id", 4 "device": { 5 "ua": "test-user-agent", 6 "ip": "123.123.123.123", 7 "language": "en", 8 "dnt": 0 9 }, 10 "tmax": 1000, 11 "user": { 12 "buyeruid": "0000-000-000-0000" 13 }, 14 "app": { 15 "publisher": { 16 "id": "123456789" 17 }, 18 "cat": [ 19 "IAB22-1" 20 ], 21 "bundle": "com.app.awesome", 22 "name": "Awesome App", 23 "domain": "awesomeapp.com", 24 "id": "123456789" 25 }, 26 "imp": [ 27 { 28 "id": "some-impression-id", 29 30 "video": { 31 "mimes": [ 32 "video/mp4" 33 ], 34 "w": 640, 35 "h": 480, 36 "minduration": 120, 37 "maxduration": 150 38 }, 39 "ext": { 40 "bidder": { 41 "key": "2" 42 } 43 } 44 } 45 ] 46 }, 47 "httpCalls": [ 48 { 49 "expectedRequest": { 50 "headers": { 51 "Content-Type": [ 52 "application/json;charset=utf-8" 53 ], 54 "Accept": [ 55 "application/json" 56 ], 57 "X-Openrtb-Version": [ 58 "2.5" 59 ], 60 "User-Agent": [ 61 "test-user-agent" 62 ], 63 "X-Forwarded-For": [ 64 "123.123.123.123" 65 ], 66 "Accept-Language": [ 67 "en" 68 ], 69 "Dnt": [ 70 "0" 71 ] 72 }, 73 "uri": "http://example.com/?c=rtb&m=req&key=2", 74 "body": { 75 "id": "some-request-id", 76 "device": { 77 "ua": "test-user-agent", 78 "ip": "123.123.123.123", 79 "language": "en", 80 "dnt": 0 81 }, 82 "imp": [ 83 { 84 "id": "some-impression-id", 85 "video": { 86 "mimes": [ 87 "video/mp4" 88 ], 89 "minduration": 120, 90 "maxduration": 150, 91 "w": 640, 92 "h": 480 93 } 94 } 95 ], 96 "app": { 97 "id": "123456789", 98 "name": "Awesome App", 99 "bundle": "com.app.awesome", 100 "domain": "awesomeapp.com", 101 "cat": [ 102 "IAB22-1" 103 ], 104 "publisher": { 105 "id": "123456789" 106 } 107 }, 108 "user": { 109 "buyeruid": "0000-000-000-0000" 110 }, 111 "tmax": 1000 112 }, 113 "impIDs":["some-impression-id"] 114 }, 115 "mockResponse": { 116 "status": 200, 117 "body": { 118 "id": "awesome-resp-id", 119 "seatbid": [ 120 { 121 "bid": [ 122 { 123 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 124 "impid": "some-impression-id", 125 "price": 3.5, 126 "adm": "awesome-markup", 127 "adomain": [ 128 "awesome.com" 129 ], 130 "crid": "20", 131 "w": 1280, 132 "h": 720 133 } 134 ], 135 "seat": "krushmedia" 136 } 137 ], 138 "cur": "USD", 139 "ext": { 140 "responsetimemillis": { 141 "krushmedia": 154 142 }, 143 "tmaxrequest": 1000 144 } 145 } 146 } 147 } 148 ], 149 "expectedBidResponses": [ 150 { 151 "bids":[ 152 { 153 "bid": { 154 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 155 "impid": "some-impression-id", 156 "price": 3.5, 157 "adm": "awesome-markup", 158 "crid": "20", 159 "adomain": [ 160 "awesome.com" 161 ], 162 "w": 1280, 163 "h": 720 164 }, 165 "type": "video" 166 } 167 ] 168 } 169 ] 170 }