{
  "$schema": "http://json-schema.org/schema",
  "id": "StateSchematicsSchema",
  "title": "State Schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the state?"
    },
    "path": {
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 1
      }
    },
    "project": {
      "type": "string",
      "description": "The name of the project."
    },
    "module": {
      "type": "string",
      "description": "Your module path for the importing NgModule. If you do not enter. Schematics will find automaticly."
    },
    "forRoot": {
      "type": "string",
      "description": "Flag to setup the forRoot state or forFeature state. If you do not enter. Schematics will choose automaticly."
    },
    "skipImport": {
      "type": "string",
      "description": "Flag to importing NgModule."
    }
  },
  "required": ["name"]
}
