{
  "$schema": "http://json-schema.org/schema",
  "id": "angular-material-ng-add",
  "title": "Angular Material ng-add schematic",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "theme": {
      "enum": ["indigo-pink", "deeppurple-amber", "pink-bluegrey", "purple-green", "custom"],
      "default": "indigo-pink",
      "description": "The theme to apply",
      "x-prompt": "Enter a prebuilt theme name, or \"custom\" for a custom theme:"
    },
    "gestures": {
      "type": "boolean",
      "default": true,
      "description": "Whether gesture support should be set up or not.",
      "x-prompt": "Set up HammerJS for gesture recognition?"
    },
    "animations": {
      "type": "boolean",
      "default": true,
      "description": "Whether Angular browser animations should be set up or not.",
      "x-prompt": "Set up browser animations for Angular Material?"
    }
  },
  "required": []
}
