github.com/prebid/prebid-server/v2@v2.18.0/adapters/adf/adftest/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 "mid": "828782" 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 "mid": "828783" 20 } 21 }, 22 "native": { 23 "request": "{json string 2}", 24 "ver": "1.2" 25 } 26 }] 27 }, 28 "httpCalls": [{ 29 "expectedRequest": { 30 "uri": "https://adx.adform.net/adx/openrtb", 31 "body": { 32 "id": "test-request-id", 33 "imp": [{ 34 "id": "test-imp-id-1", 35 "ext": { 36 "bidder": { 37 "mid": "828782" 38 } 39 }, 40 "native": { 41 "request": "{json string 1}", 42 "ver": "1.2" 43 }, 44 "tagid": "828782" 45 }, { 46 "id": "test-imp-id-2", 47 "ext": { 48 "bidder": { 49 "mid": "828783" 50 } 51 }, 52 "native": { 53 "request": "{json string 2}", 54 "ver": "1.2" 55 }, 56 "tagid": "828783" 57 }] 58 }, 59 "impIDs":["test-imp-id-1","test-imp-id-2"] 60 }, 61 "mockResponse": { 62 "status": 200, 63 "body": { 64 "id": "test-request-id", 65 "seatbid": [{ 66 "bid": [{ 67 "id": "test-bid-id-1", 68 "impid": "test-imp-id-1", 69 "price": 10, 70 "adm": "{json response string 1}", 71 "adomain": [], 72 "crid": "test-creative-id-1", 73 "ext": { 74 "prebid": { 75 "type": "native" 76 } 77 } 78 }, { 79 "id": "test-bid-id-2", 80 "impid": "test-imp-id-2", 81 "price": 2, 82 "adm": "{json response string 2}", 83 "adomain": [ "ad-domain" ], 84 "crid": "test-creative-id-2", 85 "ext": { 86 "prebid": { 87 "type": "native" 88 } 89 } 90 }] 91 }], 92 "cur": "EUR" 93 } 94 } 95 }], 96 "expectedBidResponses": [{ 97 "currency": "EUR", 98 "bids": [{ 99 "bid": { 100 "id": "test-bid-id-1", 101 "impid": "test-imp-id-1", 102 "price": 10, 103 "adm": "{json response string 1}", 104 "crid": "test-creative-id-1", 105 "ext": { 106 "prebid": { 107 "type": "native" 108 } 109 } 110 }, 111 "type": "native" 112 }, { 113 "bid": { 114 "id": "test-bid-id-2", 115 "impid": "test-imp-id-2", 116 "price": 2, 117 "adm": "{json response string 2}", 118 "adomain": [ "ad-domain" ], 119 "crid": "test-creative-id-2", 120 "ext": { 121 "prebid": { 122 "type": "native" 123 } 124 } 125 }, 126 "type": "native" 127 }] 128 }] 129 }