github.com/prebid/prebid-server/v2@v2.18.0/adapters/stroeerCore/stroeercoretest/exemplary/site-video-single.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "auction-id",
     4      "cur": ["EUR"],
     5      "imp": [
     6        {
     7          "id": "3",
     8          "video": {
     9            "mimes": ["video/mp4"],
    10            "w": 1024,
    11            "h": 576
    12          },
    13          "ext": {
    14            "bidder": {
    15              "sid": "123456"
    16            }
    17          }
    18        }
    19      ],
    20      "device": {
    21        "ua": "test-user-agent",
    22        "ip": "123.123.123.123",
    23        "language": "en",
    24        "dnt": 0
    25      },
    26      "site": {
    27        "domain": "www.publisher.com",
    28        "page": "http://www.publisher.com/some/path",
    29        "ext": {
    30          "amp": 0
    31        }
    32      },
    33      "user": {
    34        "buyeruid": "test-buyer-user-id"
    35      }
    36    },
    37    "httpCalls": [
    38      {
    39        "expectedRequest": {
    40          "headers": {
    41            "Accept": ["application/json"],
    42            "Content-Type": ["application/json;charset=utf-8"]
    43          },
    44          "uri": "http://localhost/s2sdsh",
    45          "body": {
    46            "id": "auction-id",
    47            "cur": ["EUR"],
    48            "imp": [
    49              {
    50                "id": "3",
    51                "tagid": "123456",
    52                "video": {
    53                  "mimes": ["video/mp4"],
    54                  "w": 1024,
    55                  "h": 576
    56                },
    57                "ext": {
    58                  "bidder": {
    59                    "sid": "123456"
    60                  }
    61                }
    62              }
    63            ],
    64            "device": {
    65              "ua": "test-user-agent",
    66              "ip": "123.123.123.123",
    67              "language": "en",
    68              "dnt": 0
    69            },
    70            "site": {
    71              "domain": "www.publisher.com",
    72              "page": "http://www.publisher.com/some/path",
    73              "ext": {
    74                "amp": 0
    75              }
    76            },
    77            "user": {
    78              "buyeruid": "test-buyer-user-id"
    79            }
    80          },
    81          "impIDs":["3"]
    82        },
    83        "mockResponse": {
    84          "status": 200,
    85          "body": {
    86            "id": "test-request-id",
    87            "bids": [
    88              {
    89                "id": "8923356982838-09",
    90                "bidId": "3",
    91                "cpm": 2,
    92                "ad": "<vast><div>video</div></vast>",
    93                "crid": "wasd",
    94                "mtype": "video"
    95              }
    96            ]
    97          }
    98        }
    99      }
   100    ],
   101    "expectedBidResponses": [
   102      {
   103        "currency": "EUR",
   104        "bids" : [{
   105          "bid": {
   106            "id": "8923356982838-09",
   107            "impid": "3",
   108            "price": 2,
   109            "adm": "<vast><div>video</div></vast>",
   110            "crid": "wasd",
   111            "mtype": 2
   112          },
   113          "type": "video"
   114        }]
   115      }
   116    ]
   117  }