{
  "description": "Bid Adjustment Test With One Adjustment",
  "config": {
    "mockBidders": [
      {
        "bidderName": "appnexus",
        "currency": "USD",
        "price": 2.00,
        "dealid": "some-deal-id"
      }
    ]
  },
  "mockBidRequest": {
    "id": "some-request-id",
    "site": {
      "page": "prebid.org"
    },
    "imp": [
      {
        "id": "some-impression-id",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            },
            {
              "w": 300,
              "h": 600
            }
          ]
        },
        "ext": {
          "appnexus": {
            "placementId": 12883451
          }
        }
      }
    ],
    "tmax": 500,
    "ext": {
      "prebid": {
        "bidadjustments": {
          "mediatype": {
            "banner": {
              "appnexus": {
                "some-deal-id": [
                  {
                    "adjtype": "multiplier",
                    "value": 2.0
                  }
                ]
              }
            }
          }
        }
      }
    }
  },
  "expectedBidResponse": {
    "id": "some-request-id",
    "seatbid": [
      {
        "bid": [
          {
            "id": "appnexus-bid",
            "impid": "some-impression-id",
            "price": 4.0,
            "ext": {
              "origbidcpm": 2,
              "origbidcur": "USD",
              "prebid": {
                "meta": {
                  "adaptercode": "appnexus"
                },
                "type": "banner"
              }
            }
          }
        ],
        "seat": "appnexus"
      }
    ],
    "bidid": "test bid id",
    "cur": "USD",
    "nbr": 0
  },
  "expectedReturnCode": 200
}