github.com/prebid/prebid-server@v0.275.0/adapters/ccx/ccxtest/exemplary/simple-banner.json (about) 1 { 2 "mockBidRequest": { 3 "id": "test-request-id", 4 "imp": [ 5 { 6 "id": "test-imp-id", 7 "banner": { 8 "format": [{"w": 300, "h": 250}] 9 }, 10 "ext": { 11 "bidder": { 12 "placementId": 123456789 13 } 14 } 15 } 16 ], 17 "site": { 18 "page": "somepage.com" 19 }, 20 "user": { 21 "buyeruid": "someuid", 22 "ext": { 23 "consent" : "dummy" 24 } 25 }, 26 "regs": { 27 "ext": { 28 "gdpr":1 29 } 30 } 31 }, 32 33 "httpCalls": [ 34 { 35 "expectedRequest": { 36 "uri": "https://delivery.clickonometrics.pl/ortb/prebid/bid", 37 "body": { 38 "id": "test-request-id", 39 "imp": [ 40 { 41 "id": "test-imp-id", 42 "banner": { 43 "format": [{"w": 300, "h": 250}] 44 }, 45 "ext": { 46 "bidder": { 47 "placementId": 123456789 48 } 49 } 50 } 51 ], 52 "site": { 53 "page": "somepage.com" 54 }, 55 "user": { 56 "buyeruid": "someuid", 57 "ext": { 58 "consent" : "dummy" 59 } 60 }, 61 "regs": { 62 "ext": { 63 "gdpr":1 64 } 65 } 66 } 67 }, 68 "mockResponse": { 69 "status": 200, 70 "body": { 71 "id": "test-request-id", 72 "seatbid": [ 73 { 74 "bid": [{ 75 "id": "11111111-2222-33333333", 76 "impid": "test-imp-id", 77 "price": 0.500000, 78 "adm": "some-test-ad", 79 "adomain":[ 80 "somedomain.com" 81 ], 82 "crid": "1234", 83 "w": 300, 84 "h": 250, 85 "ext": { 86 "type": "standard" 87 } 88 }] 89 } 90 ], 91 "cur": "PLN", 92 "ext": { 93 "ttl": 10, 94 "usersync":[] 95 } 96 } 97 } 98 } 99 ], 100 101 "expectedBidResponses": [ 102 { 103 "currency": "PLN", 104 "bids": [ 105 { 106 "bid": { 107 "id": "11111111-2222-33333333", 108 "impid": "test-imp-id", 109 "price": 0.5, 110 "adm": "some-test-ad", 111 "adomain":[ 112 "somedomain.com" 113 ], 114 "crid": "1234", 115 "w": 300, 116 "h": 250, 117 "ext": { 118 "type": "standard" 119 } 120 }, 121 "type": "banner" 122 } 123 ] 124 } 125 ] 126 }