789 B
789 B
Extract FAMILY medical history from this medical document. Return a JSON array or null.
This is ONLY for hereditary/genetic conditions in BLOOD RELATIVES (parents, siblings, grandparents, aunts, uncles, cousins). NOT the patient's own conditions — those belong in other categories.
Look for phrases like: "family history of...", "mother/father had...", "runs in the family", "familial", "hereditary".
If the document does not mention any family member's health conditions, return null.
Each entry:
- type: relation ("mother", "father", "sibling", "grandparent", "aunt", "uncle", "cousin", "other")
- value: (empty)
- summary: relation + condition, e.g. "Father: Type 2 Diabetes"
- data: {"relation": "father", "condition": "Type 2 Diabetes", "age_onset": 55}
Document: {{MARKDOWN}}