This wiki has undergone a migration to Confluence found Here
<meta name="googlebot" content="noindex">

Difference between revisions of "Template Instance Validation"

From HL7Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 41: Line 41:
  
 
<code>
 
<code>
<?xml version="1.0" encoding="UTF-8"?>
+
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="DECOR-excerpt.xsd" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
+
<?xml-model href="http://art-decor.org/ADAR/rv/DECOR-excerpt.xsd" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<decor-excerpt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
<decor-excerpt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="DECOR-excerpt.xsd" xmlns:hl7="urn:hl7-org:v3">
+
  xsi:noNamespaceSchemaLocation="http://art-decor.org/ADAR/rv/DECOR-excerpt.xsd" xmlns:hl7="urn:hl7-org:v3">
 
     <terminology>
 
     <terminology>
 
         <!--  
 
         <!--  
Line 153: Line 153:
 
         </template>
 
         </template>
 
     </rules>
 
     </rules>
</decor-excerpt>
+
</decor-excerpt>
 
</code>
 
</code>
  

Latest revision as of 16:12, 11 January 2016

Related Links

Validation of the Template Definition Instances

For the validation of the template definitions according to the Templates DSTU (as of January 2014) a W3C schema with embedded schematron is available.

This page has been established in order to point to all recommended artifacts.

It is used as part of the ART-DECOR reference implementation and project (http://art-decor.org)

Core W3C-Schema

The Core W3C schema for DECOR where the templates part is summarized in element <rules> :: <template> can be downloaded from http://art-decor.org/ADAR/rv/DECOR.xsd

There is an excerpt schema available at http://art-decor.org/ADAR/rv/DECOR-excerpt.xsd that defines value sets and templates only.

There is an example file available at http://art-decor.org/ADAR/rv/DECOR-excerpt-example.xml based on this schema that shows some definitions of templates (and associated value set).

The overall structure is as follows:

<decor-excerpt>
   <terminology>
        <valueSet ... />
   <terminology>
   <rules>
        <template ... />
   </rules>
</decor-excerpt>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://art-decor.org/ADAR/rv/DECOR-excerpt.xsd" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<decor-excerpt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://art-decor.org/ADAR/rv/DECOR-excerpt.xsd" xmlns:hl7="urn:hl7-org:v3">
   <terminology>
       <valueSet id="2.16.840.1.113883.11.20.9.21" name="AgePQ_UCUM" displayName="AgePQ_UCUM" effectiveDate="2013-01-31T00:00:00" statusCode="final">
           <conceptList>
               <concept code="min" codeSystem="2.16.840.1.113883.6.8" displayName="Minute" level="0" type="L"/>
               <concept code="h" codeSystem="2.16.840.1.113883.6.8" displayName="Hour" level="0" type="L"/>
               <concept code="d" codeSystem="2.16.840.1.113883.6.8" displayName="Day" level="0" type="L"/>
               <concept code="wk" codeSystem="2.16.840.1.113883.6.8" displayName="Week" level="0" type="L"/>
               <concept code="mo" codeSystem="2.16.840.1.113883.6.8" displayName="Month" level="0" type="L"/>
               <concept code="a" codeSystem="2.16.840.1.113883.6.8" displayName="Year" level="0" type="L"/>
           </conceptList>
       </valueSet>
   </terminology>
   <rules>
       <template id="2.16.840.1.113883.3.1937.99.61.6.10.2003" name="CDAcustodian" displayName="CDA custodian" effectiveDate="2013-12-05T00:00:00" statusCode="active">
           <desc language="en-US">Custodian of the document</desc>
           <classification type="cdaheaderlevel"/>
           <example>
               <custodian>
                   <assignedCustodian>
                       <representedCustodianOrganization>
                           <id root="2.16.840.1.113883.3.1937.99.3.2.997788"/>
                       </representedCustodianOrganization>
                   </assignedCustodian>
               </custodian>
           </example>
           <element name="hl7:custodian" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true">
               <attribute name="typeCode" value="CST" isOptional="true"/>
               <element name="hl7:assignedCustodian" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true">
                   <attribute name="classCode" value="ASSIGNED" isOptional="true"/>
                   <element name="hl7:representedCustodianOrganization" minimumMultiplicity="0" maximumMultiplicity="1">
                       <element name="hl7:id" minimumMultiplicity="1" maximumMultiplicity="1" conformance="R" datatype="II"/>
                   </element>
               </element>
           </element>
       </template>
       <template id="2.16.840.1.113883.10.20.22.4.31" name="AgeObservation" effectiveDate="2013-01-31T00:00:00" statusCode="draft" displayName="Age Observation">
           <desc language="en-US">This Age Observation represents...</desc>
           <classification type="cdaentrylevel"/>
           <context id="**"/>
           <example>
               <observation classCode="OBS" moodCode="EVN">
                   <templateId root="2.16.840.1.113883.10.20.22.4.31"/>
                   
                   <statusCode code="completed"/>
                   <value xsi:type="PQ" value="57" unit="a"/>
               </observation>
           </example>
           <element name="hl7:observation">
               <attribute name="classCode" value="OBS"/>
               <attribute name="moodCode" value="EVN"/>
               <element name="hl7:templateId" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true">
                   <attribute name="root" value="2.16.840.1.113883.10.20.22.4.31"/>
               </element>
               <element name="hl7:code" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true">
                   <vocabulary code="445518008" codeSystem="2.16.840.1.113883.6.96"/>
               </element>
               <element name="hl7:statusCode" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true">
                   <vocabulary code="completed"/>
               </element>
               <element name="hl7:value" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true" datatype="PQ">
                   <attribute name="unit">
                       <vocabulary valueSet="2.16.840.1.113883.11.20.9.21"/>
                   </attribute>
               </element>
           </element>
       </template>
       <template id="2.16.840.1.113883.3.1937.99.61.6.10.3001" name="EKGImpressionSection" displayName="EKG Impression Section" effectiveDate="2013-02-10T00:00:00" statusCode="active">
           <desc language="en-US">This section describes the impression (findings) of an EKG study of a patient</desc>
           <classification type="cdasectionlevel"/>
           <context id="**"/>
           <example>
               <section classCode="DOCSECT">
                   <templateId root="2.16.840.1.113883.3.1937.99.61.6.10.3001"/>
                   
                   <title>Impression</title>
                   <text>Normal sinus rhythm
Ischemic ST-T changes in anterior leads
Poor R Progression in right precordial leads</text> </section> </example> <element name="hl7:section"> <attribute name="classCode" value="DOCSECT" isOptional="true"/> <element name="hl7:templateId" minimumMultiplicity="1" maximumMultiplicity="1" datatype="II"> <attribute name="root" value="2.16.840.1.113883.3.1937.99.61.6.10.3001"/> </element> <element name="hl7:code" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true" datatype="CD"> <vocabulary code="18844-1" codeSystem="2.16.840.1.113883.6.1"/> </element> <element minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true" datatype="ST"/> <element name="hl7:text" minimumMultiplicity="1" maximumMultiplicity="1" isMandatory="true" datatype="SD.TEXT"/> </element> </template> </rules> </decor-excerpt>

Included W3C-Schemas

http://art-decor.org/ADAR/rv/DECOR-datatypes.xsd

DECOR expressed as DECOR

There is a DECOR definition that expresses the DECOR schema in DECOR format as a set of value sets and templates. The DECOR as DECOR definition can be found here:

http://art-decor.org/ADAR/rv/DECORasDECOR.xml