{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/basecamp/json-schema/todocreaterequest-schema.json", "title": "TodoCreateRequest", "type": "object", "required": [ "content" ], "properties": { "content": { "type": "string", "description": "To-do text description" }, "description": { "type": "string", "description": "Additional details in HTML format" }, "assignee_ids": { "type": "array", "description": "Person IDs to assign to this to-do", "items": { "type": "integer" } }, "completion_subscriber_ids": { "type": "array", "description": "Person IDs to notify when this to-do is completed", "items": { "type": "integer" } }, "notify": { "type": "boolean", "description": "Whether to immediately notify assignees" }, "due_on": { "type": "string", "format": "date", "description": "Due date in ISO 8601 format" }, "starts_on": { "type": "string", "format": "date", "description": "Start date in ISO 8601 format" } } }