Skip to content

EligibilityCheck

A processed eligibility check

Fields

created_at · ISO8601DateTime · The time the eligibility check was run
id · ID! · required · The unique identifier of the check
policy · Policy · The policy associated with this check
policy_id · ID! · required · The ID of the associated policy
response · String · A JSON object containing the eligibility details
response_as_html · String · A basic HTML representation of the eligibility response (nil if errors exist)

Used By

Definition

"""
A processed eligibility check
"""
type EligibilityCheck {
"""
The time the eligibility check was run
"""
created_at: ISO8601DateTime
"""
The unique identifier of the check
"""
id: ID!
"""
The policy associated with this check
"""
policy: Policy
"""
The ID of the associated policy
"""
policy_id: ID!
"""
A JSON object containing the eligibility details
"""
response: String
"""
A basic HTML representation of the eligibility response (nil if errors exist)
"""
response_as_html: String
}