github.com/prebid/prebid-server@v0.275.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        },
    63        "mockResponse": {
    64          "status": 200,
    65          "body": {
    66            "id": "test-request-id",
    67            "seatbid": [
    68              {
    69                "seat": "adxcg",
    70                "bid": [
    71                  {
    72                    "id": "test-request-video-id",
    73                    "impid": "test-imp-video-id",
    74                    "price": 1.16,
    75                    "adm": "some-test-ad",
    76                    "w": 300,
    77                    "h": 250,
    78                    "mtype":2
    79                  }
    80                ]
    81              }
    82            ],
    83            "cur": "USD"
    84          }
    85        }
    86      }
    87    ],
    88    "expectedBidResponses": [
    89      {
    90        "currency": "USD",
    91        "bids": [
    92          {
    93            "bid": {
    94              "id": "test-request-video-id",
    95              "impid": "test-imp-video-id",
    96              "price": 1.16,
    97              "adm": "some-test-ad",
    98              "w": 300,
    99              "h": 250,
   100              "mtype":2
   101            },
   102            "type": "video"
   103          }
   104        ]
   105      }
   106    ]
   107  }