{
    "$id": "SchematicsNovaAdd",
    "$schema": "http://json-schema.org/schema",
    "description": "bootstraps a project for dashboards consumption",
    "properties": {
        "project": {
            "type": "string",
            "description": "The name of the project.",
            "$default": {
                "$source": "projectName"
            }
        },
        "skipModuleUpdate": {
            "type": "boolean",
            "description": "Skip updating the module configuration",
            "default": false
        },
        "skipCss": {
            "type": "boolean",
            "description": "Skip setting styles",
            "default": false
        },
        "skipPackageJson": {
            "type": "boolean",
            "description": "Skip updating package.json dependencies",
            "default": false
        }
    },
    "required": [],
    "title": "ng-add schematic for dashboards",
    "type": "object"
}
