github.com/prebid/prebid-server/v2@v2.18.0/adapters/apacdex/apacdextest/supplemental/wrong-bid-ext.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "video": {
     8            "w": 900,
     9            "h": 250,
    10            "mimes": [
    11              "video/x-flv",
    12              "video/mp4"
    13            ]
    14          },
    15          "ext": {
    16            "bidder": {
    17              "siteId": "123"
    18            }
    19          }
    20        }
    21      ]
    22    },
    23    "httpCalls": [
    24      {
    25        "expectedRequest": {
    26          "uri": "//host",
    27          "body": {
    28            "id": "test-request-id",
    29            "imp": [
    30              {
    31                "id": "test-imp-id",
    32                "video": {
    33                  "w": 900,
    34                  "h": 250,
    35                  "mimes": [
    36                    "video/x-flv",
    37                    "video/mp4"
    38                  ]
    39                },
    40                "ext": {
    41                  "siteId": "123"
    42                }
    43              }
    44            ]
    45          },
    46          "impIDs":["test-imp-id"]
    47        },
    48        "mockResponse": {
    49          "status": 200,
    50          "body": {
    51            "id": "test-request-id",
    52            "seatbid": [
    53              {
    54                "bid": [
    55                  {
    56                    "id": "test-bid-id",
    57                    "impid": "another-imp-id",
    58                    "price": 3.5,
    59                    "w": 900,
    60                    "h": 250,
    61                    "ext": {}
    62                  }
    63                ]
    64              }
    65            ]
    66          }
    67        }
    68      }
    69    ],
    70    "expectedBidResponses": [{"currency":"USD","bids":[]}],
    71    "expectedMakeBidsErrors": [
    72      {
    73        "value": "Failed to parse bid mediatype for impression \"another-imp-id\"",
    74        "comparison": "regex"
    75      }
    76    ]
    77  }