createReminder
Add reminders to Apple Reminders on macOS by specifying a list name, title, due date, and optional notes for better task management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dueDate | No | ||
listName | Yes | ||
notes | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dueDate": {
"type": "string"
},
"listName": {
"type": "string"
},
"notes": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"listName",
"title"
],
"type": "object"
}