availity · Schema

SubscriberInfo

Properties

Name Type Description
memberId string
firstName string
lastName string
dateOfBirth string
gender string
groupNumber string
groupName string
View JSON Schema on GitHub

JSON Schema

availity-subscriberinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriberInfo",
  "title": "SubscriberInfo",
  "type": "object",
  "properties": {
    "memberId": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "dateOfBirth": {
      "type": "string",
      "format": "date"
    },
    "gender": {
      "type": "string"
    },
    "groupNumber": {
      "type": "string"
    },
    "groupName": {
      "type": "string"
    }
  }
}