github.com/prebid/prebid-server@v0.275.0/adapters/stroeerCore/stroeercoretest/exemplary/site-banner-multi.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "auction-id",
     4      "cur": ["EUR"],
     5      "imp": [
     6        {
     7          "id": "3",
     8          "banner": {
     9            "format": [
    10              {
    11                "w": 468,
    12                "h": 60
    13              },
    14              {
    15                "w": 300,
    16                "h": 600
    17              }
    18            ]
    19          },
    20          "ext": {
    21            "bidder": {
    22              "sid": "123456"
    23            }
    24          }
    25        },
    26        {
    27          "id": "9",
    28          "banner": {
    29            "format": [
    30              {
    31                "w": 770,
    32                "h": 250
    33              }
    34            ]
    35          },
    36          "ext": {
    37            "bidder": {
    38              "sid": "85310"
    39            }
    40          }
    41        }
    42      ],
    43      "device": {
    44        "ua": "test-user-agent",
    45        "ip": "123.123.123.123",
    46        "language": "en",
    47        "dnt": 0
    48      },
    49      "site": {
    50        "domain": "www.publisher.com",
    51        "page": "http://www.publisher.com/some/path",
    52        "ext": {
    53          "amp": 1
    54        }
    55      },
    56      "user": {
    57        "buyeruid": "test-buyer-user-id"
    58      }
    59    },
    60    "httpCalls": [
    61      {
    62        "expectedRequest": {
    63          "headers": {
    64            "Accept": ["application/json"],
    65            "Content-Type": ["application/json;charset=utf-8"]
    66          },
    67          "uri": "http://localhost/s2sdsh",
    68          "body": {
    69            "id": "auction-id",
    70            "cur": ["EUR"],
    71            "imp": [
    72              {
    73                "id": "3",
    74                "tagid": "123456",
    75                "banner": {
    76                  "format": [
    77                    {
    78                      "w": 468,
    79                      "h": 60
    80                    },
    81                    {
    82                      "w": 300,
    83                      "h": 600
    84                    }
    85                  ]
    86                },
    87                "ext": {
    88                  "bidder": {
    89                    "sid": "123456"
    90                  }
    91                }
    92              },
    93              {
    94                "id": "9",
    95                "tagid": "85310",
    96                "banner": {
    97                  "format": [
    98                    {
    99                      "w": 770,
   100                      "h": 250
   101                    }
   102                  ]
   103                },
   104                "ext": {
   105                  "bidder": {
   106                    "sid": "85310"
   107                  }
   108                }
   109              }
   110            ],
   111            "device": {
   112              "ua": "test-user-agent",
   113              "ip": "123.123.123.123",
   114              "language": "en",
   115              "dnt": 0
   116            },
   117            "site": {
   118              "domain": "www.publisher.com",
   119              "page": "http://www.publisher.com/some/path",
   120              "ext": {
   121                "amp": 1
   122              }
   123            },
   124            "user": {
   125              "buyeruid": "test-buyer-user-id"
   126            }
   127          }
   128        },
   129        "mockResponse": {
   130          "status": 200,
   131          "body": {
   132            "id": "test-request-id",
   133            "bids": [
   134              {
   135                "id": "3929239282-01",
   136                "bidId": "3",
   137                "cpm": 2,
   138                "width": 468,
   139                "height": 60,
   140                "ad": "advert",
   141                "crid": "qwert"
   142              },
   143              {
   144                "id": "3929239282-02",
   145                "bidId": "9",
   146                "cpm": 7.21,
   147                "width": 770,
   148                "height": 250,
   149                "ad": "another advert",
   150                "crid": "wasd"
   151              }
   152            ]
   153          }
   154        }
   155      }
   156    ],
   157    "expectedBidResponses": [
   158      {
   159        "currency": "EUR",
   160        "bids": [
   161          {
   162            "bid": {
   163              "id": "3929239282-01",
   164              "impid": "3",
   165              "price": 2,
   166              "adm": "advert",
   167              "w": 468,
   168              "h": 60,
   169              "crid": "qwert"
   170            },
   171            "type": "banner"
   172          },
   173          {
   174            "bid": {
   175              "id": "3929239282-02",
   176              "impid": "9",
   177              "price": 7.21,
   178              "adm": "another advert",
   179              "w": 770,
   180              "h": 250,
   181              "crid": "wasd"
   182            },
   183            "type": "banner"
   184          }
   185        ]
   186      }
   187    ]
   188  }