github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/valid-whole/exemplary/user-ext-eids-empty.json (about) 1 { 2 "description": "Bid request with empty eids array in user.ext", 3 "mockBidRequest": { 4 "id": "anyRequestID", 5 "site": { 6 "page": "prebid.org", 7 "publisher": { 8 "id": "anyPublisher" 9 } 10 }, 11 "imp": [ 12 { 13 "id": "anyImpID", 14 "ext": { 15 "appnexus": { 16 "placementId": 42 17 } 18 }, 19 "banner": { 20 "format": [ 21 { 22 "w": 300, 23 "h": 250 24 }, 25 { 26 "w": 300, 27 "h": 600 28 } 29 ] 30 } 31 } 32 ], 33 "tmax": 1000, 34 "user": { 35 "ext": { 36 "eids": [] 37 } 38 } 39 }, 40 "expectedBidResponse": { 41 "id": "anyRequestID", 42 "seatbid": [ 43 { 44 "bid": [ 45 { 46 "id": "appnexus-bid", 47 "impid": "anyImpID", 48 "price": 0 49 } 50 ], 51 "seat": "appnexus" 52 } 53 ], 54 "bidid": "test bid id", 55 "cur": "USD", 56 "nbr": 0 57 }, 58 "expectedReturnCode": 200 59 }