Skip to content
Open
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2af8815
Existing work
edward-miller-lcg Jan 6, 2026
66eff8b
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Jan 7, 2026
58d1e31
Existing work
edward-miller-lcg Jan 10, 2026
d8850a7
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Jan 10, 2026
93d5a1d
Update BlobStorageService.cs
edward-miller-lcg Jan 12, 2026
39ae232
Update BlobStorageService.cs
edward-miller-lcg Jan 12, 2026
316fe2d
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
adaacf8
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Jan 13, 2026
aa0b619
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
04c4bba
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
79082c7
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
465a54f
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
30f666b
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
47480b5
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
5e4d976
Update BlobStorageService.cs
edward-miller-lcg Jan 13, 2026
90c318e
Update BlobStorageService.cs
edward-miller-lcg Jan 14, 2026
9deeb2e
Update BlobStorageService.cs
edward-miller-lcg Jan 14, 2026
471f717
Update BlobStorageService.cs
edward-miller-lcg Jan 14, 2026
e885dee
Update BlobStorageService.cs
edward-miller-lcg Jan 14, 2026
4dd0ade
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Jan 16, 2026
97216e2
Update appsettings.Docker.json
edward-miller-lcg Jan 16, 2026
e74722d
Update BlobStorageService.cs
edward-miller-lcg Jan 16, 2026
bdb6ae1
Update BlobStorageService.cs
edward-miller-lcg Jan 16, 2026
f2a582f
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Jan 16, 2026
518a735
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Jan 20, 2026
52dc762
Merge branch 'dev' into connectathon/Jan2026
edward-miller-lcg Feb 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ο»Ώusing System.Diagnostics;
using System.Diagnostics;
using System.Net;
using Confluent.Kafka;
using DataAcquisition.Domain.Application.Queries;
Expand Down
1 change: 1 addition & 0 deletions DotNet/Normalization/Application/FhirJsonConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public class FhirResourceConverter : JsonConverter<DomainResource>

public override DomainResource Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
_fhirParser.Settings.PermissiveParsing = true;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this related to/required for JSON output?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Permissive Parsing is to allow for invalid json objects to make it through as a C# object. Otherwise, if it's invalid FHIR, it will throw an error.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Guess my question was more ... does MVP-style report output require Normalization to parse more leniently? Seems unrelated to the rest of the PR.

try
{
// Read the JSON string for the resource
Expand Down
Loading
Loading