{
  "$schema": "http://json-schema.org/schema",
  "id": "Type",
  "title": "Type Schema",
  "type": "object",
  "properties": {
    "path": {
      "description": "The path to create the feature.",
      "type": "string",
      "format": "path",
      "visible": false
    },
    "name": {
      "description": "The name of the feature.",
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the feature?"
    },
    "addMember": {
      "description": "Add a 'removeMe' member to the interface as a placeholder",
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "name", "path"
  ]
}