github.com/prebid/prebid-server/v2@v2.18.0/adapters/dianomi/dianomitest/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 "smartadId": "9607" 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://prebid-server-aws.dianomi.com/openrtb2/auction", 30 "headers": { 31 "Content-Type": [ 32 "application/json;charset=utf-8" 33 ], 34 "Accept": [ 35 "application/json" 36 ] 37 }, 38 "body": { 39 "id": "test-request-id", 40 "imp": [{ 41 "id": "test-imp-id", 42 "ext": { 43 "bidder": { 44 "smartadId": "9607" 45 } 46 }, 47 "native": { 48 "request": "{json string}", 49 "ver": "1.2" 50 }, 51 "tagid": "9607" 52 }], 53 "site": { 54 "publisher": { 55 "id": "1" 56 }, 57 "page": "some-page-url" 58 }, 59 "device": { 60 "w": 1920, 61 "h": 800 62 } 63 }, 64 "impIDs":["test-imp-id"] 65 }, 66 "mockResponse": { 67 "status": 200, 68 "body": { 69 "id": "test-request-id", 70 "seatbid": [{ 71 "bid": [{ 72 "id": "test-bid-id", 73 "impid": "test-imp-id", 74 "price": 10, 75 "adm": "{json response string}", 76 "adomain": [], 77 "crid": "test-creative-id", 78 "ext": { 79 "prebid": { 80 "type": "native" 81 } 82 } 83 }] 84 }], 85 "cur": "USD" 86 } 87 } 88 }], 89 "expectedBidResponses": [{ 90 "currency": "USD", 91 "bids": [ 92 { 93 "bid": { 94 "id": "test-bid-id", 95 "impid": "test-imp-id", 96 "price": 10, 97 "adm": "{json response string}", 98 "crid": "test-creative-id", 99 "ext": { 100 "prebid": { 101 "type": "native" 102 } 103 } 104 }, 105 "type": "native" 106 } 107 ] 108 }] 109 }