github.com/prebid/prebid-server/v2@v2.18.0/adapters/imds/imdstest/exemplary/simple-banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "format": [ 9 { 10 "w": 300, 11 "h": 250 12 } 13 ] 14 }, 15 "ext": { 16 "bidder": { 17 "seatId": "prebid", 18 "tagId": "demo1" 19 } 20 } 21 } 22 ] 23 }, 24 25 "httpCalls": [ 26 { 27 "expectedRequest": { 28 "uri": "http://pbs.technoratimedia.com/openrtb/bids/prebid?src=pbs-go%2F1.0.0&adapter=imds", 29 "body": { 30 "id": "test-request-id", 31 "ext": { 32 "seatId": "prebid" 33 }, 34 "imp": [ 35 { 36 "id":"test-imp-id", 37 "tagid": "demo1", 38 "banner": { 39 "format": [ 40 {"w":300,"h":250} 41 ] 42 }, 43 "ext": { 44 "bidder": { 45 "seatId": "prebid", 46 "tagId": "demo1" 47 } 48 } 49 } 50 ] 51 }, 52 "impIDs":["test-imp-id"] 53 }, 54 "mockResponse": { 55 "status": 200, 56 "body": { 57 "id": "1", 58 "seatbid": [ 59 { 60 "bid": [ 61 { 62 "id": "test-request-id", 63 "impid": "test-imp-id", 64 "price": 2.69, 65 "adomain": [ 66 "psacentral.org" 67 ], 68 "cid": "mock-crid", 69 "crid": "mock-cid", 70 "ext": { 71 "prebid": { 72 "type": "banner" 73 } 74 } 75 } 76 ], 77 "seat": "imds" 78 } 79 ], 80 "ext": { 81 "responsetimemillis": { 82 "imds": 339 83 } 84 } 85 } 86 } 87 } 88 ], 89 "expectedBidResponses": [ 90 { 91 "currency": "USD", 92 "bids": [ 93 { 94 "bid": { 95 "adomain": [ 96 "psacentral.org" 97 ], 98 "cid": "mock-crid", 99 "crid": "mock-cid", 100 "ext": { 101 "prebid": { 102 "type": "banner" 103 } 104 }, 105 "id": "test-request-id", 106 "impid": "test-imp-id", 107 "price": 2.69 108 }, 109 "type": "banner" 110 } 111 ] 112 } 113 ] 114 }