check_compatibility
Analyze compatibility between two people using Korean Saju fortune-telling by comparing birth dates, times, and gender to provide relationship insights based on traditional Eastern astrology.
Instructions
두 사람 궁합 분석
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| person1 | Yes | ||
| person2 | Yes |
Input Schema (JSON Schema)
{
"properties": {
"person1": {
"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"
},
"person2": {
"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"
}
},
"required": [
"person1",
"person2"
],
"type": "object"
}