github.com/prebid/prebid-server/v2@v2.18.0/adapters/smrtconnect/smrtconnecttest/exemplary/video-app.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123",
     7        "language": "en",
     8        "dnt": 0
     9      },
    10      "tmax": 1000,
    11      "user": {
    12        "buyeruid": "awesome-user"
    13      },
    14      "app": {
    15        "publisher": {
    16          "id": "123456789"
    17        },
    18        "cat": [
    19          "IAB22-1"
    20        ],
    21        "bundle": "com.app.awesome",
    22        "name": "Awesome App",
    23        "domain": "awesomeapp.com",
    24        "id": "123456789"
    25      },
    26      "imp": [
    27        {
    28          "id": "some-impression-id",
    29          "tagid": "ogTAGID",
    30          "video": {
    31            "mimes": [
    32              "video/mp4"
    33            ],
    34            "w": 640,
    35            "h": 480,
    36            "minduration": 120,
    37            "maxduration": 150
    38          },
    39          "ext": {
    40            "bidder": {
    41              "supply_id": "1"
    42            }
    43          }
    44        }
    45      ]
    46    },
    47    "httpCalls": [
    48      {
    49        "expectedRequest": {
    50          "uri": "http://test.smrtconnect.com/openrtb2/auction?supply_id=1",
    51          "body": {
    52            "id": "some-request-id",
    53            "device": {
    54              "ua": "test-user-agent",
    55              "ip": "123.123.123.123",
    56              "language": "en",
    57              "dnt": 0
    58            },
    59            "imp": [
    60              {
    61                "id": "some-impression-id",
    62                "video": {
    63                  "mimes": [
    64                    "video/mp4"
    65                  ],
    66                  "minduration": 120,
    67                  "maxduration": 150,
    68                  "w": 640,
    69                  "h": 480
    70                },
    71                "tagid": "ogTAGID"
    72              }
    73            ],
    74            "app": {
    75              "id": "123456789",
    76              "name": "Awesome App",
    77              "bundle": "com.app.awesome",
    78              "domain": "awesomeapp.com",
    79              "cat": [
    80                "IAB22-1"
    81              ],
    82              "publisher": {
    83                "id": "123456789"
    84              }
    85            },
    86            "user": {
    87              "buyeruid": "awesome-user"
    88            },
    89            "tmax": 1000
    90          },
    91          "impIDs":["some-impression-id"]
    92        },
    93        "mockResponse": {
    94          "status": 200,
    95          "body": {
    96            "id": "awesome-resp-id",
    97            "seatbid": [
    98              {
    99                "bid": [
   100                  {
   101                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   102                    "impid": "some-impression-id",
   103                    "price": 3.5,
   104                    "adm": "awesome-markup",
   105                    "adomain": [
   106                      "awesome.com"
   107                    ],
   108                    "crid": "20",
   109                    "w": 1280,
   110                    "h": 720,
   111                    "mtype": 2
   112                  }
   113                ],
   114                "seat": "smrtconnect"
   115              }
   116            ],
   117            "cur": "USD",
   118            "ext": {
   119              "responsetimemillis": {
   120                "smrtconnect": 154
   121              },
   122              "tmaxrequest": 1000
   123            }
   124          }
   125        }
   126      }
   127    ],
   128    "expectedBidResponses": [
   129      {
   130        "bids":[
   131          {
   132            "bid":  {
   133              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   134              "impid": "some-impression-id",
   135              "price": 3.5,
   136              "adm": "awesome-markup",
   137              "crid": "20",
   138              "adomain": [
   139                "awesome.com"
   140              ],
   141              "w": 1280,
   142              "h": 720,
   143              "mtype": 2
   144            },
   145            "type": "video"
   146          }
   147        ]
   148      }
   149    ]
   150  }