github.com/prebid/prebid-server@v0.275.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          },
    65          "mockResponse": {
    66              "status": 200,
    67              "body": {
    68                  "id": "response-id",
    69                  "seatbid": [{
    70                      "bid": [{
    71                          "id": "video-1-bid",
    72                          "impid": "video-1",
    73                          "price": 3.5,
    74                          "adm": "<vast>Creative</vast>",
    75                          "adomain": [
    76                              "advertiser.com"
    77                          ],
    78                          "crid": "20",
    79                          "w": 300,
    80                          "h": 250
    81                      }],
    82                      "seat": "pulsepoint-seat"
    83                  }],
    84                  "cur": "USD"
    85              }
    86          }
    87      }],
    88      "expectedBidResponses": [{
    89          "bids": [{
    90              "bid": {
    91                  "id": "video-1-bid",
    92                  "impid": "video-1",
    93                  "price": 3.5,
    94                  "adm": "<vast>Creative</vast>",
    95                  "adomain": [
    96                      "advertiser.com"
    97                  ],
    98                  "crid": "20",
    99                  "w": 300,
   100                  "h": 250
   101              },
   102              "type": "video"
   103          }]
   104      }]
   105  }