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