|
13950 | 13950 | "example": 12, |
13951 | 13951 | "description": "Calendar month for this lunar calendar." |
13952 | 13952 | }, |
| 13953 | + "monthName": { |
| 13954 | + "type": "string", |
| 13955 | + "example": "December", |
| 13956 | + "description": "Month name, localized to the requested language. Saves the caller a lookup table when labelling a calendar heading, since the numeric month alone cannot be rendered without one." |
| 13957 | + }, |
13953 | 13958 | "calendar": { |
13954 | 13959 | "type": "array", |
13955 | 13960 | "items": { |
|
13983 | 13988 | "required": [ |
13984 | 13989 | "year", |
13985 | 13990 | "month", |
| 13991 | + "monthName", |
13986 | 13992 | "calendar" |
13987 | 13993 | ] |
13988 | 13994 | } |
@@ -14420,14 +14426,62 @@ |
14420 | 14426 | "type": "string", |
14421 | 14427 | "example": "Pisces", |
14422 | 14428 | "description": "Moon sign of this person. Emotional nature and inner needs." |
| 14429 | + }, |
| 14430 | + "planets": { |
| 14431 | + "type": "array", |
| 14432 | + "items": { |
| 14433 | + "type": "object", |
| 14434 | + "properties": { |
| 14435 | + "name": { |
| 14436 | + "type": "string", |
| 14437 | + "example": "Sun", |
| 14438 | + "description": "Planet or point name. Matches the names used in interAspects." |
| 14439 | + }, |
| 14440 | + "longitude": { |
| 14441 | + "type": "number", |
| 14442 | + "example": 114.52, |
| 14443 | + "description": "Ecliptic longitude in degrees (0-360) measured from 0 Aries. This is the value a wheel plots." |
| 14444 | + }, |
| 14445 | + "sign": { |
| 14446 | + "type": "string", |
| 14447 | + "example": "Cancer", |
| 14448 | + "description": "Zodiac sign containing the planet." |
| 14449 | + }, |
| 14450 | + "degree": { |
| 14451 | + "type": "number", |
| 14452 | + "example": 24.52, |
| 14453 | + "description": "Degree within the sign (0-29.999)." |
| 14454 | + }, |
| 14455 | + "house": { |
| 14456 | + "type": "number", |
| 14457 | + "example": 3, |
| 14458 | + "description": "House this planet occupies in the person 1 chart (1-12)." |
| 14459 | + }, |
| 14460 | + "isRetrograde": { |
| 14461 | + "type": "boolean", |
| 14462 | + "example": false, |
| 14463 | + "description": "True when the planet is retrograde at this moment." |
| 14464 | + } |
| 14465 | + }, |
| 14466 | + "required": [ |
| 14467 | + "name", |
| 14468 | + "longitude", |
| 14469 | + "sign", |
| 14470 | + "degree", |
| 14471 | + "house", |
| 14472 | + "isRetrograde" |
| 14473 | + ] |
| 14474 | + }, |
| 14475 | + "description": "Planet positions for person 1, enough to render this side of a dual wheel without a second request. Per-planet interpretations are not repeated here; call the natal chart endpoint for an individual reading." |
14423 | 14476 | } |
14424 | 14477 | }, |
14425 | 14478 | "required": [ |
14426 | 14479 | "ascendant", |
14427 | 14480 | "sunSign", |
14428 | | - "moonSign" |
| 14481 | + "moonSign", |
| 14482 | + "planets" |
14429 | 14483 | ], |
14430 | | - "description": "Person 1 chart highlights: Ascendant, Sun sign, and Moon sign." |
| 14484 | + "description": "Person 1 chart highlights: Ascendant, Sun sign, Moon sign, and plotting positions." |
14431 | 14485 | }, |
14432 | 14486 | "person2": { |
14433 | 14487 | "type": "object", |
@@ -14455,25 +14509,73 @@ |
14455 | 14509 | "sign", |
14456 | 14510 | "degree" |
14457 | 14511 | ], |
14458 | | - "description": "Ascendant position for person 2." |
| 14512 | + "description": "Ascendant position for person 2. Determines first house cusp and outward personality." |
14459 | 14513 | }, |
14460 | 14514 | "sunSign": { |
14461 | 14515 | "type": "string", |
14462 | 14516 | "example": "Pisces", |
14463 | | - "description": "Sun sign of this person." |
| 14517 | + "description": "Sun sign (zodiac sign) of this person. Core identity and ego expression." |
14464 | 14518 | }, |
14465 | 14519 | "moonSign": { |
14466 | 14520 | "type": "string", |
14467 | 14521 | "example": "Scorpio", |
14468 | | - "description": "Moon sign of this person." |
| 14522 | + "description": "Moon sign of this person. Emotional nature and inner needs." |
| 14523 | + }, |
| 14524 | + "planets": { |
| 14525 | + "type": "array", |
| 14526 | + "items": { |
| 14527 | + "type": "object", |
| 14528 | + "properties": { |
| 14529 | + "name": { |
| 14530 | + "type": "string", |
| 14531 | + "example": "Sun", |
| 14532 | + "description": "Planet or point name. Matches the names used in interAspects." |
| 14533 | + }, |
| 14534 | + "longitude": { |
| 14535 | + "type": "number", |
| 14536 | + "example": 114.52, |
| 14537 | + "description": "Ecliptic longitude in degrees (0-360) measured from 0 Aries. This is the value a wheel plots." |
| 14538 | + }, |
| 14539 | + "sign": { |
| 14540 | + "type": "string", |
| 14541 | + "example": "Cancer", |
| 14542 | + "description": "Zodiac sign containing the planet." |
| 14543 | + }, |
| 14544 | + "degree": { |
| 14545 | + "type": "number", |
| 14546 | + "example": 24.52, |
| 14547 | + "description": "Degree within the sign (0-29.999)." |
| 14548 | + }, |
| 14549 | + "house": { |
| 14550 | + "type": "number", |
| 14551 | + "example": 3, |
| 14552 | + "description": "House this planet occupies in the person 2 chart (1-12)." |
| 14553 | + }, |
| 14554 | + "isRetrograde": { |
| 14555 | + "type": "boolean", |
| 14556 | + "example": false, |
| 14557 | + "description": "True when the planet is retrograde at this moment." |
| 14558 | + } |
| 14559 | + }, |
| 14560 | + "required": [ |
| 14561 | + "name", |
| 14562 | + "longitude", |
| 14563 | + "sign", |
| 14564 | + "degree", |
| 14565 | + "house", |
| 14566 | + "isRetrograde" |
| 14567 | + ] |
| 14568 | + }, |
| 14569 | + "description": "Planet positions for person 2, enough to render this side of a dual wheel without a second request. Per-planet interpretations are not repeated here; call the natal chart endpoint for an individual reading." |
14469 | 14570 | } |
14470 | 14571 | }, |
14471 | 14572 | "required": [ |
14472 | 14573 | "ascendant", |
14473 | 14574 | "sunSign", |
14474 | | - "moonSign" |
| 14575 | + "moonSign", |
| 14576 | + "planets" |
14475 | 14577 | ], |
14476 | | - "description": "Person 2 chart highlights: Ascendant, Sun sign, and Moon sign." |
| 14578 | + "description": "Person 2 chart highlights: Ascendant, Sun sign, Moon sign, and plotting positions." |
14477 | 14579 | }, |
14478 | 14580 | "compatibilityScore": { |
14479 | 14581 | "type": "number", |
|
21192 | 21294 | "type": "string", |
21193 | 21295 | "description": "Monthly financial outlook and guidance." |
21194 | 21296 | }, |
| 21297 | + "advice": { |
| 21298 | + "type": "string", |
| 21299 | + "description": "Actionable guidance for the month as a whole, derived from the Mercury house activation for this sign. Distinct from the per-week advice inside weekByWeek: this is the single takeaway for the month." |
| 21300 | + }, |
21195 | 21301 | "weekByWeek": { |
21196 | 21302 | "type": "array", |
21197 | 21303 | "items": { |
|
21280 | 21386 | "career", |
21281 | 21387 | "health", |
21282 | 21388 | "finance", |
| 21389 | + "advice", |
21283 | 21390 | "weekByWeek", |
21284 | 21391 | "keyDates", |
21285 | 21392 | "luckyNumbers", |
|
30504 | 30611 | } |
30505 | 30612 | ], |
30506 | 30613 | "default": 5.5, |
30507 | | - "description": "Timezone offset from UTC in decimal hours. Used for sunrise/sunset/moonrise/moonset search accuracy and output time formatting. Essential for correct results outside IST. Defaults to 5.5 (IST).", |
| 30614 | + "description": "Timezone offset from UTC in decimal hours, for example -5 for New York or 9 for Tokyo. Send the offset that matches the coordinates: sunrise, sunset and every muhurta boundary are found by searching forward from local midnight, so the default anchors the search to an Indian day. Omitting it for a location outside IST returns a correctly ordered set of periods for the wrong window, shifted by the difference between 5.5 and the real offset. Defaults to 5.5 (IST).", |
30508 | 30615 | "example": 5.5 |
30509 | 30616 | } |
30510 | 30617 | }, |
|
0 commit comments