PatientRelationshipType

Reference data entity for relationship types between persons. Categorizes relationships as family, legal, social, or professional for emergency contacts, healthcare proxies, and insurance subscribers.

Overview

PatientRelationshipType defines the nature of relationships between patients and their contacts or insurance subscribers. This information is essential for determining who can make medical decisions, who should be notified in emergencies, and how insurance coverage applies. Relationships are categorized to support different healthcare workflows and legal requirements.

Key Concepts

Relationship Categories

Relationships are grouped by their nature:

CategoryPurposeExamples
FamilyBlood or marriage relationsSpouse, parent, child, sibling
LegalLegally designated authorityGuardian, power of attorney
SocialPersonal connectionsFriend, neighbor, emergency contact
ProfessionalWork-relatedEmployer, caregiver
OtherUncategorizedCustom relationships

Standard Relationship Types

Family Relationships

  • SPOUSE - Married partner (automatic decision-making rights in many jurisdictions)
  • PARENT - Biological or adoptive parent (decision rights for minors)
  • CHILD - Biological or adoptive child
  • SIBLING - Brother or sister

Legal Relationships

  • GUARDIAN - Legal guardian with custody (full decision-making authority)
  • POWER_OF_ATTORNEY - Designated legal authority for decisions

Social Relationships

  • EMERGENCY_CONTACT - Designated for emergency notification
  • FRIEND - Close friend or companion

Professional Relationships

  • EMPLOYER - Current employer (workers' comp, occupational health)

Decision-Making Authority

Relationship type affects authorization levels:

RelationshipMedical DecisionsFinancial AccessEmergency Notification
SpouseOften automaticVaries by policyYes
Parent (of minor)YesYesYes
GuardianYesYesYes
Power of AttorneyIf healthcare POAIf financial POAYes
Emergency ContactNo (unless designated)NoYes

Insurance Context

Used in PatientCoverage to define subscriber relationships:

  • Self - Patient is the policy holder
  • Spouse - Patient covered through spouse's policy
  • Child - Patient covered as dependent child
  • Other dependent - Other covered relationship

Use Cases

Emergency Contact Setup

When designating emergency contacts:

  1. Capture contact person details
  2. Select relationship type from reference
  3. Set notification and authorization flags
  4. Order contacts by priority

Healthcare Proxy Identification

When patient cannot make decisions:

  1. Check for legal relationships (guardian, POA)
  2. If none, check family relationships (spouse, parent)
  3. Verify documentation for legal relationships
  4. Document decision-maker and relationship

Pediatric Patient Management

For minor patients:

  1. Require at least one PARENT or GUARDIAN contact
  2. Verify custodial status if parents separated
  3. Enable decision-making for appropriate relationships
  4. Document any custody restrictions

Insurance Subscriber Verification

When verifying coverage:

  1. Identify subscriber if different from patient
  2. Select subscriber relationship type
  3. Verify relationship matches insurance records
  4. Update if family status changes

Next of Kin Notification

In critical situations:

  1. Prioritize family relationships for notification
  2. Consider legal relationships for decision-making
  3. Fall back to social relationships if no family
  4. Document notification attempts and outcomes

Related Entities

EntityRelationshipDescription
PatientContactReferenced byContact records that specify relationship type
PatientCoverageReferenced byInsurance coverage subscriber relationships

Enums

category

ValueDescription
familyBlood relatives and relations by marriage
legalLegally designated relationships with formal authority
socialPersonal and community relationships
professionalWork and caregiving relationships
otherRelationships not fitting other categories

Standard Values

CodeLabelCategoryDescription
SPOUSESpousefamilyMarried partner
PARENTParentfamilyBiological or adoptive parent
CHILDChildfamilyBiological or adoptive child
SIBLINGSiblingfamilyBrother or sister
GUARDIANGuardianlegalLegal guardian with custody
POWER_OF_ATTORNEYPower of AttorneylegalLegal authority to make decisions
EMERGENCY_CONTACTEmergency ContactsocialDesignated emergency contact
FRIENDFriendsocialClose friend or companion
EMPLOYEREmployerprofessionalCurrent employer
OTHEROtherotherOther relationship type
4 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
codestring
stored

Unique code identifying the relationship type

Example: "SPOUSE"

Required
labelstring
stored

Human-readable name of the relationship

Example: "Spouse"

Required
categorystring
stored

Category of relationship

Values: family, legal, social, professional, other

Example: "family"

Required
descriptionstring
stored

Additional details about the relationship type

Optional

Examples

Example 1

{
  "@type": "PatientRelationshipType",
  "code": "SPOUSE",
  "label": "Spouse",
  "category": "family",
  "description": "Married partner"
}

Example 2

{
  "@type": "PatientRelationshipType",
  "code": "PARENT",
  "label": "Parent",
  "category": "family",
  "description": "Biological or adoptive parent"
}

Example 3

{
  "@type": "PatientRelationshipType",
  "code": "CHILD",
  "label": "Child",
  "category": "family",
  "description": "Biological or adoptive child"
}

Example 4

{
  "@type": "PatientRelationshipType",
  "code": "SIBLING",
  "label": "Sibling",
  "category": "family",
  "description": "Brother or sister"
}

Example 5

{
  "@type": "PatientRelationshipType",
  "code": "GUARDIAN",
  "label": "Guardian",
  "category": "legal",
  "description": "Legal guardian with custody"
}

Example 6

{
  "@type": "PatientRelationshipType",
  "code": "POWER_OF_ATTORNEY",
  "label": "Power of Attorney",
  "category": "legal",
  "description": "Legal authority to make decisions"
}

Example 7

{
  "@type": "PatientRelationshipType",
  "code": "EMERGENCY_CONTACT",
  "label": "Emergency Contact",
  "category": "social",
  "description": "Designated emergency contact"
}

Example 8

{
  "@type": "PatientRelationshipType",
  "code": "FRIEND",
  "label": "Friend",
  "category": "social",
  "description": "Close friend or companion"
}

Example 9

{
  "@type": "PatientRelationshipType",
  "code": "EMPLOYER",
  "label": "Employer",
  "category": "professional",
  "description": "Current employer"
}

Example 10

{
  "@type": "PatientRelationshipType",
  "code": "OTHER",
  "label": "Other",
  "category": "other",
  "description": "Other relationship type"
}