availity · Schema

EligibilityResponse

Properties

Name Type Description
id string Availity transaction ID
controlNumber string
requestedDate string
serviceDate string
subscriber object
payer object
coverages array
planInformation object
View JSON Schema on GitHub

JSON Schema

availity-eligibilityresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EligibilityResponse",
  "title": "EligibilityResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Availity transaction ID"
    },
    "controlNumber": {
      "type": "string"
    },
    "requestedDate": {
      "type": "string",
      "format": "date-time"
    },
    "serviceDate": {
      "type": "string",
      "format": "date"
    },
    "subscriber": {
      "$ref": "#/components/schemas/SubscriberInfo"
    },
    "payer": {
      "$ref": "#/components/schemas/PayerInfo"
    },
    "coverages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Coverage"
      }
    },
    "planInformation": {
      "$ref": "#/components/schemas/PlanInformation"
    }
  }
}