{
    "mockBidRequest": {
        "id": "test-request-id",
        "site": {
            "page": "https://good.site/url"
        },
        "imp": [{
            "id": "test-imp-id",
            "banner": {
                "format": [{
                    "w": 300,
                    "h": 250
                }]
            },
            "ext": {
                "bidder": {
                    "uid": 1
                },
                "skadn": {
                    "versions": ["2.0", "2.1"],
                    "sourceapp": "880047117"
                },
                "data": {
                    "adserver": {
                        "name": "some_name",
                        "adslot": "some_slot"
                    }
                }
            }
        }]
    },

    "httpCalls": [{
        "expectedRequest": {
            "uri": "http://localhost/prebid",
            "body": {
                "id": "test-request-id",
                "site": {
                    "page": "https://good.site/url"
                },
                "imp": [{
                    "id": "test-imp-id",
                    "banner": {
                        "format": [{
                            "w": 300,
                            "h": 250
                        }]
                    },
                    "ext": {
                        "bidder": {
                            "uid": 1
                        },
                        "skadn": {
                            "versions": ["2.0", "2.1"],
                            "sourceapp": "880047117"
                        },
                        "data": {
                            "adserver": {
                                "name": "some_name",
                                "adslot": "some_slot"
                            }
                        },
                        "gpid": "some_slot"
                    }
                }]
            },
            "impIDs":["test-imp-id"]
        },
        "mockResponse": {
            "status": 200,
            "body": {
                "id": "test-request-id",
                "seatbid": [{
                    "seat": "grid",
                    "bid": [{
                        "id": "randomid",
                        "impid": "test-imp-id",
                        "price": 0.500000,
                        "adid": "12345678",
                        "adm": "some-test-ad",
                        "cid": "987",
                        "crid": "12345678",
                        "h": 250,
                        "w": 300,
                        "ext": {
                            "skadn": {
                                "version": "2.0",
                                "sourceapp": "880047117"
                            }
                        }
            }]
                }],
                "cur": "USD"
            }
        }
    }],

    "expectedBidResponses": [{
        "currency": "USD",
        "bids": [{
            "bid": {
                "id": "randomid",
                "impid": "test-imp-id",
                "price": 0.5,
                "adm": "some-test-ad",
                "adid": "12345678",
                "cid": "987",
                "crid": "12345678",
                "w": 300,
                "h": 250,
                "ext": {
                    "skadn": {
                        "version": "2.0",
                        "sourceapp": "880047117"
                    }
                }
            },
            "type": "banner"
        }]
    }]
}
