github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/valid-whole/exemplary/bid-adj-factors-case-insensitive-different-casing.json (about)

     1  {
     2      "description": "This demonstrates bid adjustment factors with bidder names that have different casing in imp vs. in bidadjustmentfactors",
     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                  },
    56                  "cache": {
    57                      "bids": {}
    58                  },
    59                  "channel": {
    60                      "name": "video",
    61                      "version": "1.0"
    62                  },
    63                  "targeting": {
    64                      "includewinners": false,
    65                      "pricegranularity": {
    66                          "precision": 2,
    67                          "ranges": [
    68                              {
    69                                  "max": 20,
    70                                  "increment": 0.10
    71                              }
    72                          ]
    73                      }
    74                  }
    75              }
    76          }
    77      },
    78      "expectedBidResponse": {
    79          "id": "some-request-id",
    80          "seatbid": [
    81              {
    82                  "bid": [
    83                      {
    84                          "id": "appnexus-bid",
    85                          "impid": "some-impression-id",
    86                          "price": 1.01
    87                      }
    88                  ],
    89                  "seat": "Appnexus"
    90              }
    91          ],
    92          "bidid": "test bid id",
    93          "cur": "USD",
    94          "nbr": 0
    95      },
    96      "expectedReturnCode": 200
    97  }