Hl7.Fhir.Specification.STU3 5.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Hl7.Fhir.Specification.STU3 --version 5.7.0
NuGet\Install-Package Hl7.Fhir.Specification.STU3 -Version 5.7.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="Hl7.Fhir.Specification.STU3" Version="5.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Hl7.Fhir.Specification.STU3 --version 5.7.0
#r "nuget: Hl7.Fhir.Specification.STU3, 5.7.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.
// Install Hl7.Fhir.Specification.STU3 as a Cake Addin
#addin nuget:?package=Hl7.Fhir.Specification.STU3&version=5.7.0

// Install Hl7.Fhir.Specification.STU3 as a Cake Tool
#tool nuget:?package=Hl7.Fhir.Specification.STU3&version=5.7.0

Build Status

IMPORTANT The 5.0 version of the SDK contains substantial changes to the way we have organized the NuGet packages and source code. Please read before installing this new 5.0 version.

Introduction

This is Firely's official support SDK for working with HL7 FHIR on the Microsoft .NET (dotnet) platform.

This SDK provides:

  • Class models for working with the FHIR data model using POCO's
  • Xml and Json parsers and serializers
  • A REST client for working with FHIR-compliant servers
  • Helper classes to work with the specification metadata, most notably StructureDefinition and generation of differentials
  • Validation of instances based on profiles
  • Evaluation FhirPath expressions

Release notes

Read the releases notes on firely-net-sdk/releases. You can find documentation about this SDK in the Firely docs site.

Getting Started

Before installing one of the NuGet packages (or clone the repo) it is important to understand that HL7 has published several updates of the FHIR specification, each with breaking changes - so you need to ensure you use the version that is right for you:

  • STU3 (published March 2017) is older, but still widely in use and fully supported by the SDK.
  • R4 (published January 2019) is in active use and fully supported by the SDK.
  • R4B (published May 2022) is in active use and fully supported by the SDK.
  • R5 (published March 26 2023) is the latest official release of the FHIR spec and is fully supported by the SDK.

Read the online documentation, and download the correct for your FHIR release. Depending on the version of FHIR you require, you'll find the relevant link to the package below. For most developers, just including this NuGet package is enough to get started.

Spec version Git branch NuGet
R5 https://github.com/FirelyTeam/firely-net-sdk/tree/release/5.0.0 https://www.nuget.org/packages/Hl7.Fhir.R5
R4B https://github.com/FirelyTeam/firely-net-sdk/tree/release/5.0.0 https://www.nuget.org/packages/Hl7.Fhir.R4B
R4 https://github.com/FirelyTeam/firely-net-sdk/tree/release/5.0.0 https://www.nuget.org/packages/Hl7.Fhir.R4
STU3 https://github.com/FirelyTeam/firely-net-sdk/tree/release/5.0.0 https://www.nuget.org/packages/Hl7.Fhir.STU3

Using a pre-release NuGet package

Every release of the SDK results in a NuGet package on the normal NuGet feed. However, each commit on our develop branch also results in a pre-release package. These are public too. So if you want to be brave and use a pre-release packages, you can do so by adding https://nuget.pkg.github.com/FirelyTeam/index.json to your NuGet sources:

  • Get a Personal Access token (PAT) from github.com with scope read:packages

  • Next open a console on your machine and run dotnet nuget add source --name github --username <USERNAME> --password <PAT> https://nuget.pkg.github.com/FirelyTeam/index.json

USERNAME: your username on GitHub PAT: your Personal access token with at least the scope read:packages

Upgrading

We spend a lot of effort trying to maintain compile compatibility (not binary compatibility) between minor releases of the SDK. We do, however, publish a new major version with breaking changes about once a year. The table below lists the breaking changes for each of the major upgrades.

SDK version Breaking changes
2.x https://github.com/FirelyTeam/firely-net-sdk/wiki/Breaking-changes-in-2.0
3.x https://github.com/FirelyTeam/firely-net-sdk/wiki/Breaking-changes-in-3.0
4.x https://github.com/FirelyTeam/firely-net-sdk/wiki/Breaking-changes-in-4.0
5.x https://github.com/FirelyTeam/firely-net-sdk/wiki/Breaking-changes-in-5.0

The SDK has been restructured for the 5.0 release. Please take note of the following changes if you are upgrading:

  • You should only reference the main package (Hl7.Fhir.<release>).
  • If you need the specification.zip (for validation, if you are using the ZipSource resolver), add Hl7.Fhir.Specification.Data.<release>.
  • The "old" Hl7.Fhir.Specification.<release> package is now a metapackage that will include these two packages.
  • You should not reference any other packages that existed pre-5.0 (Hl7.Fhir.ElementModel etc.)

The profile validator has been split off into its own repository. The NuGet packages for the validator that are compatible with the SDK 5.0 release can be found on NuGet.

Support

We actively monitor the issues coming in through the GitHub repository at https://github.com/FirelyTeam/firely-net-sdk/issues. You are welcome to register your bugs and feature suggestions there. For questions and broader discussions, we use the .NET FHIR Implementers chat on Zulip.

Contributing

We are welcoming contributions!

If you want to participate in this project, we're using Git Flow for our branch management. Please submit PRs with changes against the develop branche.

Note: Since the 5.0 release of the SDK, the branches for STU3 and newer have been combined in a single develop branch. This branch now contains the code for all FHIR releases from STU3 and up. We have also refactored all the common code out to projects within that branch, so the separate common repository (at https://github.com/FirelyTeam/firely-net-common) is no longer in use. This greatly simplifies management and creating PRs for these projects.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Hl7.Fhir.Specification.STU3:

Package Downloads
FhirStarter.Flare.STU3

Contains the necessary classes to create a FHIR server. Both the setup classes and FHIR controller is here.

FhirStarter.Bonfire.STU3

Complements the Spark.Engine library with additional features such as a FHIR service interface and service handling

FhirKhit.Tools.R3

FhirKhit tools for Fhir STU 3

Eir.FhirKhit.R3

FhirKhit tools for Fhir STU 3

FhirTool.Core

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Hl7.Fhir.Specification.STU3:

Repository Stars
microsoft/fhir-server
A service that implements the FHIR standard
Version Downloads Last updated
5.7.0 54 3/15/2024
5.6.1 208 2/13/2024
5.6.0 85 2/13/2024
5.5.1 165 1/16/2024
5.5.0 180 1/10/2024
5.4.0 421 10/26/2023
5.3.0 294 7/27/2023
5.2.0 234 5/26/2023
5.1.0 269 4/28/2023
5.0.0 629 2/17/2023
5.0.0-beta1 257 12/21/2022
4.3.0 40,420 9/22/2022
4.2.1 3,536 8/17/2022
4.2.0 717 8/16/2022
4.1.0 2,938 7/7/2022
4.0.0 4,500 5/10/2022
4.0.0-beta2 178 3/4/2022
4.0.0-beta1 173 2/7/2022
3.8.3 11,518 4/28/2022
3.8.2 8,442 3/28/2022
3.8.1 583 3/4/2022
3.8.0 26,648 1/7/2022
3.7.0 2,868 12/1/2021
3.6.0 18,002 10/15/2021
3.5.0 3,594 9/2/2021
3.4.0 7,284 6/30/2021
3.3.0 2,643 6/2/2021
3.2.0 5,017 5/4/2021
3.1.0 794 4/1/2021
3.0.0 11,281 2/25/2021
2.0.3 4,133 1/26/2021
2.0.2 649 1/22/2021
2.0.1 4,229 11/25/2020
2.0.0 750 11/16/2020
2.0.0-beta2 372 9/22/2020
2.0.0-beta1 444 7/16/2020
1.9.0 19,272 7/23/2020
1.8.0 851 7/2/2020
1.7.0 5,964 5/6/2020
1.6.0 6,438 3/4/2020
1.5.0 3,360 2/4/2020
1.5.0-beta1 502 12/19/2019
1.4.0 12,872 10/10/2019
1.3.0 10,703 7/10/2019
1.2.1 38,376 4/16/2019
1.2.0 2,328 3/29/2019
1.2.0-beta2 544 2/28/2019
1.2.0-beta1 567 2/20/2019
1.1.3 4,193 2/13/2019
1.1.2 12,623 1/31/2019
1.1.1 758 1/30/2019
1.1.0-beta1 648 12/17/2018
1.0.0 1,169 12/17/2018
1.0.0-beta1 624 11/7/2018
0.96.0 14,793 6/6/2018
0.95.0 2,759 4/12/2018
0.94.0 46,980 12/7/2017
0.94.0-beta2 1,543 11/8/2017
0.94.0-beta1 820 11/7/2017
0.93.5 7,339 10/17/2017
0.93.5-beta7 896 9/27/2017
0.93.5-beta6 859 9/5/2017
0.93.5-beta5 840 8/30/2017
0.93.5-beta4 853 8/29/2017
0.93.5-beta3 891 8/3/2017
0.93.5-beta1 899 7/27/2017
0.93.5-alpha1 892 6/15/2017
0.93.4 12,034 5/7/2017
0.93.4-alpha3 885 5/1/2017
0.93.4-alpha2 929 4/26/2017
0.93.4-alpha1 881 4/26/2017
0.93.3 1,156 4/26/2017
0.93.2 1,135 4/25/2017
0.93.1 1,144 4/25/2017
0.93.0 1,228 4/24/2017
0.93.0-alpha4 950 4/12/2017
0.93.0-alpha3 926 4/11/2017
0.93.0-alpha2 854 4/11/2017
0.93.0-alpha1 986 3/23/2017
0.90.6-alpha7 2,288 9/15/2016
0.90.5-alpha4 1,055 6/7/2016
0.90.5-alpha3 941 4/11/2016