github.com/prebid/prebid-server/v2@v2.18.0/adapters/mobilefuse/mobilefusetest/exemplary/simple-video.json (about)

     1  {
     2      "mockBidRequest": {
     3          "id": "test-request-id",
     4          "imp": [
     5              {
     6                  "id": "1",
     7                  "video": {
     8                      "mimes": [
     9                          "video/mp4"
    10                      ],
    11                      "protocols": [
    12                          2,
    13                          5
    14                      ],
    15                      "w": 320,
    16                      "h": 480
    17                  },
    18                  "ext": {
    19                      "bidder": {
    20                          "placement_id": 200000,
    21                          "pub_id": 2000
    22                      }
    23                  }
    24              }
    25          ]
    26      },
    27      "httpCalls": [
    28          {
    29              "expectedRequest": {
    30                  "uri": "http://mfx.mobilefuse.com/openrtb?pub_id=2000",
    31                  "body": {
    32                      "id": "test-request-id",
    33                      "imp": [
    34                          {
    35                              "id": "1",
    36                              "video": {
    37                                  "mimes": [
    38                                      "video/mp4"
    39                                  ],
    40                                  "protocols": [
    41                                      2,
    42                                      5
    43                                  ],
    44                                  "w": 320,
    45                                  "h": 480
    46                              },
    47                              "tagid": "200000"
    48                          }
    49                      ]
    50                  },
    51                  "impIDs":["1"]
    52              },
    53              "mockResponse": {
    54                  "status": 200,
    55                  "body": {
    56                      "id": "test-request-id",
    57                      "cur": "USD",
    58                      "seatbid": [
    59                          {
    60                              "seat": "mobilefuse",
    61                              "bid": [
    62                                  {
    63                                      "id": "test-bid-id",
    64                                      "impid": "1",
    65                                      "price": 2.50,
    66                                      "adm": "some-test-ad",
    67                                      "crid": "test-crid",
    68                                      "w": 320,
    69                                      "h": 480,
    70                                      "ext": {
    71                                          "mf": {
    72                                              "media_type": "video"
    73                                          }
    74                                      }
    75                                  }
    76                              ]
    77                          }
    78                      ]
    79                  }
    80              }
    81          }
    82      ],
    83      "expectedBidResponses": [
    84          {
    85              "currency": "USD",
    86              "bids": [
    87                  {
    88                      "bid": {
    89                          "id": "test-bid-id",
    90                          "impid": "1",
    91                          "price": 2.50,
    92                          "adm": "some-test-ad",
    93                          "crid": "test-crid",
    94                          "w": 320,
    95                          "h": 480
    96                      },
    97                      "type": "video"
    98                  }
    99              ]
   100          }
   101      ]
   102  }