github.com/prebid/prebid-server@v0.275.0/adapters/dianomi/dianomitest/exemplary/single-banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [{ 5 "id": "test-imp-id", 6 "ext": { 7 "bidder": { 8 "smartadId": "9526" 9 } 10 }, 11 "banner": { 12 "format": [{ 13 "w": 300, 14 "h": 250 15 }] 16 } 17 }], 18 "site": { 19 "publisher": { 20 "id": "1" 21 }, 22 "page": "some-page-url" 23 }, 24 "device": { 25 "w": 1920, 26 "h": 800 27 } 28 }, 29 "httpCalls": [{ 30 "expectedRequest": { 31 "uri": "https://prebid-server-aws.dianomi.com/openrtb2/auction", 32 "headers": { 33 "Content-Type": [ 34 "application/json;charset=utf-8" 35 ], 36 "Accept": [ 37 "application/json" 38 ] 39 }, 40 "body": { 41 "id": "test-request-id", 42 "imp": [{ 43 "id": "test-imp-id", 44 "ext": { 45 "bidder": { 46 "smartadId": "9526" 47 } 48 }, 49 "banner": { 50 "format": [{ 51 "w": 300, 52 "h": 250 53 }] 54 }, 55 "tagid": "9526" 56 }], 57 "site": { 58 "publisher": { 59 "id": "1" 60 }, 61 "page": "some-page-url" 62 }, 63 "device": { 64 "w": 1920, 65 "h": 800 66 } 67 } 68 }, 69 "mockResponse": { 70 "status": 200, 71 "body": { 72 "id": "test-request-id", 73 "seatbid": [{ 74 "bid": [{ 75 "id": "test-bid-id", 76 "impid": "test-imp-id", 77 "price": 10, 78 "adm": "{banner html}", 79 "adomain": [ "test.com" ], 80 "crid": "test-creative-id", 81 "ext": { 82 "prebid": { 83 "type": "banner" 84 } 85 } 86 }] 87 }], 88 "cur": "USD" 89 } 90 } 91 }], 92 "expectedBidResponses": [{ 93 "currency": "USD", 94 "bids": [ 95 { 96 "bid": { 97 "id": "test-bid-id", 98 "impid": "test-imp-id", 99 "price": 10, 100 "adm": "{banner html}", 101 "crid": "test-creative-id", 102 "adomain": [ "test.com" ], 103 "ext": { 104 "prebid": { 105 "type": "banner" 106 } 107 } 108 }, 109 "type": "banner" 110 } 111 ] 112 }] 113 }