github.com/prebid/prebid-server@v0.275.0/adapters/vrtcal/vrtcaltest/exemplary/simple-video.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "video": {
     8                  "mimes": ["video/mp4"],
     9                  "protocols": [2, 5],
    10                  "w": 300,
    11                  "h": 250
    12  	},
    13          "ext": {
    14            "bidder": {
    15              "Just_an_unused_vrtcal_param": "unused_data_for_this"
    16            }
    17          }
    18        }
    19      ],
    20      "app": {
    21        "id": "fake-app-id"
    22      }
    23    },
    24    "httpCalls": [
    25      {
    26        "expectedRequest": {
    27          "uri": "http://rtb.vrtcal.com/bidder_prebid.vap?ssp=1804",
    28          "body": {
    29            "id": "test-request-id",
    30            "imp": [
    31              {
    32                "id": "test-imp-id",
    33  	      "video": {
    34  		"mimes": ["video/mp4"],
    35  		"protocols": [2, 5],
    36  		"w": 300,
    37  		"h": 250
    38  	      },
    39  
    40  	      "ext": {
    41  		  "bidder": {
    42  		    "Just_an_unused_vrtcal_param": "unused_data_for_this"
    43  		  }
    44  	     }
    45              }
    46            ],
    47            "app": {
    48              "id": "fake-app-id"
    49            }
    50          }
    51        },
    52        "mockResponse": {
    53          "status": 200,
    54          "body": {
    55            "id": "test-request-id",
    56            "seatbid": [
    57              {
    58                "seat": "vrtcal",
    59                "bid": [
    60                  {
    61                    "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    62                    "impid": "test-imp-id",
    63                    "price": 0.500000,
    64                    "adm": "some-test-video-ad",
    65                    "crid": "crid_10",
    66                    "h": 250,
    67                    "w": 300,
    68  		  "mtype":2
    69                  }
    70                ]
    71              }
    72            ],
    73            "cur": "USD"
    74          }
    75        }
    76      }
    77    ],
    78    "expectedBidResponses": [
    79      {
    80        "currency": "USD",
    81        "bids": [
    82          {
    83            "bid": {
    84              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    85              "impid": "test-imp-id",
    86              "price": 0.5,
    87              "adm": "some-test-video-ad",
    88              "crid": "crid_10",
    89              "w": 300,
    90              "h": 250,
    91  	    "mtype":2
    92            },
    93            "type": "video"
    94          }
    95        ]
    96      }
    97    ]
    98  }