{
  "$schema": "http://json-schema.org/schema",
  "id": "SchematicsAngularModule",
  "title": "Angular Module Options Schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "path": {
      "type": "string",
      "default": "app"
    },
    "appRoot": {
      "type": "string"
    },
    "sourceDir": {
      "type": "string",
      "default": "src"
    }
  },
  "required": [
    "name"
  ]
}
