Skip to content

Commit abebb89

Browse files
authored
Merge pull request #316 from microsoft/dotliquid
Merge dotliquid to main
2 parents f0dc5db + 3f7ae2f commit abebb89

File tree

210 files changed

+3113
-5031
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+3113
-5031
lines changed

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@
44
*.xml text eol=LF
55
*.ccda text eol=LF
66
*.hl7 text eol=LF
7-
*.md text eol=LF
7+
*.md text eol=LF
8+
9+
## Ensure eol not changed only for unit tests.
10+
src/Microsoft.Health.Fhir.TemplateManagement.UnitTests/TestData/MockUserFolder/*.* binary

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
##
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

6+
**/oras.exe
7+
**/oras-osx
8+
**/oras*.tar.gz
9+
610
# User-specific files
711
*.rsuser
812
*.suo
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"PatientId": 12434,
3+
"MRN": "M0R1N2",
4+
"FirstName": "Jerry",
5+
"LastName": "Smith",
6+
"Phone Number": [
7+
"1234-5678",
8+
"1234-5679"
9+
],
10+
"Gender": "M",
11+
"DOB": "20010110"
12+
}
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
{
2+
"resourceType": "ChargeItem",
3+
"id": "example",
4+
"text": {
5+
"status": "generated",
6+
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Example of ChargeItem Usage in Context of the German EBM Billing code system</div>"
7+
},
8+
"identifier": {
9+
"system": "http://myHospital.org/ChargeItems",
10+
"value": "654321"
11+
},
12+
"definition": [
13+
"http://www.kbv.de/tools/ebm/html/01520_2904360860826220813632.html"
14+
],
15+
"status": "billable",
16+
"code": {
17+
"coding": [
18+
{
19+
"code": "01510",
20+
"display": "Zusatzpauschale für Beobachtung nach diagnostischer Koronarangiografie"
21+
}
22+
]
23+
},
24+
"subject": {
25+
"reference": "Patient/example"
26+
},
27+
"context": {
28+
"reference": "Encounter/example"
29+
},
30+
"occurrencePeriod": {
31+
"start": "2017-01-25T08:00:00+01:00",
32+
"end": "2017-01-25T12:35:00+01:00"
33+
},
34+
"participant": [
35+
{
36+
"role": {
37+
"coding": [
38+
{
39+
"system": "http://snomed.info/sct",
40+
"code": "17561000",
41+
"display": "Cardiologist"
42+
}
43+
]
44+
},
45+
"actor": {
46+
"reference": "Practitioner/example"
47+
}
48+
},
49+
{
50+
"role": {
51+
"coding": [
52+
{
53+
"system": "http://snomed.info/sct",
54+
"code": "224542009",
55+
"display": "Coronary Care Nurse"
56+
}
57+
]
58+
},
59+
"actor": {
60+
"reference": "Practitioner/example"
61+
}
62+
}
63+
],
64+
"performingOrganization": {
65+
"identifier": {
66+
"system": "http://myhospital/NamingSystem/departments",
67+
"value": "CARD_INTERMEDIATE_CARE"
68+
}
69+
},
70+
"requestingOrganization": {
71+
"identifier": {
72+
"system": "http://myhospital/NamingSystem/departments",
73+
"value": "CARD_U1"
74+
}
75+
},
76+
"quantity": {
77+
"value": 1
78+
},
79+
"factorOverride": 0.8,
80+
"priceOverride": {
81+
"value": 40,
82+
"unit": "EUR",
83+
"system": "urn:iso:std:iso:4217",
84+
"code": "EUR"
85+
},
86+
"overrideReason": "Patient is Cardiologist's golf buddy, so he gets a 20% discount!",
87+
"enterer": {
88+
"reference": "Practitioner/example"
89+
},
90+
"enteredDate": "2017-01-25T23:55:04+01:00",
91+
"reason": [
92+
{
93+
"coding": [
94+
{
95+
"system": "http://hl7.org/fhir/sid/icd-10",
96+
"code": "123456",
97+
"display": "DIAG-1"
98+
}
99+
]
100+
}
101+
],
102+
"service": [
103+
{
104+
"reference": "Procedure/example"
105+
}
106+
],
107+
"account": [
108+
{
109+
"reference": "Account/example"
110+
}
111+
],
112+
"note": [
113+
{
114+
"authorReference": {
115+
"reference": "Practitioner/example"
116+
},
117+
"time": "2017-01-25T23:55:04+01:00",
118+
"text": "The code is only applicable for periods longer than 4h"
119+
}
120+
]
121+
}

data/Templates/Ccda/ValueSet/_AllergyCategory.liquid

Lines changed: 0 additions & 22 deletions
This file was deleted.

data/Templates/Ccda/ValueSet/_AllergySeverity.liquid

Lines changed: 0 additions & 13 deletions
This file was deleted.

data/Templates/Ccda/ValueSet/_AllergyStatus.liquid

Lines changed: 0 additions & 12 deletions
This file was deleted.

data/Templates/Ccda/ValueSet/_CompositionStatus.liquid

Lines changed: 0 additions & 20 deletions
This file was deleted.

data/Templates/Ccda/ValueSet/_DiagnosticReportStatus.liquid

Lines changed: 0 additions & 8 deletions
This file was deleted.

data/Templates/Ccda/ValueSet/_EncounterStatus.liquid

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)