{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://www.werfen.com/window-size-request-schema.json",
    "title": "Schema for a request to set the browser window size of the application managed by WDIO REST API",
    "type": "object",
    "properties": {
        "width": {
            "type": "integer",
            "description": "Window width"
        },
        "height": {
            "type": "integer",
            "description": "Window height"
        }
    },
    "required": ["width", "height"],
    "additionalProperties": false
}
