Properties
| Name | Type | Description |
|---|---|---|
| first_name | string | Dependent's first name. |
| last_name | string | Dependent's last name. |
| date_of_birth | string | Dependent's date of birth. |
| relationship | string | Relationship to the employee. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aflac/refs/heads/main/json-schema/enterprise-connect-dependent-schema.json",
"title": "Dependent",
"description": "A dependent to be covered under a family enrollment.",
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "Dependent's first name.",
"example": "Jane"
},
"last_name": {
"type": "string",
"description": "Dependent's last name.",
"example": "Smith"
},
"date_of_birth": {
"type": "string",
"format": "date",
"description": "Dependent's date of birth.",
"example": "1990-06-15"
},
"relationship": {
"type": "string",
"description": "Relationship to the employee.",
"enum": [
"spouse",
"child"
],
"example": "spouse"
}
}
}