github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/invalid-whole/video-minbitrate-negative.json (about) 1 { 2 "description": "Request has a negative video min bitrate.", 3 4 "mockBidRequest": { 5 "id": "req-id", 6 "site": { 7 "page": "test.somepage.com" 8 }, 9 "imp": [{ 10 "id": "imp-id", 11 "video": { 12 "mimes": ["video/mp4"], 13 "minbitrate": -1 14 }, 15 "ext": { 16 "prebid": { 17 "bidder": { 18 "appnexus": { 19 "placementId": 12345 20 } 21 } 22 } 23 } 24 }] 25 }, 26 "expectedReturnCode": 400, 27 "expectedErrorMessage": "Invalid request: request.imp[0].video.minbitrate must be a positive number" 28 }