OBJECT

EligibilityCheck

A processed eligibility check

link GraphQL Schema definition

  • 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
  • }