availity · Schema
SummarySearchRequest
Properties
| Name | Type | Description |
|---|---|---|
| payerId | string | |
| requestType | string | |
| memberId | string | |
| fromDate | string | |
| toDate | string | |
| providerNpi | string | |
| checkNumber | string | |
| requestedStatus | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SummarySearchRequest",
"title": "SummarySearchRequest",
"type": "object",
"required": [
"payerId",
"requestType"
],
"properties": {
"payerId": {
"type": "string",
"example": "BCBS001"
},
"requestType": {
"type": "string",
"enum": [
"SERVICE_DATE",
"MEMBER_ID"
],
"example": "SERVICE_DATE"
},
"memberId": {
"type": "string",
"example": "MEM123456"
},
"fromDate": {
"type": "string",
"format": "date",
"example": "2025-01-01"
},
"toDate": {
"type": "string",
"format": "date",
"example": "2025-12-31"
},
"providerNpi": {
"type": "string",
"example": "1234567890"
},
"checkNumber": {
"type": "string",
"example": "CHK-001234"
},
"requestedStatus": {
"type": "string",
"example": "PAID"
}
}
}