-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c779f93
commit 17f2125
Showing
4 changed files
with
49 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,8 +42,8 @@ jobs: | |
- name: Firely.Terminal (GitHub Actions) | ||
uses: FirelyTeam/[email protected] | ||
with: | ||
PATH_TO_CONFORMANCE_RESOURCES: Conformance-resources | ||
PATH_TO_EXAMPLES: Examples | ||
# PATH_TO_CONFORMANCE_RESOURCES: Conformance-resources | ||
# PATH_TO_EXAMPLES: Examples | ||
PATH_TO_QUALITY_CONTROL_RULES: custom | ||
DOTNET_VALIDATION_ENABLED: true | ||
JAVA_VALIDATION_ENABLED: false | ||
|
File renamed without changes.
File renamed without changes.
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,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Patient xmlns="http://hl7.org/fhir"> | ||
<id value="BarryShaw-patient-INVALID" /> | ||
<meta> | ||
<profile value="http://fake-acme.org/fhir/StructureDefinition/ACMEGithubProjectPatient" /> | ||
</meta> | ||
<extension url="http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex"> | ||
<valueCode value="M" /> | ||
</extension> | ||
<identifier> | ||
<use value="usual" /> | ||
<type> | ||
<coding> | ||
<system value="http://terminology.hl7.org/CodeSystem/v2-0203" /> | ||
<code value="MR" /> | ||
<display value="Medical Record Number" /> | ||
</coding> | ||
<text value="Medical Record Number" /> | ||
</type> | ||
<system value="http://hospital.smarthealthit.org" /> | ||
<value value="1032702" /> | ||
</identifier> | ||
<active value="true" /> | ||
<name> | ||
<family value="Shaw" /> | ||
<given value="Barry" /> | ||
<given value="V." /> | ||
</name> | ||
<telecom> | ||
<system value="phone" /> | ||
<value value="555-555-5555" /> | ||
<use value="home" /> | ||
</telecom> | ||
<telecom> | ||
<system value="email" /> | ||
<value value="[email protected]" /> | ||
</telecom> | ||
<gender value="male" /> | ||
<birthDate value="2007-02-20" /> | ||
<address> | ||
<line value="49 Meadow St" /> | ||
<city value="Mounds" /> | ||
<state value="OK" /> | ||
<postalCode value="74047" /> | ||
<country value="US" /> | ||
</address> | ||
</Patient> |