github.com/prebid/prebid-server@v0.275.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        },
    58        "mockResponse": {
    59          "status": 200,
    60          "body": {
    61            "id": "test-request-id",
    62            "cur": "USD",
    63            "seatbid": [
    64              {
    65                "seat": "gamoshi",
    66                "bid": [{
    67                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    68                  "impid": "test-imp-video-id",
    69                  "price": 0.500000,
    70                  "adm": "some-test-ad",
    71                  "crid": "crid_10",
    72                  "w": 1024,
    73                  "h": 576
    74                }]
    75              }
    76            ]
    77          }
    78        }
    79      }
    80    ],
    81  
    82    "expectedBidResponses": [
    83      {
    84        "bids": [{
    85          "bid": {
    86            "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    87            "impid": "test-imp-video-id",
    88            "price": 0.5,
    89            "adm": "some-test-ad",
    90            "crid": "crid_10",
    91            "w": 1024,
    92            "h": 576
    93          },
    94          "type": "video"
    95        }]
    96      }
    97    ]
    98  }