{
  "$schema": "http://json-schema.org/schema",
  "id": "SchematicsMuiDrawer",
  "title": "Material UI Drawer Options Schema",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path within /src to create the component",
      "default": "components"
    },
    "name": {
      "type": "string",
      "description": "The name of the component"
    },
    "flat": {
      "type": "boolean",
      "description": "Flag to indicate if a dir is created",
      "default": false
    },
    "mainFile": {
      "type": "string",
      "description": "Where should be initial imports added",
      "default": "src/App.js"
    },
    "noTest": {
      "type": "boolean",
      "description": "Skip test file",
      "default": false
    },
    "init": {
      "type": "boolean",
      "description": "Perform initial install",
      "default": false
    }
  },
  "required": [
    "name"
  ]
}