github.com/prebid/prebid-server/v2@v2.18.0/adapters/stroeerCore/stroeercoretest/exemplary/site-banner-single.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      "device": {
    28        "ua": "test-user-agent",
    29        "ip": "123.123.123.123",
    30        "language": "en",
    31        "dnt": 0
    32      },
    33      "site": {
    34        "domain": "www.publisher.com",
    35        "page": "http://www.publisher.com/some/path",
    36        "ext": {
    37          "amp": 0
    38        }
    39      },
    40      "user": {
    41        "buyeruid": "test-buyer-user-id"
    42      }
    43    },
    44    "httpCalls": [
    45      {
    46        "expectedRequest": {
    47          "headers": {
    48            "Accept": ["application/json"],
    49            "Content-Type": ["application/json;charset=utf-8"]
    50          },
    51          "uri": "http://localhost/s2sdsh",
    52          "body": {
    53            "id": "auction-id",
    54            "cur": ["EUR"],
    55            "imp": [
    56              {
    57                "id": "3",
    58                "tagid": "123456",
    59                "banner": {
    60                  "format": [
    61                    {
    62                      "w": 468,
    63                      "h": 60
    64                    },
    65                    {
    66                      "w": 300,
    67                      "h": 600
    68                    }
    69                  ]
    70                },
    71                "ext": {
    72                  "bidder": {
    73                    "sid": "123456"
    74                  }
    75                }
    76              }
    77            ],
    78            "device": {
    79              "ua": "test-user-agent",
    80              "ip": "123.123.123.123",
    81              "language": "en",
    82              "dnt": 0
    83            },
    84            "site": {
    85              "domain": "www.publisher.com",
    86              "page": "http://www.publisher.com/some/path",
    87              "ext": {
    88                "amp": 0
    89              }
    90            },
    91            "user": {
    92              "buyeruid": "test-buyer-user-id"
    93            }
    94          },
    95          "impIDs":["3"]
    96        },
    97        "mockResponse": {
    98          "status": 200,
    99          "body": {
   100            "id": "test-request-id",
   101            "bids": [
   102              {
   103                "id": "8923356982838-09",
   104                "bidId": "3",
   105                "cpm": 2,
   106                "width": 468,
   107                "height": 60,
   108                "ad": "advert",
   109                "crid": "wasd",
   110                "mtype": "banner"
   111              }
   112            ]
   113          }
   114        }
   115      }
   116    ],
   117    "expectedBidResponses": [
   118      {
   119        "currency": "EUR",
   120        "bids" : [{
   121          "bid": {
   122            "id": "8923356982838-09",
   123            "impid": "3",
   124            "price": 2,
   125            "adm": "advert",
   126            "w": 468,
   127            "h": 60,
   128            "crid": "wasd",
   129            "mtype": 1
   130          },
   131          "type": "banner"
   132        }]
   133      }
   134    ]
   135  }