github.com/prebid/prebid-server@v0.275.0/adapters/zeta_global_ssp/zeta_global_ssp-test/exemplary/video.json (about) 1 { 2 "mockBidRequest": { 3 "id": "some-request-id", 4 "tmax": 1000, 5 "imp": [ 6 { 7 "id": "some-impression-id", 8 "ext": { 9 "bidder": {} 10 }, 11 "video": { 12 "w": 640, 13 "h": 480, 14 "mimes": [ 15 "video/mp4" 16 ], 17 "placement": 1 18 } 19 } 20 ], 21 "test": 1, 22 "site": { 23 "publisher": { 24 "id": "1" 25 }, 26 "page": "http://www.example.com", 27 "domain": "www.example.com" 28 }, 29 "device": { 30 "w": 1200, 31 "h": 900 32 } 33 }, 34 "httpCalls": [ 35 { 36 "expectedRequest": { 37 "uri": "http://whatever.url", 38 "headers": { 39 "Content-Type": [ 40 "application/json;charset=utf-8" 41 ], 42 "Accept": [ 43 "application/json" 44 ] 45 }, 46 "body": { 47 "id": "some-request-id", 48 "tmax": 1000, 49 "imp": [ 50 { 51 "id": "some-impression-id", 52 "ext": { 53 "bidder": {} 54 }, 55 "video": { 56 "w": 640, 57 "h": 480, 58 "mimes": [ 59 "video/mp4" 60 ], 61 "placement": 1 62 } 63 } 64 ], 65 "site": { 66 "publisher": { 67 "id": "1" 68 }, 69 "page": "http://www.example.com", 70 "domain": "www.example.com" 71 }, 72 "device": { 73 "w": 1200, 74 "h": 900 75 }, 76 "test": 1 77 } 78 }, 79 "mockResponse": { 80 "status": 200, 81 "body": { 82 "id": "some-request-id", 83 "cur": "USD", 84 "seatbid": [ 85 { 86 "bid": [ 87 { 88 "id": "1", 89 "impid": "some-impression-id", 90 "crid": "some-creative-id", 91 "adm": "<VAST>TAG</VAST>", 92 "price": 20, 93 "w": 640, 94 "h": 480, 95 "ext": { 96 "prebid": { 97 "type": "video" 98 } 99 } 100 } 101 ] 102 } 103 ] 104 } 105 } 106 } 107 ], 108 "expectedBidResponses": [ 109 { 110 "currency": "USD", 111 "bids": [ 112 { 113 "bid": { 114 "id": "1", 115 "impid": "some-impression-id", 116 "crid": "some-creative-id", 117 "adm": "<VAST>TAG</VAST>", 118 "price": 20, 119 "w": 640, 120 "h": 480, 121 "ext": { 122 "prebid": { 123 "type": "video" 124 } 125 } 126 }, 127 "type": "video" 128 } 129 ] 130 } 131 ] 132 }