{
  "$schema": "http://json-schema.org/schema",
  "id": "SchematicsAkitaFeature",
  "title": "Akita Feature Options Schema",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the component.",
      "visible": false
    },
    "name": {
      "description": "The name of the feature.",
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "spec": {
      "type": "boolean",
      "default": false,
      "description": "Specifies if a spec file is generated."
    },
    "plain": {
      "type": "boolean",
      "default": false,
      "alias": "p",
      "description": "Specifies if a plain store is generated."
    },
    "dirName": {
      "type": "string",
      "default": "state",
      "description": "Specifies the name of the generated folder"
    }
  },
  "required": []
}