github.com/prebid/prebid-server@v0.275.0/endpoints/openrtb2/sample-requests/currency-conversion/server-rates/valid/simple-conversion.json (about)

     1  {
     2    "description": "bid request calls for a bid in foreign currency but mockbidder bids in USD. Conversion rate is applied",
     3    "config": {
     4      "currencyRates":{
     5        "USD": {
     6          "MXN": 2.00
     7        }
     8      },
     9      "mockBidders": [
    10        {"bidderName": "appnexus", "currency": "USD", "price": 1.00}
    11      ]
    12    },
    13    "mockBidRequest": {
    14      "id": "some-request-id",
    15      "site": {
    16        "page": "test.somepage.com"
    17      },
    18      "cur": ["MXN"],
    19      "imp": [
    20        {
    21          "id": "my-imp-id",
    22          "video": {
    23            "mimes": [
    24              "video/mp4"
    25            ]
    26          },
    27          "ext": {
    28            "appnexus": {
    29              "placementId": 12883451
    30            }
    31          }
    32        }
    33      ]
    34    },
    35    "expectedBidResponse": {
    36        "id":"some-request-id",
    37        "bidid":"test bid id",
    38        "cur": "MXN",
    39        "nbr":0,
    40        "seatbid": [
    41          {
    42            "bid": [
    43              {
    44                "id": "appnexus-bid",
    45                "impid": "my-imp-id",
    46                "price": 2.00
    47              }
    48            ],
    49            "seat": "appnexus"
    50          }
    51        ]
    52    },
    53    "expectedReturnCode": 200
    54  }