github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/valid-whole/exemplary/user-ext-eids-source-duplicate.json (about) 1 { 2 "description": "Bid request where more than one request.user.ext.eids array elements share the same source field value", 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 "source": "source1", 39 "uids": [ 40 { 41 "id": "A" 42 } 43 ] 44 }, 45 { 46 "source": "source1", 47 "uids": [ 48 { 49 "id": "B" 50 } 51 ] 52 } 53 ] 54 } 55 } 56 }, 57 "expectedBidResponse": { 58 "id": "anyRequestID", 59 "seatbid": [ 60 { 61 "bid": [ 62 { 63 "id": "appnexus-bid", 64 "impid": "anyImpID", 65 "price": 0 66 } 67 ], 68 "seat": "appnexus" 69 } 70 ], 71 "bidid": "test bid id", 72 "cur": "USD", 73 "nbr": 0 74 }, 75 "expectedReturnCode": 200 76 }