github.com/prebid/prebid-server@v0.275.0/adapters/trafficgate/trafficgatetest/exemplary/simple-audio.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "device": {
     5        "ip": "123.123.123.123",
     6        "ifa": "zxcjbzxmc-zxcbmz-zxbcz-zxczx"
     7      },
     8      "app": {
     9        "id": "1",
    10        "bundle": "com.wls.testwlsapplication"
    11      },
    12      "imp": [
    13        {
    14          "id": "test-imp-id",
    15          "audio": {
    16            "mimes": ["audio/mp4"]
    17          },
    18          "ext": {
    19            "bidder": {
    20              "placementId": "3",
    21              "host": "example"
    22            }
    23          }
    24        }
    25      ]
    26    },
    27  
    28    "httpCalls": [
    29      {
    30        "expectedRequest": {
    31          "uri": "http://example.bc-plugin.com/?c=o&m=rtb",
    32          "body": {
    33            "id": "test-request-id",
    34            "device": {
    35              "ip": "123.123.123.123",
    36              "ifa": "zxcjbzxmc-zxcbmz-zxbcz-zxczx"
    37            },
    38            "app": {
    39              "id": "1",
    40              "bundle": "com.wls.testwlsapplication"
    41            },
    42            "imp": [
    43              {
    44                "id": "test-imp-id",
    45                "audio": {
    46                  "mimes": ["audio/mp4"]
    47                },
    48                "ext": {
    49                  "bidder": {
    50                    "placementId": "3",
    51                    "host": "example"
    52                  }
    53                }
    54              }
    55            ]
    56          }
    57        },
    58        "mockResponse": {
    59          "status": 200,
    60          "body": {
    61            "id": "test-request-id",
    62            "seatbid": [
    63            {
    64              "bid": [
    65                {
    66                  "id": "test_bid_id",
    67                  "impid": "test-imp-id",
    68                  "price": 0.27543,
    69                  "adm": "<VAST version=\"4.1\"></VAST>",
    70                  "cid": "test_cid",
    71                  "crid": "test_crid",
    72                  "dealid": "test_dealid",
    73                  "ext": {
    74                    "prebid": {
    75                      "type": "audio"
    76                    }
    77                  }
    78                }
    79              ]
    80            }
    81            ],
    82            "cur": "USD"
    83          }
    84        }
    85      }
    86    ],
    87    "expectedBidResponses": [
    88      {
    89        "bids": [
    90          {
    91            "bid": {
    92              "id": "test_bid_id",
    93              "impid": "test-imp-id",
    94              "price": 0.27543,
    95              "adm": "<VAST version=\"4.1\"></VAST>",
    96              "cid": "test_cid",
    97              "crid": "test_crid",
    98              "dealid": "test_dealid",
    99              "ext": {
   100                "prebid": {
   101                  "type": "audio"
   102                }
   103              }
   104            },
   105            "type": "audio"
   106          }
   107        ],
   108        "currency": "USD"
   109      }
   110    ]
   111  }