github.com/prebid/prebid-server/v2@v2.18.0/adapters/openweb/openwebtest/exemplary/simple-video.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "video": { 8 "w": 900, 9 "h": 250, 10 "mimes": [ 11 "video/x-flv", 12 "video/mp4" 13 ] 14 }, 15 "ext": { 16 "bidder": { 17 "aid": 1000 18 } 19 } 20 } 21 ] 22 }, 23 24 "httpCalls": [ 25 { 26 "expectedRequest": { 27 "uri": "http://ghb.spotim.market/pbs/ortb?aid=1000", 28 "body": { 29 "id": "test-request-id", 30 "imp": [ 31 { 32 "id":"test-imp-id", 33 "video": { 34 "w": 900, 35 "h": 250, 36 "mimes": [ 37 "video/x-flv", 38 "video/mp4" 39 ] 40 }, 41 "ext": { 42 "openweb": { 43 "aid": 1000 44 } 45 } 46 } 47 ] 48 }, 49 "impIDs":["test-imp-id"] 50 }, 51 "mockResponse": { 52 "status": 200, 53 "body": { 54 "id": "test-request-id", 55 "seatbid": [ 56 { 57 "bid": [ 58 { 59 "id": "test-bid-id", 60 "impid": "test-imp-id", 61 "price": 3.5, 62 "w": 900, 63 "h": 250 64 } 65 ] 66 } 67 ] 68 } 69 } 70 } 71 ], 72 "expectedBidResponses": [ 73 { 74 "currency": "USD", 75 "bids": [ 76 { 77 "bid": { 78 "id": "test-bid-id", 79 "impid": "test-imp-id", 80 "price": 3.5, 81 "w": 900, 82 "h": 250 83 }, 84 "type": "video" 85 } 86 ] 87 } 88 ] 89 }