{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicNew",
  "title": "New Schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the new m2c2kit app.",
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the new m2c2kit app?"
    },
    "module": {
      "description": "Create a m2c2kit assessment module.",
      "type": "boolean",
      "default": false,
      "alias": "m"
    },
    "skipGit": {
      "description": "Do not initialize a git repository.",
      "type": "boolean",
      "default": false,
      "alias": "g"
    }
  },
  "required": ["name"]
}
