github.com/prebid/prebid-server/v2@v2.18.0/adapters/adf/adftest/exemplary/single-native.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [{ 5 "id": "test-imp-id", 6 "ext": { 7 "bidder": { 8 "mid": "828782" 9 } 10 }, 11 "native": { 12 "request": "{json string}", 13 "ver": "1.2" 14 } 15 }], 16 "site": { 17 "publisher": { 18 "id": "1" 19 }, 20 "page": "some-page-url" 21 }, 22 "device": { 23 "w": 1920, 24 "h": 800 25 } 26 }, 27 "httpCalls": [{ 28 "expectedRequest": { 29 "uri": "https://adx.adform.net/adx/openrtb", 30 "body": { 31 "id": "test-request-id", 32 "imp": [{ 33 "id": "test-imp-id", 34 "ext": { 35 "bidder": { 36 "mid": "828782" 37 } 38 }, 39 "native": { 40 "request": "{json string}", 41 "ver": "1.2" 42 }, 43 "tagid": "828782" 44 }], 45 "site": { 46 "publisher": { 47 "id": "1" 48 }, 49 "page": "some-page-url" 50 }, 51 "device": { 52 "w": 1920, 53 "h": 800 54 } 55 }, 56 "impIDs":["test-imp-id"] 57 }, 58 "mockResponse": { 59 "status": 200, 60 "body": { 61 "id": "test-request-id", 62 "seatbid": [{ 63 "bid": [{ 64 "id": "test-bid-id", 65 "impid": "test-imp-id", 66 "price": 10, 67 "adm": "{json response string}", 68 "adomain": [], 69 "crid": "test-creative-id", 70 "ext": { 71 "prebid": { 72 "type": "native" 73 } 74 } 75 }] 76 }], 77 "cur": "USD" 78 } 79 } 80 }], 81 "expectedBidResponses": [{ 82 "currency": "USD", 83 "bids": [ 84 { 85 "bid": { 86 "id": "test-bid-id", 87 "impid": "test-imp-id", 88 "price": 10, 89 "adm": "{json response string}", 90 "crid": "test-creative-id", 91 "ext": { 92 "prebid": { 93 "type": "native" 94 } 95 } 96 }, 97 "type": "native" 98 } 99 ] 100 }] 101 }