github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/invalid-whole/bid-adj-factors-case-invalid-same-bidder-names.json (about)

     1  {
     2      "description": "This demonstrates a request with bidadjustmentfactors that have multiple of the same bidder is invalid request",
     3      "config": {
     4          "mockBidders": [
     5              {
     6                  "bidderName": "appnexus",
     7                  "currency": "USD",
     8                  "price": 1.00
     9              }
    10          ]
    11      },
    12      "mockBidRequest": {
    13          "id": "some-request-id",
    14          "site": {
    15              "page": "prebid.org"
    16          },
    17          "user": {
    18              "ext": {
    19                  "consent": "gdpr-consent-string"
    20              }
    21          },
    22          "regs": {
    23              "ext": {
    24                  "gdpr": 1,
    25                  "us_privacy": "1NYN"
    26              }
    27          },
    28          "imp": [
    29              {
    30                  "id": "some-impression-id",
    31                  "banner": {
    32                      "format": [
    33                          {
    34                              "w": 300,
    35                              "h": 250
    36                          },
    37                          {
    38                              "w": 300,
    39                              "h": 600
    40                          }
    41                      ]
    42                  },
    43                  "ext": {
    44                      "Appnexus": {
    45                          "placementId": 12883451
    46                      }
    47                  }
    48              }
    49          ],
    50          "tmax": 500,
    51          "ext": {
    52              "prebid": {
    53                  "bidadjustmentfactors": {
    54                      "APPNEXUS": 1.01,
    55                      "Appnexus": 2.00
    56                  },
    57                  "cache": {
    58                      "bids": {}
    59                  },
    60                  "channel": {
    61                      "name": "video",
    62                      "version": "1.0"
    63                  },
    64                  "targeting": {
    65                      "includewinners": false,
    66                      "pricegranularity": {
    67                          "precision": 2,
    68                          "ranges": [
    69                              {
    70                                  "max": 20,
    71                                  "increment": 0.10
    72                              }
    73                          ]
    74                      }
    75                  }
    76              }
    77          }
    78      },
    79      "expectedReturnCode": 400,
    80      "expectedErrorMessage": "Invalid request: cannot have multiple bidders that differ only in case style"
    81  }