Properties
| Name | Type | Description |
|---|---|---|
| firstName | string | |
| lastName | string | |
| dateOfBirth | string | |
| gender | string | |
| relationship | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/availity/refs/heads/main/json-schema/eligibility-dependent-schema.json",
"title": "Dependent",
"description": "Dependent schema from Availity API",
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date"
},
"gender": {
"type": "string",
"enum": [
"M",
"F",
"U"
]
},
"relationship": {
"type": "string",
"enum": [
1,
19,
20,
21,
39,
40,
"G8"
]
}
}
}