github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/valid-whole/supplementary/multi-bid-error.json (about)

     1  {
     2    "description": "Well formed amp request with valid Site field",
     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            "format": [
    13              {
    14                "w": 300,
    15                "h": 600
    16              }
    17            ]
    18          },
    19          "pmp": {
    20            "deals": [
    21              {
    22                "id": "some-deal-id"
    23              }
    24            ]
    25          },
    26          "ext": {
    27            "appnexus": {
    28              "placementId": 12883451
    29            }
    30          }
    31        }
    32      ],
    33      "ext": {
    34        "prebid": {
    35          "multibid": [
    36            {
    37              "bidder": "appnexus"
    38            },
    39            {
    40              "maxbids": -1,
    41              "bidder": "rubicon",
    42              "targetbiddercodeprefix": "rubN"
    43            },
    44            {
    45              "maxbids": 10,
    46              "bidder": "pubmatic",
    47              "targetbiddercodeprefix": "pm"
    48            },
    49            {
    50              "maxbids": 4,
    51              "bidder": "pubmatic",
    52              "targetbiddercodeprefix": "pubM"
    53            },
    54            {
    55              "maxbids": 5,
    56              "bidder": "groupm",
    57              "bidders": [
    58                "someBidder"
    59              ],
    60              "targetbiddercodeprefix": "gm"
    61            },
    62            {
    63              "maxbids": 6,
    64              "bidders": [
    65                "groupm"
    66              ]
    67            },
    68            {
    69              "maxbids": 7,
    70              "bidders": [
    71                "33across"
    72              ],
    73              "targetbiddercodeprefix": "abc"
    74            },
    75            {
    76              "maxbids": 8,
    77              "targetbiddercodeprefix": "xyz"
    78            }
    79          ]
    80        }
    81      }
    82    },
    83    "expectedReqExt": {
    84      "prebid": {
    85        "multibid": [
    86          {
    87            "maxbids": 1,
    88            "bidder": "rubicon",
    89            "targetbiddercodeprefix": "rubN"
    90          },
    91          {
    92            "maxbids": 9,
    93            "bidder": "pubmatic",
    94            "targetbiddercodeprefix": "pm"
    95          },
    96          {
    97            "maxbids": 5,
    98            "bidder": "groupm",
    99            "targetbiddercodeprefix": "gm"
   100          },
   101          {
   102            "maxbids": 7,
   103            "bidders": [
   104              "33across"
   105            ]
   106          }
   107        ]
   108      }
   109    },
   110    "expectedReturnCode": 200
   111  }