github.com/prebid/prebid-server/v2@v2.18.0/adapters/pulsepoint/pulsepointtest/exemplary/video.json (about)

     1  {
     2      "mockBidRequest": {
     3          "id": "some-request-id",
     4          "site": {
     5              "page": "http://publisher.com/index.html",
     6              "publisher": {
     7                  "id": "123456789",
     8                  "name": "publisher.com"
     9              }
    10          },
    11          "imp": [{
    12              "id": "video-1",
    13              "video": {
    14                  "w": 400,
    15                  "h": 300,
    16                  "mimes": ["video/x-flv"],
    17                  "minduration": 20
    18              },
    19              "ext": {
    20                  "bidder": {
    21                      "cp": 1234,
    22                      "ct": 2001
    23                  }
    24              }
    25          }]
    26      },
    27      "httpCalls": [{
    28          "expectedRequest": {
    29              "headers": {
    30                  "Content-Type": [
    31                      "application/json;charset=utf-8"
    32                  ],
    33                  "Accept": [
    34                      "application/json"
    35                  ]
    36              },
    37              "uri": "http://bidder.pulsepoint.com",
    38              "body": {
    39                  "id": "some-request-id",
    40                  "site": {
    41                      "page": "http://publisher.com/index.html",
    42                      "publisher": {
    43                          "id": "1234",
    44                          "name": "publisher.com"
    45                      }
    46                  },
    47                  "imp": [{
    48                      "id": "video-1",
    49                      "tagid": "2001",
    50                      "video": {
    51                          "w": 400,
    52                          "h": 300,
    53                          "mimes": ["video/x-flv"],
    54                          "minduration": 20
    55                      },
    56                      "ext": {
    57                          "bidder": {
    58                              "cp": 1234,
    59                              "ct": 2001
    60                          }
    61                      }
    62                  }]
    63              },
    64              "impIDs":["video-1"]
    65          },
    66          "mockResponse": {
    67              "status": 200,
    68              "body": {
    69                  "id": "response-id",
    70                  "seatbid": [{
    71                      "bid": [{
    72                          "id": "video-1-bid",
    73                          "impid": "video-1",
    74                          "price": 3.5,
    75                          "adm": "<vast>Creative</vast>",
    76                          "adomain": [
    77                              "advertiser.com"
    78                          ],
    79                          "crid": "20",
    80                          "w": 300,
    81                          "h": 250
    82                      }],
    83                      "seat": "pulsepoint-seat"
    84                  }],
    85                  "cur": "USD"
    86              }
    87          }
    88      }],
    89      "expectedBidResponses": [{
    90          "bids": [{
    91              "bid": {
    92                  "id": "video-1-bid",
    93                  "impid": "video-1",
    94                  "price": 3.5,
    95                  "adm": "<vast>Creative</vast>",
    96                  "adomain": [
    97                      "advertiser.com"
    98                  ],
    99                  "crid": "20",
   100                  "w": 300,
   101                  "h": 250
   102              },
   103              "type": "video"
   104          }]
   105      }]
   106  }