github.com/prebid/prebid-server/v2@v2.18.0/adapters/gamoshi/gamoshitest/exemplary/video-and-audio.json (about)

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