github.com/prebid/prebid-server@v0.275.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        },
    96        "mockResponse": {
    97          "status": 200,
    98          "body": {
    99            "id": "test-request-id",
   100            "bids": [
   101              {
   102                "id": "8923356982838-09",
   103                "bidId": "3",
   104                "cpm": 2,
   105                "width": 468,
   106                "height": 60,
   107                "ad": "advert",
   108                "crid": "wasd"
   109              }
   110            ]
   111          }
   112        }
   113      }
   114    ],
   115    "expectedBidResponses": [
   116      {
   117        "currency": "EUR",
   118        "bids" : [{
   119          "bid": {
   120            "id": "8923356982838-09",
   121            "impid": "3",
   122            "price": 2,
   123            "adm": "advert",
   124            "w": 468,
   125            "h": 60,
   126            "crid": "wasd"
   127          },
   128          "type": "banner"
   129        }]
   130      }
   131    ]
   132  }