github.com/prebid/prebid-server@v0.275.0/adapters/adf/adftest/exemplary/single-native.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [{
     5        "id": "test-imp-id",
     6        "ext": {
     7          "bidder": {
     8            "mid": "828782"
     9          }
    10        },
    11        "native": {
    12          "request": "{json string}",
    13          "ver": "1.2"
    14        }
    15      }],
    16      "site": {
    17        "publisher": {
    18          "id": "1"
    19        },
    20        "page": "some-page-url"
    21      },
    22      "device": {
    23        "w": 1920,
    24        "h": 800
    25      }
    26    },
    27    "httpCalls": [{
    28      "expectedRequest": {
    29        "uri": "https://adx.adform.net/adx/openrtb",
    30        "body": {
    31          "id": "test-request-id",
    32          "imp": [{
    33            "id": "test-imp-id",
    34            "ext": {
    35              "bidder": {
    36                "mid": "828782"
    37              }
    38            },
    39            "native": {
    40              "request": "{json string}",
    41              "ver": "1.2"
    42            },
    43            "tagid": "828782"
    44          }],
    45          "site": {
    46            "publisher": {
    47              "id": "1"
    48            },
    49            "page": "some-page-url"
    50          },
    51          "device": {
    52            "w": 1920,
    53            "h": 800
    54          }
    55        }
    56      },
    57      "mockResponse": {
    58        "status": 200,
    59        "body": {
    60          "id": "test-request-id",
    61          "seatbid": [{
    62            "bid": [{
    63              "id": "test-bid-id",
    64              "impid": "test-imp-id",
    65              "price": 10,
    66              "adm": "{json response string}",
    67              "adomain": [],
    68              "crid": "test-creative-id",
    69              "ext": {
    70                "prebid": {
    71                  "type": "native"
    72                }
    73              }
    74            }]
    75          }],
    76          "cur": "USD"
    77        }
    78      }
    79    }],
    80    "expectedBidResponses": [{
    81      "currency": "USD",
    82      "bids": [
    83        {
    84          "bid": {
    85            "id": "test-bid-id",
    86            "impid": "test-imp-id",
    87            "price": 10,
    88            "adm": "{json response string}",
    89            "crid": "test-creative-id",
    90            "ext": {
    91              "prebid": {
    92                "type": "native"
    93              }
    94            }
    95          },
    96          "type": "native"
    97        }
    98      ]
    99    }]
   100  }