github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/invalid-whole/device-geo-accuracy-negative.json (about) 1 { 2 "description": "Request has a negative device geography accuracy.", 3 "mockBidRequest": { 4 "id": "req-id", 5 "site": { 6 "id": "some-site" 7 }, 8 "device": { 9 "w": 50, 10 "h": 50, 11 "geo": { 12 "accuracy": -1 13 } 14 }, 15 "imp": [{ 16 "id": "imp-id", 17 "banner": { 18 "w": 50, 19 "h": 50 20 }, 21 "ext": { 22 "appnexus": { 23 "placementId": 12883451 24 } 25 } 26 }] 27 }, 28 "expectedReturnCode": 400, 29 "expectedErrorMessage": "Invalid request: request.device.geo.accuracy must be a positive number" 30 }