github.com/prebid/prebid-server/v2@v2.18.0/adapters/stroeerCore/stroeercoretest/exemplary/site-multi-format-single.json (about) 1 { 2 "mockBidRequest": { 3 "id": "auction-id", 4 "cur": ["EUR"], 5 "imp": [ 6 { 7 "id": "3", 8 "banner": { 9 "format": [ 10 { 11 "w": 468, 12 "h": 60 13 }, 14 { 15 "w": 300, 16 "h": 600 17 } 18 ] 19 }, 20 "video": { 21 "mimes": ["video/mp4"], 22 "w": 1024, 23 "h": 576 24 }, 25 "ext": { 26 "bidder": { 27 "sid": "123456" 28 } 29 } 30 } 31 ], 32 "device": { 33 "ua": "test-user-agent", 34 "ip": "123.123.123.123", 35 "language": "en", 36 "dnt": 0 37 }, 38 "site": { 39 "domain": "www.publisher.com", 40 "page": "http://www.publisher.com/some/path", 41 "ext": { 42 "amp": 1 43 } 44 }, 45 "user": { 46 "buyeruid": "test-buyer-user-id" 47 } 48 }, 49 "httpCalls": [ 50 { 51 "expectedRequest": { 52 "headers": { 53 "Accept": ["application/json"], 54 "Content-Type": ["application/json;charset=utf-8"] 55 }, 56 "uri": "http://localhost/s2sdsh", 57 "body": { 58 "id": "auction-id", 59 "cur": ["EUR"], 60 "imp": [ 61 { 62 "id": "3", 63 "tagid": "123456", 64 "banner": { 65 "format": [ 66 { 67 "w": 468, 68 "h": 60 69 }, 70 { 71 "w": 300, 72 "h": 600 73 } 74 ] 75 }, 76 "video": { 77 "mimes": ["video/mp4"], 78 "w": 1024, 79 "h": 576 80 }, 81 "ext": { 82 "bidder": { 83 "sid": "123456" 84 } 85 } 86 } 87 ], 88 "device": { 89 "ua": "test-user-agent", 90 "ip": "123.123.123.123", 91 "language": "en", 92 "dnt": 0 93 }, 94 "site": { 95 "domain": "www.publisher.com", 96 "page": "http://www.publisher.com/some/path", 97 "ext": { 98 "amp": 1 99 } 100 }, 101 "user": { 102 "buyeruid": "test-buyer-user-id" 103 } 104 }, 105 "impIDs":["3"] 106 }, 107 "mockResponse": { 108 "status": 200, 109 "body": { 110 "id": "test-request-id", 111 "bids": [ 112 { 113 "id": "3929239282-01", 114 "bidId": "3", 115 "cpm": 2, 116 "width": 468, 117 "height": 60, 118 "ad": "banner ad", 119 "crid": "qwert", 120 "mtype": "banner" 121 } 122 ] 123 } 124 } 125 } 126 ], 127 "expectedBidResponses": [ 128 { 129 "currency": "EUR", 130 "bids": [ 131 { 132 "bid": { 133 "id": "3929239282-01", 134 "impid": "3", 135 "price": 2, 136 "adm": "banner ad", 137 "w": 468, 138 "h": 60, 139 "crid": "qwert", 140 "mtype": 1 141 }, 142 "type": "banner" 143 } 144 ] 145 } 146 ] 147 }