availity · Schema
PayerList
Properties
| Name | Type | Description |
|---|---|---|
| data | array |
JSON Schema
{
"$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"
}
}
}
}
}
}
}