json_import
Import multiple to-dos and projects into Things 3 from JSON data arrays, supporting complex nested structures for batch task management.
Instructions
JSON批量导入待办事项和项目。支持复杂的嵌套结构。
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| data | Yes | JSON数据数组,包含to-do和project对象 | |
| authToken | No | 授权令牌(如包含更新操作则必需) | |
| reveal | No | 是否显示第一个创建的项 | 
Input Schema (JSON Schema)
{
  "properties": {
    "authToken": {
      "description": "授权令牌(如包含更新操作则必需)",
      "type": "string"
    },
    "data": {
      "description": "JSON数据数组,包含to-do和project对象",
      "type": "array"
    },
    "reveal": {
      "description": "是否显示第一个创建的项",
      "type": "boolean"
    }
  },
  "required": [
    "data"
  ],
  "type": "object"
}