PayerList schema from Availity API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/availity/refs/heads/main/json-schema/eligibility-payer-list-schema.json", "title": "PayerList", "description": "PayerList schema from Availity API", "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" } } } } } } }