aflac · JSON Structure

Enterprise Connect Eligibility Response Structure

Result of an eligibility verification check.

Type: object Properties: 5
Fortune 500

EligibilityResponse is a JSON Structure definition published by aflac, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

eligible employee_id group_id product_type ineligibility_reason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aflac/refs/heads/main/json-structure/enterprise-connect-eligibility-response-structure.json",
  "name": "EligibilityResponse",
  "description": "Result of an eligibility verification check.",
  "type": "object",
  "properties": {
    "eligible": {
      "type": "boolean",
      "description": "Whether the employee is eligible for the product.",
      "example": true
    },
    "employee_id": {
      "type": "string",
      "description": "Verified employee identifier.",
      "example": "EMP-789012"
    },
    "group_id": {
      "type": "string",
      "description": "Employer group identifier.",
      "example": "GRP-123456"
    },
    "product_type": {
      "type": "string",
      "description": "Product type checked.",
      "example": "accident"
    },
    "ineligibility_reason": {
      "type": "string",
      "description": "Reason for ineligibility if not eligible.",
      "example": "Employee not in an eligible employment class."
    }
  }
}