-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Firely 5.11.3, add binary resource test (#4814)
Update FhirService to use Firely 5.11.3 SDK Refs AB#135366
- Loading branch information
Showing
22 changed files
with
1,090 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
src/Microsoft.Health.Fhir.Tests.Common/TestFiles/R4/CommunicationAttachment.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"resourceType": "Communication", | ||
"id": "fm-attachment", | ||
"text": { | ||
"status": "generated", | ||
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Attachment which is unsolicited</div>" | ||
}, | ||
"identifier": [ | ||
{ | ||
"system": "http://www.providerco.com/communication", | ||
"value": "12345" | ||
} | ||
], | ||
"status": "completed", | ||
"category": [ | ||
{ | ||
"coding": [ | ||
{ | ||
"system": "http://acme.org/messagetypes", | ||
"code": "SolicitedAttachment" | ||
} | ||
] | ||
} | ||
], | ||
"subject": { | ||
"reference": "Patient/1" | ||
}, | ||
"about": [ | ||
{ | ||
"identifier": { | ||
"system": "http://happyvalley.com/claim", | ||
"value": "12345" | ||
} | ||
}, | ||
{ | ||
"identifier": { | ||
"system": "http://www.BenefitsInc.com/fhir/claimresponse", | ||
"value": "R3500" | ||
} | ||
} | ||
], | ||
"sent": "2016-06-12T18:01:10-08:00", | ||
"recipient": [ | ||
{ | ||
"identifier": { | ||
"system": "http://www.jurisdiction.com/insurer", | ||
"value": "123456" | ||
} | ||
} | ||
], | ||
"sender": { | ||
"identifier": { | ||
"system": "http://www.jurisdiction.com/provideroffices", | ||
"value": "3456" | ||
} | ||
}, | ||
"payload": [ | ||
{ | ||
"contentAttachment": { | ||
"contentType": "application/pdf", | ||
"data": "SGVsbG8=", | ||
"title": "accident notes 20100201.pdf", | ||
"creation": "2010-02-01T11:50:23-05:00" | ||
} | ||
}, | ||
{ | ||
"contentAttachment": { | ||
"contentType": "application/pdf", | ||
"url": "http://example.org/docs/AB12345", | ||
"size": 104274, | ||
"hash": "SGVsbG8gdGhlcmU=", | ||
"creation": "2010-02-01T10:57:34+01:00" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.