{
  "$schema": "http://json-schema.org/schema",
  "id": "hello",
  "title": "example",
  "type": "object",
  "description": "creat a hello.ts",
  "properties": {
    "userName": {
      "type": "string",
      "description": "input your name",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "請輸入你的名字"
    }
  },
  "required": ["userName"]
}

