github.com/prebid/prebid-server@v0.275.0/endpoints/openrtb2/sample-requests/invalid-stored/bad_incoming_imp.json (about)

     1  {
     2    "description": "Otherwise valid request but without comma after first width field in first imp to yield invalid JSON, using stored imp request",
     3    
     4    "mockBidRequest": {
     5      "id": "some-request-id",
     6      "site": {
     7        "page": "prebid.org"
     8      },
     9      "imp": [
    10        {
    11          "id": "some-impression-id",
    12          "banner": {
    13            "format": [
    14              {
    15                "w": 300
    16                "h": 250
    17              },
    18              {
    19                "w": 300,
    20                "h": 600
    21              }
    22            ]
    23          },
    24          "ext": {
    25            "rubicon": {
    26              "siteId": 113910,
    27              "zoneId": 434410
    28            }
    29            "prebid": {
    30              "storedrequest": {
    31                "id": "3"
    32              }
    33            }
    34          }
    35        }
    36      ],
    37      "tmax": 500
    38    },
    39    "expectedReturnCode": 400,
    40    "expectedErrorMessage": "Invalid request: Invalid JSON in Imp[0] of Incoming Request: invalid character '\"' after object key:value pair at offset 132\n"
    41  }