Template:Schematron Rule

From IHE Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Instructions

 {{Schematron Rule|1|2|3|4|5|6|7}}
1
Type of Entry
2
Name of Entry being tested
3
OID of Entry being tested
4
Name of component.
5
Optionality of component
6
OID of component
7
Comment on component
8
Type of Parent Entry

Demonstration

{{Schematron Rule|Section|Name|OID|Required component|R|ROID|Comment|Document}}{{
Schematron Rule|Section|Name|OID|Required If Known component|R2|R2OID|Comment|Document}}{{
Schematron Rule|Section|Name|OID|Optional component|O|OptOID|Comment|Document}}{{
Schematron Rule|Section|Name|OID|Conditional component|C|COID|Comment|Document}}{{
Schematron Rule|Entry|Name|OID|Required|R|ROID|Comment|Section}}{{
Schematron Rule|Entry|Name|OID|Required If Known|R2|R2OID|Comment|Section}}{{
Schematron Rule|Entry|Name|OID|Optional|O|OptOID|Comment|Section}}{{
Schematron Rule|Entry|Name|OID|Conditional|C|COID|Comment|Section}}{{
Schematron Rule|Entry|Name|OID|Over-ridden Conditional|CX|COID|Comment|Section}}
 
   <assert test='.//cda:templateId[@root = "ROID"]'> 
     <!-- Verify that all required data elements are present -->
     Error: The Name Document must contain a(n) Required component Section.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "R2OID"]'> 
     <!-- Alert on any missing required if known elements -->
     Warning: The  Name Document should contain a(n) Required If Known component Section.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "OptOID"]'> 
     <!-- Note any missing optional elements -->
     Note: This Name Document does not contain a(n) Optional component Section.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "COID"]'> 
     <!-- Manually verify condtional elements -->
     Manual: This Name Document does not contain a(n) Conditional component Section.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "ROID"]'> 
     <!-- Verify that all required data elements are present -->
     Error: The Name Section must contain a(n) Required Entry.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "R2OID"]'> 
     <!-- Alert on any missing required if known elements -->
     Warning: The  Name Section should contain a(n) Required If Known Entry.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "OptOID"]'> 
     <!-- Note any missing optional elements -->
     Note: This Name Section does not contain a(n) Optional Entry.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  
   <assert test='.//cda:templateId[@root = "COID"]'> 
     <!-- Manually verify condtional elements -->
     Manual: This Name Section does not contain a(n) Conditional Entry.
     See http://wiki.ihe.net/index.php?title=OID 
   </assert>  

---