Unified Search
Performing a Unified Search
Overview
The searchHealthResources method enables comprehensive searching across resource types within the b.well ecosystem. It allows users to find and retrieve information about healthcare providers, facilities, and support services, including practitioners, clinics, hospitals, health systems, insurance providers, and laboratories, from a single search.
Method Signature
suspend fun searchHealthResources(request: HealthResourceSearchRequest): BWellResult<HealthResource>request: Encapsulates search parameters.BWellResult<HealthResource>: Returns a collection of matching search results, FHIR OperationOutcome, and paging information.
Search Parameters
- Search Term (String):
- Key filter for searches, applicable for names, specialties, locations, or addresses.
- Filters (SearchHealthResourcesInput):
- Type (Enum) - Filters results based on organization type.
PRACTICEused for hospitals, clinics, and health system connections.PRACTITIONERused for healthcare providers.LABORATORYused for laboratory connections.INSURANCEused for insurance provider connectionsPHARMACYused for pharmacy connections
- ID (Array):
- Only return search results included in the array of IDs
- Include Populated PROA Only:
- Return only results that have PROA connections
- Location:
- Sorts results by geographical location using latitude and longitude
- Type (Enum) - Filters results based on organization type.
- Sort Options:
- By default, results are sorted by relevance in descending (DESC) order when no
sortByvalue is specified.- The most relevant results have the highest score so sorting by DESC is required to see the most relevant results first
- Available sorting options include:
- Relevance (default)
- Distance
- Content
- By default, results are sorted by relevance in descending (DESC) order when no
- Pagination:
page: Specifies the page number for results.pageSize: Determines the number of results per page.
Example Usage
The following example demonstrates how to use the searchHealthResources method and configure a HealthResourceSearchRequest specific to the Providers data connection category:
val request = HealthResourceSearchRequest.Builder()
.id(ids)
.searchTerm(searchTerm)
.searchResultType(listOf(SearchResultType.PRACTITIONER))
.includePopulatedPROAonly()
.location(latitude, longitude)
.sortBy(HealthResourceSortField.RELEVANCE, SortOrder.DESC)
.page(page)
.pageSize(pageSize)
.build()
Updated about 2 months ago
