Skip to main content

The Occupant Object

An Occupant represents a person involved in the accident. Occupant data is used for biomechanics analysis to calculate forces experienced during the collision.

Object Structure

{
"id": "occ_abc123",
"name": "John Smith",
"age": 45,
"gender": "male",
"height_inches": 70,
"weight_lbs": 180,
"position": "driver",
"alleged_injuries": ["cervical_spine", "lumbar_spine"],
"seatbelt_worn": true,
"airbag_deployed": "yes",
"injury_severity": "moderate",
"pre_existing_conditions": "None"
}

Attributes

Required Fields

AttributeTypeDescription
ageintegerAge in years (required for biomechanics)
genderstringGender: male, female, other (required for biomechanics)
positionstringSeating position (required for biomechanics)

Optional Fields

AttributeTypeDescription
idstringUnique identifier with occ_ prefix
namestringOccupant's full name
height_inchesintegerHeight in inches
weight_lbsintegerWeight in pounds
alleged_injuriesarrayList of injury location codes
seatbelt_wornbooleanWhether seatbelt was worn during accident
airbag_deployedstringAirbag deployment status
injury_severitystringOverall injury severity level
pre_existing_conditionsstringDescription of pre-existing medical conditions

Seating Positions

ValueDescription
driverDriver's seat
front_passengerFront passenger seat
rear_leftRear left passenger
rear_centerRear center passenger
rear_rightRear right passenger

Injury Location Codes

Used in the alleged_injuries array:

CodeBody Region
head_brainHead and traumatic brain injury
cervical_spineNeck/cervical spine
thoracic_spineMid-back/thoracic spine
lumbar_spineLower back/lumbar spine
shoulderShoulder
hipHip
kneeKnee
foot_ankleFoot and ankle

Airbag Deployment Status

ValueDescription
yesAirbag deployed
noAirbag did not deploy
partialAirbag partially deployed
unknownDeployment status unknown

Injury Severity Levels

ValueDescription
minorMinor injuries, no hospitalization
moderateModerate injuries, possible hospitalization
seriousSerious injuries, hospitalization required
severeSevere injuries, intensive care
criticalCritical/life-threatening injuries

Biomechanics Analysis

Occupant data is used to calculate:

  • Spinal forces: Forces on cervical, thoracic, and lumbar spine
  • Impact biomechanics: How the body responded to the crash pulse
  • Injury causation: Whether crash forces could cause alleged injuries

Required occupant fields for biomechanics:

  • age - Affects spinal stiffness calculations
  • gender - Affects anthropometric models
  • position - Determines crash force vector direction
  • height_inches / weight_lbs - For accurate body mechanics modeling