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