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