{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Call center",
    "name": "CallCenter",
    "description": "Call center module configuration",
    "type": "object",
    "properties": {
        "CallCenter": {
            "type": "object",
            "properties": {
                "pages": {
                    "type": "object",
                    "description": "Callcenter page configuration"
                },
                "pagination": {
                    "type": "object",
                    "properties": {
                        "bookings_per_page": {
                            "type": "number",
                            "description": "the number of bookings that should be displayed at a time"
                        }
                    }
                },
                "modifyUseCustomerTimeZone": {
                    "type": "boolean",
                    "description": "Whether the modify booking button should use the customer time zone if it is set."
                },
                "allowOverBooking": {
                    "type": "boolean",
                    "description": "Whether to allow call center users to over book or not"
                }
            }
        }
    }
}
