availity · Schema

PayerList

Properties

Name Type Description
data array
View JSON Schema on GitHub

JSON Schema

availity-payerlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayerList",
  "title": "PayerList",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "eligibilityUrl": {
            "type": "string"
          },
          "supportedTransactions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}