FhirNavigator 1.0.0

dotnet add package FhirNavigator --version 1.0.0
                    
NuGet\Install-Package FhirNavigator -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FhirNavigator" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FhirNavigator" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="FhirNavigator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FhirNavigator --version 1.0.0
                    
#r "nuget: FhirNavigator, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FhirNavigator@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FhirNavigator&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=FhirNavigator&version=1.0.0
                    
Install as a Cake Tool

FHIR Navigator

FHIR Navigator is framework for real world use of the FHIR API. It is a supporting abstraction layer around the basic FHIR interactions simplifying the most common use cases and challenges developers face when using these APIs in practice.

This package is an Non-Official support library for the amazing Official Firely .NET SDK for HL7 FHIR. This package take a hard dependency on the Hl7.Fhir.R4 NuGet package.

What does FHIR Navigator provide:

  • Automated OAuth2 Authentication token renewal support (ClientId, ClientSecret, Scopes, TokenEndPoint)
  • Basic Authentication support (Username/Password)
  • Proxy Support
  • Configure multiple named FHIR repositories, switch between each by name for FHIR API interactions
  • Automated pagination support
  • Resources returned via Reads or Searches are cache, allowing for simple access post query
  • Automated resource reference resolution covering, Contained, Cached, and Repository
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 100 8/27/2026
0.0.9 163 4/7/2026
0.0.8 265 10/22/2025
0.0.7 232 10/21/2025
0.0.6 283 8/27/2025
0.0.5 215 11/9/2024
0.0.4 233 8/14/2024
0.0.3 217 8/10/2024
0.0.2 234 8/10/2024
0.0.1 218 8/10/2024

1.0.0 contains breaking changes for consumers upgrading from 0.0.9.

BREAKING - three public types moved namespace:
 Result / Result<T>  ->  FhirNavigator.Infrastructure       (was Sonic.Fhir.Tools.Placer.Application.Infrastructure)
 IFhirUriFactory      ->  FhirNavigator.FhirUri              (was Sonic.Fhir.Tools.Placer.Application.FhirSupport)
 OAuthToken           ->  FhirNavigator.Client.OAuthToken    (was Sonic.Orders.Common.Api.OAuthToken)
Update or remove any 'using Sonic.*' directives.

BREAKING - FhirRepositorySettings.UseBearerToken is a new required member. Code that
constructs FhirRepositorySettings via an object initialiser must now set it
(e.g. UseBearerToken = false). Settings bound from appsettings.json are unaffected.

NEW - Bearer token authentication via the UseBearerToken and BearerToken settings.
NEW - The package now declares the MIT license and includes the README.
NEW - A symbol package (.snupkg) with SourceLink is published, so consumers can step
     into FhirNavigator source while debugging.