github.com/prebid/prebid-server@v0.275.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 }, 65 "mockResponse": { 66 "status": 200, 67 "body": { 68 "id": "test-request-id", 69 "seatbid": [{ 70 "bid": [{ 71 "id": "test-bid-id", 72 "impid": "test-imp-id", 73 "price": 10, 74 "adm": "{json response string}", 75 "adomain": [], 76 "crid": "test-creative-id", 77 "ext": { 78 "prebid": { 79 "type": "native" 80 } 81 } 82 }] 83 }], 84 "cur": "USD" 85 } 86 } 87 }], 88 "expectedBidResponses": [{ 89 "currency": "USD", 90 "bids": [ 91 { 92 "bid": { 93 "id": "test-bid-id", 94 "impid": "test-imp-id", 95 "price": 10, 96 "adm": "{json response string}", 97 "crid": "test-creative-id", 98 "ext": { 99 "prebid": { 100 "type": "native" 101 } 102 } 103 }, 104 "type": "native" 105 } 106 ] 107 }] 108 }