github.com/prebid/prebid-server/v2@v2.18.0/exchange/exchangetest/bid-ext.json (about) 1 { 2 "description": "Verifies bid.ext values are left alone from the adapter, except for adding in bid.ext.prebid.", 3 "incomingRequest": { 4 "ortbRequest": { 5 "id": "some-request-id", 6 "site": { 7 "page": "test.somepage.com" 8 }, 9 "imp": [ 10 { 11 "id": "my-imp-id", 12 "video": { 13 "mimes": [ 14 "video/mp4" 15 ] 16 }, 17 "ext": { 18 "prebid": { 19 "bidder": { 20 "appnexus": { 21 "placementId": 1 22 } 23 } 24 } 25 } 26 } 27 ] 28 } 29 }, 30 "outgoingRequests": { 31 "appnexus": { 32 "expectRequest": { 33 "ortbRequest": { 34 "id": "some-request-id", 35 "site": { 36 "page": "test.somepage.com" 37 }, 38 "imp": [ 39 { 40 "id": "my-imp-id", 41 "video": { 42 "mimes": [ 43 "video/mp4" 44 ] 45 }, 46 "ext": { 47 "bidder": { 48 "placementId": 1 49 } 50 } 51 } 52 ] 53 } 54 }, 55 "mockResponse": { 56 "pbsSeatBids": [ 57 { 58 "pbsBids": [ 59 { 60 "ortbBid": { 61 "id": "apn-bid", 62 "impid": "my-imp-id", 63 "price": 0.3, 64 "w": 200, 65 "h": 250, 66 "crid": "creative-1", 67 "ext": { 68 "origbidcpm": 0.3, 69 "someField": "someValue" 70 } 71 }, 72 "bidType": "video" 73 } 74 ], 75 "seat": "appnexus" 76 } 77 ] 78 } 79 } 80 }, 81 "response": { 82 "bids": { 83 "id": "some-request-id", 84 "seatbid": [ 85 { 86 "seat": "appnexus", 87 "bid": [ 88 { 89 "id": "apn-bid", 90 "impid": "my-imp-id", 91 "price": 0.3, 92 "w": 200, 93 "h": 250, 94 "crid": "creative-1", 95 "ext": { 96 "origbidcpm": 0.3, 97 "someField": "someValue", 98 "prebid": { 99 "meta": { 100 }, 101 "type": "video" 102 } 103 } 104 } 105 ] 106 } 107 ] 108 } 109 } 110 }