{
    "title": "Get prices v1",
    "description": "Returns prices",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://api.nextpertise.nl/schemas/broadband/get_prices_request_v1.json",
    "type": "object",
    "properties": {
        "product_list": {
            "type": "array",
            "items": [
                {
                    "type": "array",
                    "items": [
                        {
                            "type": "integer"
                        },
                        {
                            "type": "integer"
                        }
                    ],
                    "minItems": 2,
                    "maxItems": 2
                }
            ]
        }
    },
    "required": [
        "product_list"
    ],
    "additionalProperties": false
}