github.com/prebid/prebid-server/v2@v2.18.0/exchange/exchangetest/request-imp-ext-prebid-filtering.json (about) 1 { 2 "description": "Verifies only allowed bid.request.imp[].ext.prebid values are passed to the bidder, dropping other fields.", 3 "incomingRequest": { 4 "ortbRequest": { 5 "id": "test-request-id", 6 "site": { 7 "page": "test.testpage.com" 8 }, 9 "imp": [ 10 { 11 "id": "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 "storedrequest": { 25 "id": "any-id" 26 }, 27 "storedauctionresponse": { 28 "id": "any-id" 29 }, 30 "storedbidresponse": [ 31 { 32 "id": "any-id", 33 "bidder": "foo" 34 } 35 ], 36 "is_rewarded_inventory": true, 37 "options": { 38 "echovideoattrs": true 39 }, 40 "unknown": "any-unknown" 41 }, 42 "data": "any-data", 43 "context": "any-context", 44 "skadn": "any-skadn", 45 "gpid": "any-gpid", 46 "tid": "any-tid" 47 } 48 } 49 ] 50 } 51 }, 52 "outgoingRequests": { 53 "appnexus": { 54 "expectRequest": { 55 "ortbRequest": { 56 "id": "test-request-id", 57 "site": { 58 "page": "test.testpage.com" 59 }, 60 "imp": [ 61 { 62 "id": "imp-id", 63 "video": { 64 "mimes": [ 65 "video/mp4" 66 ] 67 }, 68 "ext": { 69 "bidder": { 70 "placementId": 1 71 }, 72 "prebid": { 73 "is_rewarded_inventory": true, 74 "options": { 75 "echovideoattrs": true 76 } 77 }, 78 "data": "any-data", 79 "context": "any-context", 80 "skadn": "any-skadn", 81 "gpid": "any-gpid", 82 "tid": "any-tid" 83 } 84 } 85 ] 86 } 87 }, 88 "mockResponse": { 89 "pbsSeatBids": [ 90 { 91 "pbsBids": [ 92 { 93 "ortbBid": { 94 "id": "apn-bid", 95 "impid": "imp-id", 96 "price": 0.3, 97 "w": 200, 98 "h": 250, 99 "crid": "creative-1" 100 }, 101 "bidType": "video" 102 } 103 ], 104 "seat": "appnexus" 105 } 106 ] 107 } 108 } 109 }, 110 "response": { 111 "bids": { 112 "id": "test-request-id", 113 "seatbid": [ 114 { 115 "seat": "appnexus", 116 "bid": [ 117 { 118 "id": "apn-bid", 119 "impid": "imp-id", 120 "price": 0.3, 121 "w": 200, 122 "h": 250, 123 "crid": "creative-1", 124 "ext": { 125 "origbidcpm": 0.3, 126 "prebid": { 127 "meta": { 128 }, 129 "type": "video" 130 } 131 } 132 } 133 ] 134 } 135 ] 136 } 137 } 138 }