Availity · Schema

SearchBy276Request

HealthcareClearinghouseHIPAAX12 EDIEligibilityClaimsPrior AuthorizationRevenue Cycle ManagementPayersPrice Transparency

Properties

Name Type Description
payerId string
patientLastName string
patientFirstName string
patientBirthDate string
fromDate string
toDate string
providerLastName string
patientSameAsSubscriber boolean
View JSON Schema on GitHub

JSON Schema

availity-searchby276request-schema.json Raw ↑
{
  "$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
    }
  }
}