OBJECT

InsurancePlan

An Insurance Plan

link GraphQL Schema definition

  • 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
  • # Location of the first policy associated to the current user and insurance plan
  • #
  • # Arguments
  • # ids: Array of plan ids
  • default_payer_location(ids: String): Location
  • # The unique identifier of the plan
  • id: ID!
  • # Insurance Plan marked as accepted
  • #
  • # Arguments
  • # known_value: The known value of is_accepted (from the query
  • # argument)
  • is_accepted(known_value: Boolean): 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" )
  • }