{
    "mockBidRequest": {
        "id": "test-request-id",
        "site": {
            "domain": "good.site",
            "page": "https://good.site/url",
            "publisher": {
                "id": "test-publisher-id"
            },
            "ext": {
                "amp": 0
            }
        },
        "imp": [{
            "id": "test-imp-id",
            "banner": {
                "format": [{
                    "w": 300,
                    "h": 250
                }]
            },
            "secure": 1,
            "ext": {
                "bidder": {
                    "size": [
                        300,
                        250
                    ],
                    "uid": 7
                }
            }
        }],
        "device": {
            "ua": "test-user-agent",
            "ipv6": "2001:0db8:85a3:0000:0000:8a2e:0370:7334",
            "h": 700,
            "w": 375,
            "ext": {
                "prebid": {
                    "interstitial": {
                        "minwidthperc": 50,
                        "minheightperc": 40
                    }
                }
            }
        },
        "at": 1,
        "tmax": 2000,
        "source": {
            "tid": "283746293874293"
        },
        "ext": {
            "prebid": {
                "aliases": {
                    "districtm": "appnexus",
                    "emxdigital": "appnexus"
                }
            }
        }
    },

    "httpCalls": [{
        "expectedRequest": {
            "uri": "http://localhost/prebid",
            "headers": {
                "Content-Type": ["application/json;charset=utf-8"],
                "X-Forwarded-For": ["2001:0db8:85a3:0000:0000:8a2e:0370:7334"]
            },
            "body": {
                "id": "test-request-id",
                "site": {
                    "domain": "good.site",
                    "page": "https://good.site/url",
                    "publisher": {
                        "id": "test-publisher-id"
                    },
                    "ext": {
                        "amp": 0
                    }
                },
                "cur": ["USD"],
                "imp": [{
                    "id": "test-imp-id",
                    "banner": {
                        "format": [{
                            "w": 300,
                            "h": 250
                        }]
                    },
                    "secure": 1,
                    "ext": {
                        "bidder": {
                            "size": [
                                300,
                                250
                            ],
                            "uid": 7
                        }
                    }
                }],
                "device": {
                    "ua": "test-user-agent",
                    "ipv6": "2001:0db8:85a3:0000:0000:8a2e:0370:7334",
                    "h": 700,
                    "w": 375,
                    "ext": {
                        "prebid": {
                            "interstitial": {
                                "minwidthperc": 50,
                                "minheightperc": 40
                            }
                        }
                    }
                },
                "at": 1,
                "tmax": 2000,
                "source": {
                    "tid": "283746293874293"
                },
                "ext": {
                    "prebid": {
                        "aliases": {
                            "districtm": "appnexus",
                            "emxdigital": "appnexus"
                        }
                    }
                }
            },
            "impIDs":["test-imp-id"]
        },
        "mockResponse": {
            "status": 200,
            "body": {
                "cur": "USD",
                "seatbid": [
                    {
                        "bid": [
                            {
                                "crid": "2_260",
                                "price": 0.500000,
                                "adm": "some-test-ad",
                                "impid": "test-imp-id",
                                "auid": 46,
                                "h": 250,
                                "adomain": [
                                    "goodadvertiser.com"
                                ],
                                "dealid": "test_deal_id",
                                "w": 300
                            }
                        ],
                        "seat": "51"
                    }
                ]
            }
        }
    }],

    "expectedBidResponses": [{
        "currency": "USD",
        "bids": [{
            "bid": {
                "price": 0.5,
                "adm": "some-test-ad",
                "impid": "test-imp-id",
                "id": "test-request-id",
                "h": 250,
                "adomain": [
                    "goodadvertiser.com"
                ],
                "dealid": "test_deal_id",
                "crid": "2_260",
                "w": 300
            },
            "type": "banner"
        }]
    }]
}
