{
    "$schema": "http://json-schema.org/schema",
    "$id": "SchematicsNgAfelioAdd",
    "title": "ng-afelio Add ng-afelio into project",
    "type": "object",
    "properties": {
      "project": {
        "type": "string",
        "description": "The name of the project",
        "$default": {
          "$source": "projectName"
        }
      },
      "uiKit": {
        "type": "string",
        "description": "UI Kit type `afelio` or `bootstrap`",
        "x-prompt": {
            "message": "Which UI Kit would you like to use?",
            "type": "list",
            "items": [
                {
                    "value": "afelio",
                    "label": "afelio"
                },
                {
                    "value": "bootstrap",
                    "label": "bootstrap"
                },
                {
                  "value": "tailwind",
                  "label": "tailwind"
              },
                {
                  "value": "none",
                  "label": "none"
              }
            ]
        }
      }
    },
    "required": ["uiKit"]
}