github.com/prebid/prebid-server@v0.275.0/adapters/yieldmo/yieldmotest/exemplary/app_video.json (about)

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