github.com/prebid/prebid-server@v0.275.0/adapters/gamoshi/gamoshitest/exemplary/simple-video.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "video": {
     8            "mimes": ["video/mp4"],
     9            "protocols": [2, 5],
    10            "w": 1024,
    11            "h": 576
    12          },
    13          "ext":{
    14            "bidder":{
    15              "supplyPartnerId": "1707"
    16            }
    17          }
    18        }
    19      ]
    20    },
    21  
    22    "httpCalls": [
    23      {
    24        "expectedRequest": {
    25          "uri": "https://rtb.gamoshi.io/r/1707/bidr?bidder=prebid-server",
    26          "body": {
    27            "id": "test-request-id",
    28            "imp": [
    29              {
    30                "id": "test-imp-id",
    31                "video": {
    32                  "mimes": ["video/mp4"],
    33                  "protocols": [2, 5],
    34                  "w": 1024,
    35                  "h": 576
    36                },
    37                "ext": {
    38                  "bidder": {
    39                    "supplyPartnerId": "1707"
    40                  }
    41                }
    42              }
    43            ]
    44          }
    45        },
    46        "mockResponse": {
    47          "status": 200,
    48          "body": {
    49            "id": "test-request-id",
    50            "cur": "USD",
    51            "seatbid": [
    52              {
    53                "seat": "Gamoshi",
    54                "bid": [{
    55                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    56                  "impid": "test-imp-id",
    57                  "price": 0.500000,
    58                  "adm": "some-test-ad",
    59                  "crid": "crid_10",
    60                  "w": 1024,
    61                  "h": 576
    62                }]
    63              }
    64            ]
    65          }
    66        }
    67      }
    68    ],
    69  
    70    "expectedBidResponses": [
    71      {
    72        "bids": [{
    73          "bid": {
    74            "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    75            "impid": "test-imp-id",
    76            "price": 0.5,
    77            "adm": "some-test-ad",
    78            "crid": "crid_10",
    79            "w": 1024,
    80            "h": 576
    81          },
    82          "type": "video"
    83        }]
    84      }
    85    ]
    86  }