export_json
Export your Things database as structured JSON for debugging, backup, or data processing. Customize output by including completed tasks, trashed items, minimal data, or pretty-printed format.
Instructions
Export complete Things database as structured JSON for debugging, backup, or data processing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeCompleted | No | Include completed/canceled tasks and projects in the export (default: false) | |
includeTrash | No | Include trashed items in the export (default: false). Use with caution as this includes deleted data | |
minimal | No | Export minimal data structure with only essential fields (default: false). Reduces output size for processing | |
prettify | No | Pretty-print JSON with indentation (default: true). Set to false for compact single-line output |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeCompleted": {
"default": false,
"description": "Include completed/canceled tasks and projects in the export (default: false)",
"type": "boolean"
},
"includeTrash": {
"default": false,
"description": "Include trashed items in the export (default: false). Use with caution as this includes deleted data",
"type": "boolean"
},
"minimal": {
"default": false,
"description": "Export minimal data structure with only essential fields (default: false). Reduces output size for processing",
"type": "boolean"
},
"prettify": {
"default": true,
"description": "Pretty-print JSON with indentation (default: true). Set to false for compact single-line output",
"type": "boolean"
}
},
"type": "object"
}