Skip to content

ClaimPatient

Frozen patient data from a submitted claim snapshot

Fields

dob · String · Date of birth
first_name · String · First name
full_name · String · Full name
id · ID · Patient ID
last_name · String · Last name
location · ClaimLocation · Patient address at time of submission
sex · String · Biological sex (CMS-1500 Box 3)

Used By

Definition

"""
Frozen patient data from a submitted claim snapshot
"""
type ClaimPatient {
"""
Date of birth
"""
dob: String
"""
First name
"""
first_name: String
"""
Full name
"""
full_name: String
"""
Patient ID
"""
id: ID
"""
Last name
"""
last_name: String
"""
Patient address at time of submission
"""
location: ClaimLocation
"""
Biological sex (CMS-1500 Box 3)
"""
sex: String
}