Unum · Schema

Unum Member

A member enrolled in Unum benefits through an employer group

InsuranceBenefits AdministrationHR IntegrationDisability InsuranceLife InsuranceFortune 500

Properties

Name Type Description
memberId string Unique Unum member identifier
groupId string Employer group identifier
firstName string Member first name
lastName string Member last name
dateOfBirth string Member date of birth (ISO 8601)
employeeId string Employer-assigned employee identifier
hireDate string Employee hire date
employmentStatus string Current employment status
effectiveDate string Benefits eligibility effective date
terminationDate string Benefits eligibility termination date
coverages array Active benefit coverages
createdAt string Record creation timestamp
updatedAt string Record last updated timestamp
View JSON Schema on GitHub

JSON Schema

unum-member-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unum/main/json-schema/unum-member-schema.json",
  "title": "Unum Member",
  "description": "A member enrolled in Unum benefits through an employer group",
  "type": "object",
  "required": ["memberId", "groupId", "firstName", "lastName", "dateOfBirth", "employeeId", "hireDate", "employmentStatus", "effectiveDate"],
  "properties": {
    "memberId": {
      "type": "string",
      "description": "Unique Unum member identifier",
      "example": "MBR-00123456"
    },
    "groupId": {
      "type": "string",
      "description": "Employer group identifier",
      "example": "GRP-10042"
    },
    "firstName": {
      "type": "string",
      "description": "Member first name"
    },
    "lastName": {
      "type": "string",
      "description": "Member last name"
    },
    "dateOfBirth": {
      "type": "string",
      "format": "date",
      "description": "Member date of birth (ISO 8601)"
    },
    "employeeId": {
      "type": "string",
      "description": "Employer-assigned employee identifier"
    },
    "hireDate": {
      "type": "string",
      "format": "date",
      "description": "Employee hire date"
    },
    "employmentStatus": {
      "type": "string",
      "enum": ["active", "terminated", "on-leave"],
      "description": "Current employment status"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "description": "Benefits eligibility effective date"
    },
    "terminationDate": {
      "type": "string",
      "format": "date",
      "description": "Benefits eligibility termination date"
    },
    "coverages": {
      "type": "array",
      "description": "Active benefit coverages",
      "items": {
        "$ref": "#/definitions/Coverage"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Record creation timestamp"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Record last updated timestamp"
    }
  },
  "definitions": {
    "Coverage": {
      "type": "object",
      "description": "A specific benefit coverage for a member",
      "properties": {
        "productType": {
          "type": "string",
          "enum": ["disability", "life", "dental", "vision", "critical-illness", "accident"],
          "description": "Type of insurance product"
        },
        "planCode": {
          "type": "string",
          "description": "Unum plan code"
        },
        "benefitAmount": {
          "type": "number",
          "format": "double",
          "description": "Coverage benefit amount in USD"
        },
        "effectiveDate": {
          "type": "string",
          "format": "date",
          "description": "Coverage effective date"
        },
        "terminationDate": {
          "type": "string",
          "format": "date",
          "description": "Coverage termination date"
        },
        "status": {
          "type": "string",
          "enum": ["active", "pending", "terminated"],
          "description": "Coverage status"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/unum-member"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.