Ignixa.Abstractions 0.0.151

dotnet add package Ignixa.Abstractions --version 0.0.151
                    
NuGet\Install-Package Ignixa.Abstractions -Version 0.0.151
                    
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="Ignixa.Abstractions" Version="0.0.151" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ignixa.Abstractions" Version="0.0.151" />
                    
Directory.Packages.props
<PackageReference Include="Ignixa.Abstractions" />
                    
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 Ignixa.Abstractions --version 0.0.151
                    
#r "nuget: Ignixa.Abstractions, 0.0.151"
                    
#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 Ignixa.Abstractions@0.0.151
                    
#: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=Ignixa.Abstractions&version=0.0.151
                    
Install as a Cake Addin
#tool nuget:?package=Ignixa.Abstractions&version=0.0.151
                    
Install as a Cake Tool

Ignixa.Abstractions

Core interfaces and abstractions for the Ignixa FHIR Server ecosystem. This package contains the foundational types used across all Ignixa packages.

Why Use This Package?

You typically don't need to install this directly - it's automatically included as a dependency when you use other Ignixa packages like:

  • Ignixa.FhirPath
  • Ignixa.Search
  • Ignixa.Validation
  • Ignixa.Specification
  • Ignixa.Serialization

This package provides the common abstractions that allow these packages to work together seamlessly.

Installation

dotnet add package Ignixa.Abstractions

What's Included

Core Interfaces

  • IElement: Represents a node in a FHIR resource tree
  • IType/ITypeExtended: FHIR type definitions and metadata
  • ISchema: Access to FHIR structure definitions
  • ISourceNavigator: Low-level resource navigation
  • IBinding: Value set binding information
  • IConstraint: FHIRPath constraint definitions

For Library Authors

If you're building your own FHIR tools, use these interfaces to ensure compatibility with the Ignixa ecosystem:

using Ignixa.Abstractions;

// Accept IElement to work with any FHIR data source
public void ProcessResource(IElement resource)
{
    foreach (var child in resource.Children)
    {
        Console.WriteLine($"{child.Name}: {child.Value}");
    }
}

// Use ISchema for type information
public void ValidateType(ISchema schema, string typeName)
{
    var type = schema.GetTypeByName(typeName);
    // Work with type metadata
}

License

MIT License - see LICENSE file in repository root

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 (10)

Showing the top 5 NuGet packages that depend on Ignixa.Abstractions:

Package Downloads
Ignixa.FhirPath

FHIRPath expression evaluation engine for FHIR resources

Ignixa.Serialization

High-performance FHIR JSON serialization

Ignixa.Specification

FHIR specification data and structure providers (R4/R4B/R5/STU3)

Ignixa.Extensions.FirelySdk6

Firely SDK interoperability shims for bidirectional conversion

Ignixa.SqlOnFhir

SQL on FHIR implementation for analytics queries

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.151 72 1/21/2026
0.0.150 103 1/20/2026
0.0.149 191 1/19/2026
0.0.148 228 1/18/2026
0.0.142 262 1/12/2026
0.0.137 332 1/9/2026
0.0.127 348 12/29/2025
0.0.109 515 12/18/2025
0.0.101 454 12/16/2025
0.0.96 615 12/10/2025
0.0.87 600 12/8/2025
0.0.70 514 12/7/2025
0.0.68 335 12/7/2025
0.0.62 351 12/6/2025
0.0.59 295 12/5/2025
0.0.58 324 12/5/2025
0.0.57 330 12/3/2025
0.0.56 792 12/3/2025
0.0.55 553 12/1/2025
0.0.54 521 11/30/2025
0.0.53 524 11/30/2025
0.0.51 224 11/29/2025
0.0.50 220 11/29/2025