update_calendar_event
Modify existing calendar events by updating event details such as title, start time, duration, category, description, location, stamina cost, and status.
Instructions
기존 캘린더 이벤트를 수정합니다.
Args:
event_id: 수정할 이벤트 ID
title: 이벤트 제목
start_time: 시작 시간 (ISO 형식: 2025-08-02T10:00:00)
duration: 지속 시간(분)
category: 카테고리 (STUDY, WORK, REST, ACTIVITY)
description: 이벤트 설명 (선택)
location: 장소 (선택)
stamina_cost: 스태미나 소모량 (기본값: 0)
status: 이벤트 상태 (PLANNED, COMPLETED, CANCELED) (선택)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | ||
description | No | ||
duration | Yes | ||
event_id | Yes | ||
location | No | ||
stamina_cost | No | ||
start_time | Yes | ||
status | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"title": "Category",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"duration": {
"title": "Duration",
"type": "integer"
},
"event_id": {
"title": "Event Id",
"type": "integer"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Location"
},
"stamina_cost": {
"default": 0,
"title": "Stamina Cost",
"type": "integer"
},
"start_time": {
"title": "Start Time",
"type": "string"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"event_id",
"title",
"start_time",
"duration",
"category"
],
"title": "update_calendar_eventArguments",
"type": "object"
}