{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://www.werfen.com/application-start-request-schema.json",
    "title": "Schema for a request to start an application to be managed by WDIO REST API",
    "type": "object",
    "properties": {
        "browserType": {
            "type": "string",
            "enum": ["Chrome", "Edge", "Firefox", "Safari", "WebKitGTK", "TauriApp"],
            "description": "Type of browser for the application to be started"
        },
        "options": {
            "type": "object",
            "description": "WDIO options for the application to be started"
        }
    },
    "required": ["browserType", "options"],
    "additionalProperties": false
}
