github.com/prebid/prebid-server@v0.275.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 }, 114 "mockResponse": { 115 "status": 200, 116 "body": { 117 "id": "awesome-resp-id", 118 "seatbid": [ 119 { 120 "bid": [ 121 { 122 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 123 "impid": "some-impression-id", 124 "price": 3.5, 125 "adm": "awesome-markup", 126 "adomain": [ 127 "awesome.com" 128 ], 129 "crid": "20", 130 "w": 1280, 131 "h": 720 132 } 133 ], 134 "seat": "krushmedia" 135 } 136 ], 137 "cur": "USD", 138 "ext": { 139 "responsetimemillis": { 140 "krushmedia": 154 141 }, 142 "tmaxrequest": 1000 143 } 144 } 145 } 146 } 147 ], 148 "expectedBidResponses": [ 149 { 150 "bids":[ 151 { 152 "bid": { 153 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 154 "impid": "some-impression-id", 155 "price": 3.5, 156 "adm": "awesome-markup", 157 "crid": "20", 158 "adomain": [ 159 "awesome.com" 160 ], 161 "w": 1280, 162 "h": 720 163 }, 164 "type": "video" 165 } 166 ] 167 } 168 ] 169 }