github.com/prebid/prebid-server/v2@v2.18.0/adapters/aso/asotest/exemplary/app-native.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "app": {
     5        "bundle": "com.prebid"
     6      },
     7      "device": {
     8        "ip":"127.0.0.1"
     9      },
    10      "imp": [
    11        {
    12          "id": "test-imp-id",
    13          "native": {
    14            "ver": "1.1",
    15            "request": "{\"ver\":\"1.0\",\"layout\":1,\"adunit\":1,\"plcmttype\":1,\"plcmtcnt\":1,\"seq\":0,\"assets\":[{\"id\":1,\"required\":1,\"title\":{\"len\":75}},{\"id\":2,\"required\":1,\"img\":{\"type\":3,\"wmin\":60,\"hmin\":60,\"mimes\":[\"image/jpeg\",\"image/jpg\",\"image/png\"]}},{\"id\":3,\"required\":0,\"data\":{\"type\":2,\"len\":75}},{\"id\":4,\"required\":0,\"data\":{\"type\":6,\"len\":1000}},{\"id\":5,\"required\":0,\"data\":{\"type\":7,\"len\":1000}},{\"id\":6,\"required\":0,\"data\":{\"type\":11,\"len\":1000}}]}"
    16          },
    17          "ext": {
    18            "bidder": {
    19              "zone": 123456
    20            }
    21          }
    22        }
    23      ]
    24    },
    25  
    26    "httpCalls": [
    27      {
    28        "expectedRequest": {
    29          "uri": "https://srv.aso1.net/pbs/bidder?zid=123456",
    30          "headers": {
    31            "Accept": [
    32              "application/json"
    33            ],
    34            "Content-Type": [
    35              "application/json;charset=utf-8"
    36            ]
    37          },
    38          "body": {
    39            "id": "test-request-id",
    40            "app": {
    41              "bundle": "com.prebid"
    42            },
    43            "device": {
    44              "ip":"127.0.0.1"
    45            },
    46            "imp": [
    47              {
    48                "id": "test-imp-id",
    49                "native": {
    50                  "ver": "1.1",
    51                  "request": "{\"ver\":\"1.0\",\"layout\":1,\"adunit\":1,\"plcmttype\":1,\"plcmtcnt\":1,\"seq\":0,\"assets\":[{\"id\":1,\"required\":1,\"title\":{\"len\":75}},{\"id\":2,\"required\":1,\"img\":{\"type\":3,\"wmin\":60,\"hmin\":60,\"mimes\":[\"image/jpeg\",\"image/jpg\",\"image/png\"]}},{\"id\":3,\"required\":0,\"data\":{\"type\":2,\"len\":75}},{\"id\":4,\"required\":0,\"data\":{\"type\":6,\"len\":1000}},{\"id\":5,\"required\":0,\"data\":{\"type\":7,\"len\":1000}},{\"id\":6,\"required\":0,\"data\":{\"type\":11,\"len\":1000}}]}"
    52                },
    53                "ext": {
    54                  "bidder": {
    55                    "zone": 123456
    56                  }
    57                }
    58              }
    59            ]
    60          },
    61          "impIDs":["test-imp-id"]
    62        },
    63        "mockResponse": {
    64          "status": 200,
    65          "body": {
    66            "id": "test-request-id",
    67            "seatbid": [
    68              {
    69                "seat": "seat",
    70                "bid": [{
    71                  "id": "1",
    72                  "impid": "test-imp-id",
    73                  "price": 0.500000,
    74                  "adm": "native object",
    75                  "crid": "123",
    76                  "ext": {
    77                    "prebid": {
    78                      "type": "native"
    79                    }
    80                  }
    81                }]
    82              }
    83            ],
    84            "cur": "USD"
    85          }
    86        }
    87      }
    88    ],
    89  
    90    "expectedBidResponses": [
    91      {
    92        "currency": "USD",
    93        "bids": [
    94          {
    95            "bid": {
    96              "id": "1",
    97              "impid": "test-imp-id",
    98              "price": 0.5,
    99              "adm": "native object",
   100              "crid": "123",
   101              "ext": {
   102                "prebid": {
   103                  "type": "native"
   104                }
   105              }
   106            },
   107            "type": "native"
   108          }
   109        ]
   110      }
   111    ]
   112  }