> ## Documentation Index
> Fetch the complete documentation index at: https://help.elationhealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# The Insurance Eligibility Full Report Object

The Insurance Eligibility Full Report Object represents the eligibility information for a patient's insurance.

The response includes eligibility details such as service type code, eligibility provider, plan details, and benefits.

## Object Definition

```json theme={null}
{
  "eligibility_check_timestamp": "2022-04-04T01:52:38.662938+00:00",
  "patient_id": 123,
  "patient_insurance_id": 456,
  "practice_id": 789,
  "service_type_code": "30",
  "subscriber": {
    "address": {
      "address_1": "550 15th Street",
      "address_2": "21",
      "city": "San Francisco",
      "postal_code": "94103",
      "state": "CA"
    },
    "first_name": "Paula",
    "last_name": "Patient",
    "member_id": "test_member_id",
    "middle_name": "P",
    "name": "Paula Patient",
    "sex_at_birth": "F"
  },
  "eligibility_provider": {
    "first_name": "Gary",
    "last_name": "Leung",
    "npi": "1234567890",
    "organization_name": "Elation North"
  },
  "plan_details": {
    "carrier": "Blue Cross",
    "end_date": null,
    "group_name": "Elation Health, Inc",
    "group_number": "test_group_number",
    "insurance_type": null,
    "member_id": "test_member_id",
    "plan_name": "Blue Cross Blue Shield",
    "plan_number": "test_plan_number",
    "policy_name": null,
    "policy_number": null,
    "provider": {
      "first_name": "Gary",
      "last_name": "Leung",
      "npi": "1234567890",
      "organization_name": "Elation North"
    },
    "start_date": "2022-04-04"
  },
  "benefits": {
    "copay": [],
    "coinsurance": [],
    "deductible": [],
    "out_of_pocket": [],
    "limitations": []
  }
}
```

| Attribute                                | Type             | Possible Values | Description                               |
| :--------------------------------------- | :--------------- | :-------------- | :---------------------------------------- |
| eligibility\_check\_timestamp            | string           |                 | Eligibility check timestamp in ISO format |
| patient\_id                              | integer          |                 | Patient's id in Elation system            |
| patient\_insurance\_id                   | integer          |                 | Patient's insurance id in Elation system  |
| practice\_id                             | integer          |                 | Practice's id in Elation system           |
| service\_type\_code                      | string           |                 |                                           |
| subscriber.address.adress\_1             | string           |                 |                                           |
| subscriber.address.adress\_2             | string           |                 |                                           |
| subscriber.address.city                  | string           |                 |                                           |
| subscriber.address.postal\_code          | string           |                 |                                           |
| subscriber.address.state                 | string           |                 |                                           |
| subscriber.date\_of\_birth               | string           |                 |                                           |
| subscriber.first\_name                   | string           |                 |                                           |
| subscriber.last\_name                    | string           |                 |                                           |
| subscriber.member\_id                    | string           |                 |                                           |
| subscriber.middle\_name                  | string           |                 |                                           |
| subscriber.name                          | string           |                 |                                           |
| subscriber.sex\_at\_birth                | string           |                 |                                           |
| eligibility\_provider.first\_name        | string           |                 |                                           |
| eligibility\_provider.last\_name         | string           |                 |                                           |
| eligibility\_provider.npi                | string           |                 |                                           |
| eligibility\_provider.organization\_name | string           |                 |                                           |
| plan\_details.carrier                    | string           |                 |                                           |
| plan\_details.end\_date                  | string           |                 |                                           |
| plan\_details.group\_name                | string           |                 |                                           |
| plan\_details.group\_number              | string           |                 |                                           |
| plan\_details.insurance\_type            | string           |                 |                                           |
| plan\_details.member\_id                 | string           |                 |                                           |
| plan\_details.plan\_name                 | string           |                 |                                           |
| plan\_details.plan\_number               | string           |                 |                                           |
| plan\_details.policy\_name               | string           |                 |                                           |
| plan\_details.policy\_number             | string           |                 |                                           |
| plan\_details.provider.first\_name       | string           |                 |                                           |
| plan\_details.provider.last\_name        | string           |                 |                                           |
| plan\_details.provider.npi               | string           |                 |                                           |
| plan\_details.provider.organiztion\_name | string           |                 |                                           |
| plan\_details.start\_date                | string           |                 |                                           |
| benefits.copay                           | array of objects |                 |                                           |
| benefits.coinsurance                     | array of objects |                 |                                           |
| benefits.deductible                      | array of objects |                 |                                           |
| benefits.out\_of\_pocket                 | array of objects |                 |                                           |
| benefits.limitations                     | array of objects |                 |                                           |
