github.com/prebid/prebid-server@v0.275.0/adapters/lunamedia/lunamediatest/exemplary/video.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "testid",
     4      "imp": [
     5        {
     6          "id": "testimpid",
     7          "video": {
     8              "mimes": [
     9                "video/mp4"
    10              ],
    11              "w": 640,
    12              "h": 480
    13            },
    14          "ext": {
    15            "bidder": {
    16              "pubid": "19f1b372c7548ec1fe734d2c9f8dc688",
    17              "placement": "dummyplacement"
    18            }
    19          }
    20        }
    21      ]
    22    },
    23    
    24    "httpCalls": [
    25      {
    26        "expectedRequest": {
    27          "uri": "http://rtb.lunamedia.live/?pid=19f1b372c7548ec1fe734d2c9f8dc688",
    28          "body":{
    29            "id": "testid",
    30            "imp": [{
    31              "id": "testimpid",
    32              "tagid": "dummyplacement",
    33              "video": {
    34                  "mimes": [
    35                    "video/mp4"
    36                  ],
    37                  "w": 640,
    38                  "h": 480
    39                }
    40            }]
    41          }
    42        },
    43        "mockResponse": {
    44          "status": 200,
    45          "body": {
    46            "seatbid": [
    47              {
    48                "bid": [
    49                  {
    50                    "crid": "24080",
    51                     "adid": "2068416",
    52                    "price": 0.01,
    53                    "id": "testid",
    54                    "impid": "testimpid",
    55                    "cid": "8048"
    56                  }
    57                ]
    58              }
    59            ]
    60          }
    61        }
    62      }
    63    ],
    64  
    65    "expectedBidResponses": [
    66      {
    67        "currency": "USD",
    68        "bids": [
    69          {
    70            "bid": {
    71              "crid": "24080",
    72             "adid": "2068416",
    73              "price": 0.01,
    74              "id": "testid",
    75              "impid": "testimpid",
    76              "cid": "8048"
    77            },
    78            "type": "video"
    79          }
    80        ]
    81      }
    82    ]
    83  }