github.com/prebid/prebid-server/v2@v2.18.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          "impIDs":["testimpid"]
    43        },
    44        "mockResponse": {
    45          "status": 200,
    46          "body": {
    47            "seatbid": [
    48              {
    49                "bid": [
    50                  {
    51                    "crid": "24080",
    52                     "adid": "2068416",
    53                    "price": 0.01,
    54                    "id": "testid",
    55                    "impid": "testimpid",
    56                    "cid": "8048"
    57                  }
    58                ]
    59              }
    60            ]
    61          }
    62        }
    63      }
    64    ],
    65  
    66    "expectedBidResponses": [
    67      {
    68        "currency": "USD",
    69        "bids": [
    70          {
    71            "bid": {
    72              "crid": "24080",
    73             "adid": "2068416",
    74              "price": 0.01,
    75              "id": "testid",
    76              "impid": "testimpid",
    77              "cid": "8048"
    78            },
    79            "type": "video"
    80          }
    81        ]
    82      }
    83    ]
    84  }