{
  "name": "move_calendar_event",
  "description": "Reschedule a calendar event to a new date/time. This modifies the user's real calendar. Confirm the event title, current time, and new time with the user before executing.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "eventId": {
        "type": "string",
        "description": "The ID of the calendar event"
      },
      "startDate": {
        "type": "string",
        "description": "The new start date/time"
      },
      "isAllDay": {
        "type": "boolean",
        "description": "Whether this is an all-day event"
      }
    },
    "required": ["eventId", "startDate", "isAllDay"]
  }
}
