github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/invalid-whole/interstital-bad-perc.json (about) 1 { 2 "description": "Bid request's device field comes with a minwidthperc value greater than 100", 3 "mockBidRequest": { 4 "id": "some-request-id", 5 "site": { 6 "page": "test.somepage.com" 7 }, 8 "imp": [ 9 { 10 "id": "my-imp-id", 11 "banner": { 12 "id": "some-imp-id", 13 "format": [ 14 { 15 "w": 300, 16 "h": 600 17 } 18 ] 19 }, 20 "instl": 1, 21 "ext": { 22 "appnexus": { 23 "placementId": 12883451 24 } 25 } 26 } 27 ], 28 "device": { 29 "h": 640, 30 "w": 320, 31 "ext": { 32 "prebid": { 33 "interstitial": { 34 "minwidthperc": 120, 35 "minheightperc": 60 36 } 37 } 38 } 39 }, 40 "ext": { 41 "prebid": { 42 "targeting": { 43 "pricegranularity": "low" 44 }, 45 "cache": { 46 "bids": {} 47 } 48 } 49 } 50 }, 51 "expectedReturnCode": 400, 52 "expectedErrorMessage": "Invalid request: request.device.ext.prebid.interstitial.minwidthperc must be a number between 0 and 100" 53 }