aflac · JSON Structure

Enterprise Connect Dependent Structure

A dependent to be covered under a family enrollment.

Type: object Properties: 4
Fortune 500

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

Properties

first_name last_name date_of_birth relationship

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-dependent-structure.json",
  "name": "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": "date",
      "description": "Dependent's date of birth.",
      "example": "1990-06-15"
    },
    "relationship": {
      "type": "string",
      "description": "Relationship to the employee.",
      "enum": [
        "spouse",
        "child"
      ],
      "example": "spouse"
    }
  }
}