{
  "$schema": "http://json-schema.org/draft-07/schema",
  "id": "EsNewProject",
  "title": " Es New Project Schema",
  "type": "object",
  "description": "Es new project command",
  "properties": {
    "name": {
      "type": "string",
      "description": "新项目名称",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "请输入项目名称"
    }
  },
  "required": [
    "name"
  ]
}