github.com/prebid/prebid-server@v0.275.0/endpoints/openrtb2/sample-requests/invalid-whole/banner-h-only.json (about)

     1  {
     2    "description": "Request invalid because banner is missing width value",
     3    "mockBidRequest": {
     4      "id":"req-id",
     5      "site": {
     6        "id": "some-site"
     7      },
     8      "imp": [
     9        {
    10          "id":"imp-id",
    11          "banner":{
    12            "h": 300
    13          },
    14          "ext": {
    15            "appnexus": {
    16              "placementId": 12883451
    17            }
    18          }
    19        }
    20      ]
    21    },
    22    "expectedReturnCode": 400,
    23    "expectedErrorMessage": "Invalid request: request.imp[0].banner has no sizes. Define \"w\" and \"h\", or include \"format\" elements.\n"
    24  }