Skip to content

ClaimPolicyHolder

Insurance subscriber (policyholder) data from a submitted claim snapshot

Fields

date_of_birth · String · Date of birth
first_name · String · First name
gender · String · Gender
last_name · String · Last name
location · ClaimLocation · Address at time of submission
middle_initial · String · Middle initial
phone · String · Phone number
relationship · HolderRelationship · Relationship to patient

Used By

Definition

"""
Insurance subscriber (policyholder) data from a submitted claim snapshot
"""
type ClaimPolicyHolder {
"""
Date of birth
"""
date_of_birth: String
"""
First name
"""
first_name: String
"""
Gender
"""
gender: String
"""
Last name
"""
last_name: String
"""
Address at time of submission
"""
location: ClaimLocation
"""
Middle initial
"""
middle_initial: String
"""
Phone number
"""
phone: String
"""
Relationship to patient
"""
relationship: HolderRelationship
}