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

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-video-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-video-id",
     7          "video": {
     8            "w": 300,
     9            "h": 250,
    10            "maxduration": 60,
    11            "minduration": 1,
    12            "api": [
    13              1,
    14              2,
    15              5,
    16              6,
    17              7
    18            ],
    19            "mimes": [
    20              "video\/mp4"
    21            ],
    22            "placement": 4,
    23            "protocols": [
    24              2
    25            ]
    26          }
    27        }
    28      ]
    29    },
    30    "httpCalls": [
    31      {
    32        "expectedRequest": {
    33          "uri": "http://localhost/prebid_server",
    34          "body": {
    35            "id": "test-request-video-id",
    36            "imp": [
    37              {
    38                "id": "test-imp-video-id",
    39                "video": {
    40                  "w": 300,
    41                  "h": 250,
    42                  "maxduration": 60,
    43                  "minduration": 1,
    44                  "api": [
    45                    1,
    46                    2,
    47                    5,
    48                    6,
    49                    7
    50                  ],
    51                  "mimes": [
    52                    "video\/mp4"
    53                  ],
    54                  "placement": 4,
    55                  "protocols": [
    56                    2
    57                  ]
    58                }
    59              }
    60            ]
    61          },
    62          "impIDs":["test-imp-video-id"]
    63        },
    64        "mockResponse": {
    65          "status": 200,
    66          "body": {
    67            "id": "test-request-id",
    68            "seatbid": [
    69              {
    70                "seat": "adxcg",
    71                "bid": [
    72                  {
    73                    "id": "test-request-video-id",
    74                    "impid": "test-imp-video-id",
    75                    "price": 1.16,
    76                    "adm": "some-test-ad",
    77                    "w": 300,
    78                    "h": 250,
    79                    "mtype":2
    80                  }
    81                ]
    82              }
    83            ],
    84            "cur": "USD"
    85          }
    86        }
    87      }
    88    ],
    89    "expectedBidResponses": [
    90      {
    91        "currency": "USD",
    92        "bids": [
    93          {
    94            "bid": {
    95              "id": "test-request-video-id",
    96              "impid": "test-imp-video-id",
    97              "price": 1.16,
    98              "adm": "some-test-ad",
    99              "w": 300,
   100              "h": 250,
   101              "mtype":2
   102            },
   103            "type": "video"
   104          }
   105        ]
   106      }
   107    ]
   108  }