{
  "$schema": "http://json-schema.org/schema",
  "id": "NewCommandOptions",
  "description": "Creates a new directory and a new Angular app.",
  "$longDescription": "",

  "$aliases": [ "n" ],
  "$scope": "out",
  "$type": "schematic",
  "$impl": "./new-impl#NewCommand",

  "type": "object",
  "properties": {
    "collection": {
      "type": "string",
      "aliases": ["c"],
      "description": "Schematics collection to use."
    },
    "dryRun": {
      "type": "boolean",
      "default": false,
      "aliases": ["d"],
      "description": "Run through without making any changes."
    },
    "force": {
      "type": "boolean",
      "default": false,
      "aliases": ["f"],
      "description": "Forces overwriting of files."
    },
    "verbose": {
      "type": "boolean",
      "default": false,
      "aliases": ["v"],
      "description": "Adds more details to output logging."
    }
  },
  "required": []
}