github.com/prebid/prebid-server/v2@v2.18.0/adapters/aja/ajatest/exemplary/video.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-req-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "video": { 8 "mimes": ["video/mp4"], 9 "w": 640, 10 "h": 480 11 }, 12 "ext": { 13 "bidder": { 14 "asi": "test-asi" 15 } 16 } 17 } 18 ], 19 "user": { 20 "buyeruid": "test-uid" 21 }, 22 "tmax": 500 23 }, 24 25 "httpCalls": [ 26 { 27 "expectedRequest": { 28 "uri": "https://localhost/bid/4", 29 "headers": {}, 30 "body": { 31 "id": "test-req-id", 32 "imp": [ 33 { 34 "id": "test-imp-id", 35 "video": { 36 "mimes": ["video/mp4"], 37 "w": 640, 38 "h": 480 39 }, 40 "tagid": "test-asi" 41 } 42 ], 43 "user": { 44 "buyeruid": "test-uid" 45 }, 46 "tmax": 500 47 }, 48 "impIDs":["test-imp-id"] 49 }, 50 "mockResponse": { 51 "status": 200, 52 "body": { 53 "id": "test-req-id", 54 "seatbid": [ 55 { 56 "bid": [ 57 { 58 "id": "test-bid-id", 59 "impid": "test-imp-id", 60 "price": 1, 61 "adm": "<VAST></VAST>", 62 "crid": "test-creative-id" 63 } 64 ] 65 } 66 ], 67 "bidid": "test-seatbid-id", 68 "cur": "USD" 69 } 70 } 71 } 72 ], 73 74 "expectedBidResponses": [ 75 { 76 "currency": "USD", 77 "bids": [ 78 { 79 "bid": { 80 "id": "test-bid-id", 81 "impid": "test-imp-id", 82 "price": 1, 83 "adm": "<VAST></VAST>", 84 "crid": "test-creative-id" 85 }, 86 "type": "video" 87 } 88 ] 89 } 90 ] 91 }