get_dae_un
Calculate your 10-year destiny cycle using Korean Saju astrology by providing birth date, time, and gender to reveal major life patterns and transitions.
Instructions
10년 대운
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| birthDate | Yes | ||
| birthTime | Yes | ||
| calendar | No | solar | |
| isLeapMonth | No | ||
| gender | Yes |
Input Schema (JSON Schema)
{
"properties": {
"birthDate": {
"type": "string"
},
"birthTime": {
"type": "string"
},
"calendar": {
"default": "solar",
"enum": [
"solar",
"lunar"
],
"type": "string"
},
"gender": {
"enum": [
"male",
"female"
],
"type": "string"
},
"isLeapMonth": {
"default": false,
"type": "boolean"
}
},
"required": [
"birthDate",
"birthTime",
"gender"
],
"type": "object"
}