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

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