{
  "$id": "ApplicationSchematics",
  "title": "Application Options Schema",
  "type": "object",
  "description": "Creates application",
  "properties": {
    "modules": {
      "type": "array",
      "description": "Modules",
      "uniqueItems": true,
      "default": ["authentication"],
      "x-prompt": {
        "message": "[WEB] Which modules would you like to use? You can add this later.",
        "type": "list",
        "items": ["authentication"]
      }
    },
    "skip-install": {
      "type": "boolean",
      "description": "A boolean value that will decide to download all dependencies.",
      "default": false
    }
  },
  "required": ["name"]
}
