github.com/prebid/prebid-server/v2@v2.18.0/adapters/eplanning/eplanningtest/supplemental/banner-3-sizes-in-priority-list-desktop.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "device": {
     5        "devicetype": 2
     6      },
     7      "imp": [
     8        {
     9          "id": "test-imp-id",
    10          "banner": {
    11            "format": [
    12              {
    13                "w": 970,
    14                "h": 250
    15              },
    16              {
    17                "w": 300,
    18                "h": 600
    19              },
    20              {
    21                "w": 300,
    22                "h": 250
    23              }
    24            ]
    25          },
    26          "ext": {
    27            "bidder": {
    28              "ci": "12345"
    29            }
    30          }
    31        }
    32      ]
    33    },
    34  
    35    "httpCalls": [
    36      {
    37        "expectedRequest": {
    38          "uri": "http://rtb.e-planning.net/pbs/1/12345/1/FILE/ROS?e=300x250%3A300x250&ncb=1&ur=FILE",
    39          "body": {},
    40          "impIDs":["test-imp-id"]
    41        },
    42        "mockResponse": {
    43          "status": 200,
    44          "body": {
    45            "sI": { "k": "12345" },
    46            "sec": "ROS",
    47            "sp": [
    48              {
    49                "k": "300x250",
    50                "a": [{
    51                  "i": "123456789abcdef",
    52                  "pr": "0.5",
    53                  "adm": "<div>test</div>",
    54                  "crid": "abcdef123456789",
    55                  "id": "adid12345",
    56                  "w": 300,
    57                  "h": 250
    58                }]
    59              }
    60            ]
    61          }
    62        }
    63      }
    64    ],
    65  
    66    "expectedBidResponses": [
    67      {
    68        "currency": "USD",
    69        "bids": [
    70          {
    71            "bid": {
    72              "id": "123456789abcdef",
    73              "impid": "test-imp-id",
    74              "price": 0.5,
    75              "adm": "<div>test</div>",
    76              "adid": "adid12345",
    77              "crid": "abcdef123456789",
    78              "w": 300,
    79              "h": 250
    80            },
    81            "type": "banner"
    82          }
    83        ]
    84      }
    85    ]
    86  }