getSolarTimes
Converts Bazi (Chinese astrological chart) data into a list of Gregorian calendar times formatted as YYYY-MM-DD hh:mm:ss for accurate Chinese astrological calculations.
Instructions
根据八字获取公历时间列表。返回的时间格式为:YYYY-MM-DD hh:mm:ss。例如时间1998年7月31日下午2点整表示为:1998-07-31 14:00:00
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bazi | Yes | 八字,按年柱、月柱、日柱、时柱顺序,用空格隔开。例如:戊寅 己未 己卯 辛未 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bazi": {
"description": "八字,按年柱、月柱、日柱、时柱顺序,用空格隔开。例如:戊寅 己未 己卯 辛未",
"type": "string"
}
},
"required": [
"bazi"
],
"type": "object"
}