convert_calendar
Convert dates between solar and lunar calendars for Korean Saju fortune-telling analysis. Transform Gregorian dates to lunar calendar or vice versa to calculate birth charts and astrological readings.
Instructions
양력↔음력 변환
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | YYYY-MM-DD | |
| fromCalendar | Yes | ||
| toCalendar | Yes | ||
| isLeapMonth | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "YYYY-MM-DD",
"type": "string"
},
"fromCalendar": {
"enum": [
"solar",
"lunar"
],
"type": "string"
},
"isLeapMonth": {
"default": false,
"type": "boolean"
},
"toCalendar": {
"enum": [
"solar",
"lunar"
],
"type": "string"
}
},
"required": [
"date",
"fromCalendar",
"toCalendar"
],
"type": "object"
}