github.com/prebid/prebid-server@v0.275.0/adapters/dianomi/dianomitest/exemplary/multi-native.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [{ 5 "id": "test-imp-id-1", 6 "ext": { 7 "bidder": { 8 "smartadId": "9607" 9 } 10 }, 11 "native": { 12 "request": "{json string 1}", 13 "ver": "1.2" 14 } 15 }, { 16 "id": "test-imp-id-2", 17 "ext": { 18 "bidder": { 19 "smartadId": "9607" 20 } 21 }, 22 "native": { 23 "request": "{json string 2}", 24 "ver": "1.2" 25 } 26 }] 27 }, 28 "httpCalls": [{ 29 "expectedRequest": { 30 "uri": "https://prebid-server-aws.dianomi.com/openrtb2/auction", 31 "headers": { 32 "Content-Type": [ 33 "application/json;charset=utf-8" 34 ], 35 "Accept": [ 36 "application/json" 37 ] 38 }, 39 "body": { 40 "id": "test-request-id", 41 "imp": [{ 42 "id": "test-imp-id-1", 43 "ext": { 44 "bidder": { 45 "smartadId": "9607" 46 } 47 }, 48 "native": { 49 "request": "{json string 1}", 50 "ver": "1.2" 51 }, 52 "tagid": "9607" 53 }, { 54 "id": "test-imp-id-2", 55 "ext": { 56 "bidder": { 57 "smartadId": "9607" 58 } 59 }, 60 "native": { 61 "request": "{json string 2}", 62 "ver": "1.2" 63 }, 64 "tagid": "9607" 65 }] 66 } 67 }, 68 "mockResponse": { 69 "status": 200, 70 "body": { 71 "id": "test-request-id", 72 "seatbid": [{ 73 "bid": [{ 74 "id": "test-bid-id-1", 75 "impid": "test-imp-id-1", 76 "price": 10, 77 "adm": "{json response string 1}", 78 "adomain": [], 79 "crid": "test-creative-id-1", 80 "ext": { 81 "prebid": { 82 "type": "native" 83 } 84 } 85 }, { 86 "id": "test-bid-id-2", 87 "impid": "test-imp-id-2", 88 "price": 2, 89 "adm": "{json response string 2}", 90 "adomain": [ "ad-domain" ], 91 "crid": "test-creative-id-2", 92 "ext": { 93 "prebid": { 94 "type": "native" 95 } 96 } 97 }] 98 }], 99 "cur": "EUR" 100 } 101 } 102 }], 103 "expectedBidResponses": [{ 104 "currency": "EUR", 105 "bids": [{ 106 "bid": { 107 "id": "test-bid-id-1", 108 "impid": "test-imp-id-1", 109 "price": 10, 110 "adm": "{json response string 1}", 111 "crid": "test-creative-id-1", 112 "ext": { 113 "prebid": { 114 "type": "native" 115 } 116 } 117 }, 118 "type": "native" 119 }, { 120 "bid": { 121 "id": "test-bid-id-2", 122 "impid": "test-imp-id-2", 123 "price": 2, 124 "adm": "{json response string 2}", 125 "adomain": [ "ad-domain" ], 126 "crid": "test-creative-id-2", 127 "ext": { 128 "prebid": { 129 "type": "native" 130 } 131 } 132 }, 133 "type": "native" 134 }] 135 }] 136 }