Skip to main content

Benefit

A Benefit offered to an individual in a Benefits Program

type Benefit {
configuration: BenefitConfiguration!
coverageLevels: [CoverageLevel!]!
description: String!
endDate: LocalDate
id: ID!
name: String!
startDate: LocalDate!
type: BenefitType!
}

Fields

Benefit.configuration ● BenefitConfiguration! non-null object

The configuration of the Benefit.

Benefit.coverageLevels ● [CoverageLevel!]! non-null list object

The active coverage levels configured for this Benefit. Coverage levels represent tiers of coverage available to enrollees (e.g., "Employee Only", "Employee + Spouse", "Family"). Use the returned id values as the coverageLevelId input when calling enrollIndividualInBenefit. Only ACTIVE coverage levels are returned; inactive levels are excluded.

Benefit.description ● String! non-null scalar

A description of the Benefit

Benefit.endDate ● LocalDate scalar

The end date of the Benefit

Benefit.id ● ID! non-null scalar

A unique identifier for the Benefit

Benefit.name ● String! non-null scalar

A human-readable name for the Benefit

Benefit.startDate ● LocalDate! non-null scalar

The start date of the Benefit

Benefit.type ● BenefitType! non-null enum

The type of Benefit

Member Of

Account object ● BenefitsProgram object ● CreateBenefitResult object ● EnrollIndividualInBenefitResult object ● TransferBenefitForIndividualResult object ● UnenrollIndividualFromBenefitResult object ● UpdateBenefitResult object

Implemented By

BenefitResponse union