{ "$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" } } }