Skip to content

InsurancePlan

An Insurance Plan

Fields

change_healthcare_eligibility_payer_id · String · The Eligibility Payer ID for eligibility requests in Change that this maps to
change_healthcare_payer_id · String · The Payer ID for claims requests in Change that this maps to
cursor · Cursor! · required · Pagination cursor
default_payer_location · Location · Location of the first policy associated to the current user and insurance plan
id · ID! · required · The unique identifier of the plan
is_accepted · Boolean · Insurance Plan marked as accepted
is_in_fee_schedules · Boolean · Whether or not this insurance plan is associated with fee schedule for the logged in user.
name_and_id · String · A combined string to use for labels
payer_id · String · The Payer ID of the insurance plan
payer_name · String · The name of the insurance plan
user · User · Owner of this insurance plan
deprecated Insurance Plans do not have an associated user

Used By

Definition

"""
An Insurance Plan
"""
type InsurancePlan {
"""
The Eligibility Payer ID for eligibility requests in Change that this maps to
"""
change_healthcare_eligibility_payer_id: String
"""
The Payer ID for claims requests in Change that this maps to
"""
change_healthcare_payer_id: String
"""
Pagination cursor
"""
cursor: Cursor!
"""
Location of the first policy associated to the current user and insurance plan
"""
default_payer_location(
"""
Array of plan ids
"""
ids: String
): Location
"""
The unique identifier of the plan
"""
id: ID!
"""
Insurance Plan marked as accepted
"""
is_accepted(
"""
The known value of is_accepted (from the query argument)
"""
known_value: Boolean
): Boolean
"""
Whether or not this insurance plan is associated with fee schedule for the logged in user.
"""
is_in_fee_schedules: Boolean
"""
A combined string to use for labels
"""
name_and_id: String
"""
The Payer ID of the insurance plan
"""
payer_id: String
"""
The name of the insurance plan
"""
payer_name: String
"""
Owner of this insurance plan
"""
user: User
@deprecated(reason: "Insurance Plans do not have an associated user")
}