davidlday / RemindersWidget

An Übersicht widget to display your pending Reminders tasks on the desktop.
MIT License
16 stars 2 forks source link

Reminders JSON #21

Open davidlday opened 3 years ago

davidlday commented 3 years ago

Create a more natural form of JSON from the queries. Should be something like:

{ "lists": [
  { "name": "mylist",
    "tasks": [
      { "title": "task 1",
         "dueDate": "",
         "priority": "0",
         "notes": "notes about this task",
         "secondsLeft": ""
      }
    ]
  }
]}