github.com/prebid/prebid-server@v0.275.0/adapters/eplanning/eplanningtest/supplemental/banner-4-sizes-in-priority-list-desktop.json (about)

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