github.com/prebid/prebid-server/v2@v2.18.0/adapters/openx/openxtest/exemplary/optional-params.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [{"w": 728, "h": 90}]
     9          },
    10          "ext": {
    11            "bidder": {
    12              "unit": "539439964",
    13              "delDomain": "se-demo-d.openx.net",
    14              "platform": "PLATFORM",
    15              "customFloor": 0.1,
    16              "customParams": {"foo": "bar"}
    17            }
    18          }
    19        },
    20        {
    21          "bidfloor": 0.5,
    22          "id": "test-imp-id",
    23          "banner": {
    24            "format": [{"w": 728, "h": 90}]
    25          },
    26          "ext": {
    27            "bidder": {
    28              "unit": "539439964",
    29              "delDomain": "se-demo-d.openx.net",
    30              "platform": "PLATFORM",
    31              "customFloor": 0.1
    32            }
    33          }
    34        }
    35      ]
    36    },
    37  
    38    "httpCalls": [
    39      {
    40        "expectedRequest": {
    41          "uri": "http://rtb.openx.net/prebid",
    42          "body": {
    43            "id": "test-request-id",
    44            "imp": [
    45              {
    46                "id":"test-imp-id",
    47                "banner": {
    48                  "format": [{"w": 728, "h": 90}]
    49                },
    50                "tagid": "539439964",
    51                "bidfloor": 0.1,
    52                "ext": {
    53                  "customParams": {"foo": "bar"}
    54                }
    55              },
    56              {
    57                "id":"test-imp-id",
    58                "banner": {
    59                  "format": [{"w": 728, "h": 90}]
    60                },
    61                "tagid": "539439964",
    62                "bidfloor": 0.5
    63              }
    64            ],
    65            "ext": {
    66              "bc": "hb_pbs_1.0.0",
    67              "delDomain": "se-demo-d.openx.net",
    68              "platform": "PLATFORM"
    69            }
    70          },
    71          "impIDs":["test-imp-id","test-imp-id"]
    72        },
    73        "mockResponse": {
    74          "status": 204
    75        }
    76      }
    77    ],
    78    "expectedBidResponses": []
    79  }