availity · Schema

Dependent

Dependent schema from Availity API

Properties

Name Type Description
firstName string
lastName string
dateOfBirth string
gender string
relationship string
View JSON Schema on GitHub

JSON Schema

eligibility-dependent-schema.json Raw ↑
{
  "$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"
      ]
    }
  }
}