{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SearchBy276Request", "title": "SearchBy276Request", "type": "object", "required": [ "payerId", "patientLastName", "patientFirstName", "patientBirthDate", "fromDate", "toDate", "providerLastName" ], "properties": { "payerId": { "type": "string", "example": "BCBS001" }, "patientLastName": { "type": "string", "example": "Smith" }, "patientFirstName": { "type": "string", "example": "Jane" }, "patientBirthDate": { "type": "string", "format": "date", "example": "1980-01-15" }, "fromDate": { "type": "string", "format": "date", "example": "2025-01-01" }, "toDate": { "type": "string", "format": "date", "example": "2025-12-31" }, "providerLastName": { "type": "string", "example": "Johnson" }, "patientSameAsSubscriber": { "type": "boolean", "example": true } } }