Initial version
This commit is contained in:
11
input/examples/Patient-example.xml
Normal file
11
input/examples/Patient-example.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Patient xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<id value="example"/>
|
||||
<extension url="http://hl7.org/fhir/uv/myig/StructureDefinition/ext-myExtension">
|
||||
<valueBoolean value="false"/>
|
||||
</extension>
|
||||
<name>
|
||||
<family value="Smith"/>
|
||||
<given value="John"/>
|
||||
</name>
|
||||
</Patient>
|
||||
6
input/ignoreWarnings.txt
Normal file
6
input/ignoreWarnings.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
// Add warning and/or information messages here after you've confirmed that they aren't really a problem
|
||||
// (And include comments like this justifying why)
|
||||
|
||||
// We define the version on a global basis, so don't need it on the individual source definitions
|
||||
WARNING: http://hl7.org/fhir/uv/myig/StructureDefinition/ext-myExtension: Profiles SHOULD state their own version
|
||||
WARNING: http://hl7.org/fhir/uv/myig/StructureDefinition/somepatientprofile: Profiles SHOULD state their own version
|
||||
38
input/includes/menu.xml
Normal file
38
input/includes/menu.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<ul xmlns="http://www.w3.org/1999/xhtml" class="nav navbar-nav">
|
||||
<li><a href="index.html">IG Home</a></li>
|
||||
<li><a href="toc.html">Table of Contents</a></li>
|
||||
<li class="dropdown">
|
||||
<a data-toggle="dropdown" href="#" class="dropdown-toggle">MyIg Background<b class="caret">
|
||||
</b>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li>
|
||||
<a href="background.html">Backaground</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a data-toggle="dropdown" href="#" class="dropdown-toggle">Specification<b class="caret">
|
||||
</b>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li>
|
||||
<a href="spec.html">Detailed Specification</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="artifacts.html">Artifact Index</a></li>
|
||||
<li class="dropdown">
|
||||
<a data-toggle="dropdown" href="#" class="dropdown-toggle">Support<b class="caret">
|
||||
</b>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li>
|
||||
<a target="_blank" href="{{site.data.fhir.path}}index.html">FHIR Spec <img src="external.png" style="text-align: baseline"/></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="downloads.html">Downloads</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
76
input/myig.xml
Normal file
76
input/myig.xml
Normal file
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Start by finding all references to "myig" and updating to appropriate text for your IG, including changing realm -->
|
||||
<ImplementationGuide xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<id value="hl7.fhir.uv.myig"/>
|
||||
<url value="http://hl7.org/fhir/uv/myig/ImplementationGuide/hl7.fhir.uv.myig"/>
|
||||
<name value="YourComputableMyIGNameHere"/>
|
||||
<title value="Your User Friendly Name for MyIG Here"/>
|
||||
<status value="draft"/>
|
||||
<experimental value="false"/>
|
||||
<publisher value="HL7 International - [Some] Work Group"/>
|
||||
<contact>
|
||||
<telecom>
|
||||
<!-- Or whatever URL and/or email address(es) are appropriate -->
|
||||
<system value="other"/>
|
||||
<value value="http://hl7.org/Special/committees/[something]"/>
|
||||
</telecom>
|
||||
</contact>
|
||||
<description value="A brief description of what MyIG is about (probably the same text as in your readme)"/>
|
||||
<jurisdiction>
|
||||
<!-- This will drive SNOMED release used -->
|
||||
<coding>
|
||||
<!-- This is the code for universal -->
|
||||
<system value="http://unstats.un.org/unsd/methods/m49/m49.htm"/>
|
||||
<code value="001"/>
|
||||
<!-- Change to this if the IG is country-specific
|
||||
<system value="http://unstats.un.org/unsd/methods/m49/m49.htm"/>
|
||||
<code value="001"/>
|
||||
-->
|
||||
</coding>
|
||||
</jurisdiction>
|
||||
<packageId value="hl7.fhir.uv.myig"/>
|
||||
<!-- This is whatever FHIR version the IG artifacts are targeting (not the version of this file, which should always be 'current release') -->
|
||||
<fhirVersion value="4.0.0"/>
|
||||
<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... -->
|
||||
<!-- <resource>
|
||||
<reference>
|
||||
<reference value="StructureDefinition/structuredefinition-somePatientProfile"/>
|
||||
</reference>
|
||||
<name value="Name you want in artifact list"/>
|
||||
<description value="Description you want in artifact list"/>
|
||||
</resource>-->
|
||||
<page>
|
||||
<!-- The root will always be toc.html - the template will force it if you don't do it -->
|
||||
<nameUrl value="toc.html"/>
|
||||
<title value="Table of Contents"/>
|
||||
<generation value="html"/>
|
||||
<page>
|
||||
<nameUrl value="index.html"/>
|
||||
<title value="MyIG Home Page"/>
|
||||
<generation value="html"/>
|
||||
</page>
|
||||
<page>
|
||||
<nameUrl value="background.html"/>
|
||||
<title value="Background"/>
|
||||
<generation value="html"/>
|
||||
</page>
|
||||
<page>
|
||||
<nameUrl value="spec.html"/>
|
||||
<title value="Detailed Specification"/>
|
||||
<generation value="html"/>
|
||||
</page>
|
||||
<page>
|
||||
<nameUrl value="downloads.html"/>
|
||||
<title value="Useful Downloads"/>
|
||||
<generation value="html"/>
|
||||
</page>
|
||||
<page>
|
||||
<nameUrl value="changes.html"/>
|
||||
<title value="IG Change History"/>
|
||||
<generation value="html"/>
|
||||
</page>
|
||||
</page>
|
||||
</definition>
|
||||
</ImplementationGuide>
|
||||
5
input/pagecontent/background.xml
Normal file
5
input/pagecontent/background.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<p>
|
||||
To do
|
||||
</p>
|
||||
</div>
|
||||
12
input/pagecontent/changes.xml
Normal file
12
input/pagecontent/changes.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<p>
|
||||
This provides a list of changes to the MyIG specification since its initial release
|
||||
</p>
|
||||
<a name="0.1.0"> </a>
|
||||
<p>
|
||||
<b>2099-01-01 v0.1.0 - My IG R1 (STU ballot 1) Ballot Candidate</b> based on FHIR R4
|
||||
</p>
|
||||
<ul>
|
||||
<li>Initial version</li>
|
||||
</ul>
|
||||
</div>
|
||||
5
input/pagecontent/downloads.xml
Normal file
5
input/pagecontent/downloads.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<p>
|
||||
To do
|
||||
</p>
|
||||
</div>
|
||||
30
input/pagecontent/index.xml
Normal file
30
input/pagecontent/index.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<!-- The spaces between the open and close "a" tag are mandatory. (Cuz HTML renderers are dumb...) -->
|
||||
<a name="intro"> </a>
|
||||
<h3>Introduction</h3>
|
||||
<p>
|
||||
What is this IG about (in patient/non-expert friendly terms).
|
||||
</p>
|
||||
<a name="technical"> </a>
|
||||
<h3>Technical Overview</h3>
|
||||
<p>
|
||||
Additional detail/context setting for those who have significant background in the domain. (Try to make as understandable as you can, but
|
||||
set important context).
|
||||
</p>
|
||||
<a name="walkthrough"> </a>
|
||||
<p>
|
||||
The main sections of this IG are:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="background.html">Background</a> - provides business context for the implementation guide and information that implementers should be
|
||||
familiar with before reading the remainder of the IG. There could be multiple pages for this.
|
||||
</li>
|
||||
<li>
|
||||
<a href="spec.html">Detailed Specification</a> - The actual stuff implementers are expected to do. (Could be multiple pages for this.)
|
||||
</li>
|
||||
<li>
|
||||
<a href="downloads.html">Downloads</a> - Allows downloading a copy of this implementation guide and other useful information
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
5
input/pagecontent/spec.xml
Normal file
5
input/pagecontent/spec.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas-r5/fhir-single.xsd">
|
||||
<p>
|
||||
To do
|
||||
</p>
|
||||
</div>
|
||||
9919
input/resources/resources-spreadsheet.xml
Normal file
9919
input/resources/resources-spreadsheet.xml
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user