This commit is contained in:
Lloyd McKenzie
2020-06-27 11:11:11 -06:00
13 changed files with 12603 additions and 9734 deletions

View File

@@ -0,0 +1,17 @@
{
"options":[
"EnableAnnotations",
"EnableLocators",
"DisableListDemotion",
"DisableListPromotion"
],
"formats":[
"XML",
"JXSON"
],
"validateUnits":true,
"verifyOnly":false,
"errorLevel":"Info",
"signatureLevel":"None"
}

View File

@@ -1,14 +1,24 @@
{
"resourceType" : "Library",
"id": "example",
"url" : "http://somewhere.org/fhir/uv/myig/Library/example",
"version" : "1.0.0",
"name": "example",
"title": "Example CQL Library",
"status" : "draft",
"experimental": true,
"type" : {
"coding" : [{
"system" : "http://terminology.hl7.org/CodeSystem/library-type",
"code" : "logic-library"
}]
},
"subject": {
"coding": [{
"system": "hl7.org/fhir/resource-types",
"code": "Patient"
}]
},
"content" : [{
"id" : "ig-loader-example.cql"
}]

View File

@@ -38,11 +38,6 @@
<license value="CC0-1.0"/>
<!-- This is whatever FHIR version(s) the IG artifacts are targeting (not the version of this file, which should always be 'current release') -->
<fhirVersion value="4.0.1"/>
<!-- <dependsOn>
<uri value="http://somethign"/>
<packageId value="de.basisprofil.r4"/>
<version value="0.9.2"/>
</dependsOn> -->
<definition>
<!-- You don't need to define any groupings. The IGPublisher will define them for you. You only need to do so if your IG is 'special' and it's
inappropriate to use the defaults. Feel free to provide feedback about the defaults... -->
@@ -67,9 +62,9 @@
</resource>
<resource>
<reference>
<reference value="Bundle/h1"/>
<reference value="ValueSet/valueset-no-codesystem"/>
</reference>
<name value="History"/>
<name value="Value set for no code system"/>
</resource>
<!-- <resource>
<reference>
@@ -131,6 +126,10 @@
<code value="path-binary"/>
<value value="input\cql"/>
</parameter>
<parameter>
<code value="path-liquid"/>
<value value="templates\liquid"/>
</parameter>
<!-- Uncomment one or more of these if you want to limit which syntaxes are supported or want to disable the display of mappings
<parameter>
<code value="excludexml"/>

View File

@@ -1,2 +1,4 @@
### A Heading
You can also use markdown if that's your thing
You can also use markdown if that's your thing
And an icon: ![resource](icon-resource.png)

View File

@@ -0,0 +1,20 @@
<ValueSet xmlns="http://hl7.org/fhir">
<id value="valueset-no-codesystem"/>
<url value="http://somewhere.org/fhir/uv/myig/ValueSet/valueset-no-codesystem"/>
<name value="ValueSetWithNoCodeSystem"/>
<status value="draft"/>
<experimental value="true"/>
<date value="2015-06-22"/>
<compose>
<include>
<system value="http://not-a-known-code-system"/>
<version value="2.36"/>
<concept>
<code value="not-known-code"/>
</concept>
<concept>
<code value="not-known-code"/>
</concept>
</include>
</compose>
</ValueSet>