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