<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <title>Schema documentation for eml-documentation.xsd</title>
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
         <!--
        var propertiesBoxes= new Array('properties_eml-documentation.xsd', 
				'properties_moduleDocs', 
				'properties_moduleDocs_moduleName', 
				'properties_moduleDocs_moduleDescription', 
				'properties_moduleDocs_recommendedUsage', 
				'properties_moduleDocs_standAlone', 
				'properties_tooltip', 
				'properties_summary', 
				'properties_description', 
				'properties_example', 
				'properties_lineage', 
				'properties_module');
var instanceBoxes= new Array('instance_moduleDocs', 
				'instance_moduleDocs_moduleDescription', 
				'instance_description', 
				'instance_example');
var diagramBoxes= new Array('diagram_moduleDocs', 
				'diagram_moduleDocs_moduleName', 
				'diagram_moduleDocs_moduleDescription', 
				'diagram_moduleDocs_recommendedUsage', 
				'diagram_moduleDocs_standAlone', 
				'diagram_tooltip', 
				'diagram_summary', 
				'diagram_description', 
				'diagram_example', 
				'diagram_lineage', 
				'diagram_module');
var annotationBoxes= new Array('annotations_eml-documentation.xsd');
var attributesBoxes= new Array('attributes_moduleDocs_moduleDescription', 
				'attributes_description', 
				'attributes_example');
var modelBoxes= new Array('model_moduleDocs', 
				'model_moduleDocs_moduleDescription', 
				'model_description', 
				'model_example');

      
        var button_prefix = 'button_';
        
        /**
        * Returns an element in the current HTML document.
        *
        * @param elementID Identifier of HTML element
        * @return               HTML element object
        */
        function getElementObject(elementID) {
            var elemObj = null;
            if (document.getElementById) {
                elemObj = document.getElementById(elementID);
            }
            return elemObj;
        }
        
        /**
        * Switches the state of a collapseable box, e.g.
        * if it's opened, it'll be closed, and vice versa.
        *
        * @param boxID Identifier of box
        */
        function switchState(boxID) {
            var boxObj = getElementObject(boxID);
            var buttonObj = getElementObject(button_prefix + boxID);
            if (boxObj == null || buttonObj == null) {
                // Box or button not found
            } else if (boxObj.style.display == "none") {
                // Box is closed, so open it
                openBox(boxObj, buttonObj);
            } else if (boxObj.style.display == "block") {
                // Box is opened, so close it
                closeBox(boxObj, buttonObj);
            }
        }
        
        /**
        * Opens a collapseable box.
        *
        * @param boxObj       Collapseable box
        * @param buttonObj Button controlling box
        */
        function openBox(boxObj, buttonObj) {
            if (boxObj == null || buttonObj == null) {
                // Box or button not found
            } else {
                // Change 'display' CSS property of box
                boxObj.style.display = "block";
                
                // Change text of button
                if (boxObj.style.display == "block") {
                    buttonObj.src = "img/btM.gif";
                }
            }
        }
        
        /**
        * Closes a collapseable box.
        *
        * @param boxObj       Collapseable box
        * @param buttonObj Button controlling box
        */
        function closeBox(boxObj, buttonObj) {
            if (boxObj == null || buttonObj == null) {
                // Box or button not found
            } else {
                // Change 'display' CSS property of box
                boxObj.style.display = "none";
                
                // Change text of button
                if (boxObj.style.display == "none") {
                    buttonObj.src = "img/btP.gif";
                }
            }
        }
    
       function switchStateForAll(buttonObj, boxList) {
            if (buttonObj == null) {
                // button not found
            } else if (buttonObj.value == "+") {
                // Expand all
                expandAll(boxList);
                buttonObj.value = "-";
            } else if (buttonObj.value == "-") {
                // Collapse all
                collapseAll(boxList);
                buttonObj.value = "+";
            }
        }
        
        /**
        * Closes all boxes in a given list.
        *
        * @param boxList Array of box IDs
        */
        function collapseAll(boxList) {
            var idx;
            for (idx = 0; idx < boxList.length; idx++) {
                var boxObj = getElementObject(boxList[idx]);
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
                closeBox(boxObj, buttonObj);
            }
        }
            
        /**
        * Open all boxes in a given list.
        *
        * @param boxList Array of box IDs
        */
        function expandAll(boxList) {
            var idx;
            for (idx = 0; idx < boxList.length; idx++) {
                var boxObj = getElementObject(boxList[idx]);
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
                openBox(boxObj, buttonObj);
            }
        }
        
        /**
         * Update the message presented in the title of the html page.
         * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
         * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
         * - If no split we always present: "Documentation for 'MainSchema.xsd'"
         */
        function updatePageTitle(message) {
            top.document.title = message;
        }
        
          
                    
         /**
          * Finds an HTML element by its ID and makes it floatable over the normal content.
          *
          * @param x_displacement The difference in pixels to the right side of the window from 
          *           the left side of the element.
          * @param y_displacement The difference in pixels to the right side of the window from 
          *           the top of the element.          
          */
         function findAndFloat(id, x_displacement, y_displacement){

            var element = getElementObject(id);            
            
            window[id + "_obj"] = element;
            
            if(document.layers) {
               element.style = element;
            }
            
            element.current_y = y_displacement;      
            element.first_time = true;
         
            element.floatElement = function(){
               // It may be closed by an user action.
                
               // Target X and Y coordinates.
               var x, y;
               
               var myWidth = 0, myHeight = 0;
               if( typeof( window.innerWidth ) == 'number' ) {
                  //Non-IE
                  myWidth = window.innerWidth;
                  myHeight = window.innerHeight;
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
                  //IE 6+ in 'standards compliant mode'
                  myWidth = document.documentElement.clientWidth;
                  myHeight = document.documentElement.clientHeight;
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
                  //IE 4 compatible
                  myWidth = document.body.clientWidth;
                  myHeight = document.body.clientHeight;
               }
               
               
               x = myWidth - x_displacement;
               
               var ns = (navigator.appName.indexOf("Netscape") != -1);               
               y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
                  document.documentElement.scrollTop : document.body.scrollTop;               
               y = y + y_displacement;               
               
               // The current y is the current coordinate of the floating element.
               // This should be at the limit the y target coordinate.
               this.current_y += (y - this.current_y)/1.25;
               
               // Add the pixels constant after the values
               // and move the element.
               var px = document.layers ? "" : "px";
               this.style.left =  x + px;
               this.style.top =  this.current_y + px;
                              
               setTimeout(this.id + "_obj.floatElement()", 100);
            }
            
            element.floatElement();
            return element;
          }

         /**
          * Finds an HTML element by its ID and makes it floatable over the normal content.
          *
          * @param x_displacement The difference in pixels to the right side of the window from 
          *           the left side of the element.
          * @param y_displacement The difference in pixels to the right side of the window from 
          *           the top of the element.          
          */
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){

            if (!isChunked) {
             var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
             // Make all the tabs invisible.
               for (i = 0; i < 3; i++){
                  var tab = getElementObject(selectIds[i]);
                  tab.style.display = 'none';
               }
               var selTab = getElementObject(id);
               selTab.style.display = 'block';
            } else {
             if (id == 'toc_group_by_namespace') {
               parent.indexFrame.location = indexFileNamespace;
             } else  if (id == 'toc_group_by_location') {
               parent.indexFrame.location = indexFileLocation;
             } else  if (id == 'toc_group_by_component_type') {
              parent.indexFrame.location = indexFileComponent;
             }
            }
         }
          

    
                    //--></script></head>
   <body>
      <div id="global_controls" class="globalControls" style="position:absolute;right:0;">
         <table class="rt">
            <tr>
               <td class="rt_cornerTopLeft"></td>
               <td class="rt_lineTop"></td>
               <td class="rt_cornerTopRight"></td>
            </tr>
            <tr>
               <td class="rt_lineLeft"></td>
               <td class="rt_content">
                  <h3>Showing:</h3>
                  <table>
                     <tr>
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
                     </tr>
                     <tr>
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, attributesBoxes);" class="control" /></span><span class="globalControlName">Attributes </span></td>
                     </tr>
                     <tr>
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
                     </tr>
                     <tr>
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
                     </tr>
                     <tr>
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, modelBoxes);" class="control" /></span><span class="globalControlName">Model </span></td>
                     </tr>
                     <tr>
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
                     </tr>
                  </table>
                  <div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
               </td>
               <td class="rt_lineRight"></td>
            </tr>
            <tr>
               <td class="rt_cornerBottomLeft"></td>
               <td class="rt_lineBottom"></td>
               <td class="rt_cornerBottomRight"></td>
            </tr>
         </table>
      </div><a id="eml-documentation.xsd"></a><div class="componentTitle">Imported schema <span class="qname">eml-documentation.xsd</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml-documentation.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml-documentation.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml-documentation.xsd" style="display:block">
                              <div class="annotation">
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                    <tr>
                                       <td width="100%"><pre><span class="tT">'$RCSfile: eml-documentation.xsd,v $'</span><span class="tI">
</span><span class="tT">       Copyright: 1997-2002 Regents of the University of California,</span><span class="tI">
</span><span class="tT">                            University of New Mexico, and</span><span class="tI">
</span><span class="tT">                            Arizona State University</span><span class="tI">
</span><span class="tT">        Sponsors: National Center for Ecological Analysis and Synthesis and</span><span class="tI">
</span><span class="tT">                  Partnership for Interdisciplinary Studies of Coastal Oceans,</span><span class="tI">
</span><span class="tT">                     University of California Santa Barbara</span><span class="tI">
</span><span class="tT">                  Long-Term Ecological Research Network Office,</span><span class="tI">
</span><span class="tT">                     University of New Mexico</span><span class="tI">
</span><span class="tT">                  Center for Environmental Studies, Arizona State University</span><span class="tI">
</span><span class="tT">   Other funding: National Science Foundation (see README for details)</span><span class="tI">
</span><span class="tT">                  The David and Lucile Packard Foundation</span><span class="tI">
</span><span class="tT">     For Details: http://knb.ecoinformatics.org/</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">        '$Author: obrien $'</span><span class="tI">
</span><span class="tT">          '$Date: 2008-08-27 21:30:04 $'</span><span class="tI">
</span><span class="tT">      '$Revision: 1.27 $'</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    This program is free software; you can redistribute it and/or modify</span><span class="tI">
</span><span class="tT">    it under the terms of the GNU General Public License as published by</span><span class="tI">
</span><span class="tT">    the Free Software Foundation; either version 2 of the License, or</span><span class="tI">
</span><span class="tT">    (at your option) any later version.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    This program is distributed in the hope that it will be useful,</span><span class="tI">
</span><span class="tT">    but WITHOUT ANY WARRANTY; without even the implied warranty of</span><span class="tI">
</span><span class="tT">    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span><span class="tI">
</span><span class="tT">    GNU General Public License for more details.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    You should have received a copy of the GNU General Public License</span><span class="tI">
</span><span class="tT">    along with this program; if not, write to the Free Software</span><span class="tI">
</span><span class="tT">    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml-documentation.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml-documentation.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml-documentation.xsd" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">attribute form default</td>
                                    <td><b>unqualified</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">element form default</td>
                                    <td><b>unqualified</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="moduleDocs"></a><div class="componentTitle">Element <span class="qname">moduleDocs</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_moduleDocs" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_moduleDocs');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_moduleDocs" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_moduleDocs.png" usemap="#eml-documentation_xsd_Element_moduleDocs" /><map name="eml-documentation_xsd_Element_moduleDocs" id="eml-documentation_xsd_Element_moduleDocs">
                                 <area alt="eml-documentation_xsd.tmp#moduleDocs_moduleName" href="eml-documentation_xsd.html#moduleDocs_moduleName" coords="197,2,298,26" />
                                 <area alt="eml-documentation_xsd.tmp#moduleDocs_moduleDescription" href="eml-documentation_xsd.html#moduleDocs_moduleDescription" coords="197,36,330,60" />
                                 <area alt="eml-documentation_xsd.tmp#moduleDocs_recommendedUsage" href="eml-documentation_xsd.html#moduleDocs_recommendedUsage" coords="197,70,338,94" />
                                 <area alt="eml-documentation_xsd.tmp#moduleDocs_standAlone" href="eml-documentation_xsd.html#moduleDocs_standAlone" coords="197,104,289,128" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_moduleDocs" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_moduleDocs');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_moduleDocs" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_moduleDocs" type="image" src="img/btM.gif" value="-" onclick="switchState('model_moduleDocs');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_moduleDocs" style="display:block"><b><a href="eml-documentation_xsd.html#moduleDocs_moduleName" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleName</a></b> , <b><a href="eml-documentation_xsd.html#moduleDocs_moduleDescription" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleDescription</a></b> , <b><a href="eml-documentation_xsd.html#moduleDocs_recommendedUsage" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">recommendedUsage</a></b> , <b><a href="eml-documentation_xsd.html#moduleDocs_standAlone" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">standAlone</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-documentation_xsd.html#moduleDocs_moduleDescription" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleDescription</a></b>, <b><a href="eml-documentation_xsd.html#moduleDocs_moduleName" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleName</a></b>, <b><a href="eml-documentation_xsd.html#moduleDocs_recommendedUsage" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">recommendedUsage</a></b>, <b><a href="eml-documentation_xsd.html#moduleDocs_standAlone" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">standAlone</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_moduleDocs" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_moduleDocs');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_moduleDocs" style="display:block">
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                 <tr>
                                    <td width="100%"><pre><span class="tEl">&lt;moduleDocs</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"https://eml.ecoinformatics.org/documentation-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;moduleName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/moduleName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;moduleDescription</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/moduleDescription&gt;</span><span class="tI">
  </span><span class="tEl">&lt;recommendedUsage</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/recommendedUsage&gt;</span><span class="tI">
  </span><span class="tEl">&lt;standAlone</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/standAlone&gt;</span><span class="tI">
</span><span class="tEl">&lt;/moduleDocs&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="moduleDocs_moduleName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-documentation_xsd.html#moduleDocs" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleDocs</a></b> / moduleName</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_moduleDocs_moduleName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_moduleDocs_moduleName');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_moduleDocs_moduleName" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_moduleName.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_moduleDocs_moduleName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_moduleDocs_moduleName');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_moduleDocs_moduleName" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="moduleDocs_moduleDescription"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-documentation_xsd.html#moduleDocs" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleDocs</a></b> / moduleDescription</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_moduleDocs_moduleDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_moduleDocs_moduleDescription');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_moduleDocs_moduleDescription" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_moduleDescription.png" usemap="#eml-documentation_xsd_Element_moduleDescription" /><map name="eml-documentation_xsd_Element_moduleDescription" id="eml-documentation_xsd_Element_moduleDescription">
                                 <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="210,78,293,102" />
                                 <area alt="eml-text_xsd.tmp#TextType_section" href="eml-text_xsd.html#TextType_section" coords="288,119,358,143" />
                                 <area alt="eml-text_xsd.tmp#TextType_para" href="eml-text_xsd.html#TextType_para" coords="288,209,343,233" />
                                 <area alt="eml-text_xsd.tmp#TextType_markdown" href="eml-text_xsd.html#TextType_markdown" coords="288,312,375,336" />
                                 <area alt="eml-text_xsd.tmp#TextType" href="eml-text_xsd.html#TextType" coords="185,3,304,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType" target="mainFrame" title="https://eml.ecoinformatics.org/text-2.2.0" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">TextType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_moduleDocs_moduleDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_moduleDocs_moduleDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_moduleDocs_moduleDescription" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
                                    <td><b>true</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_moduleDocs_moduleDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('model_moduleDocs_moduleDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_moduleDocs_moduleDescription" style="display:block"><b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section*</a></b> | <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para*</a></b> | <b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown</a></b>, <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para</a></b>, <b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_moduleDocs_moduleDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_moduleDocs_moduleDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_moduleDocs_moduleDescription" style="display:block">
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                 <tr>
                                    <td width="100%"><pre><span class="tEl">&lt;moduleDescription</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"https://eml.ecoinformatics.org/documentation-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;section</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/section&gt;</span><span class="tI">
  </span><span class="tEl">&lt;para</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/para&gt;</span><span class="tI">
  </span><span class="tEl">&lt;markdown</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/markdown&gt;</span><span class="tI">
</span><span class="tEl">&lt;/moduleDescription&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_moduleDocs_moduleDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_moduleDocs_moduleDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_moduleDocs_moduleDescription" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="moduleDocs_recommendedUsage"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-documentation_xsd.html#moduleDocs" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleDocs</a></b> / recommendedUsage</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_moduleDocs_recommendedUsage" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_moduleDocs_recommendedUsage');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_moduleDocs_recommendedUsage" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_recommendedUsage.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_moduleDocs_recommendedUsage" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_moduleDocs_recommendedUsage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_moduleDocs_recommendedUsage" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="moduleDocs_standAlone"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-documentation_xsd.html#moduleDocs" target="mainFrame" title="https://eml.ecoinformatics.org/documentation-2.2.0" onclick="updatePageTitle('Schema documentation for eml-documentation.xsd')">moduleDocs</a></b> / standAlone</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_moduleDocs_standAlone" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_moduleDocs_standAlone');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_moduleDocs_standAlone" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_standAlone.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_moduleDocs_standAlone" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_moduleDocs_standAlone');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_moduleDocs_standAlone" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="tooltip"></a><div class="componentTitle">Element <span class="qname">tooltip</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_tooltip" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_tooltip');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_tooltip" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_tooltip.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_tooltip" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_tooltip');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_tooltip" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="summary"></a><div class="componentTitle">Element <span class="qname">summary</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_summary" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_summary');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_summary" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_summary.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_summary" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_summary');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_summary" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="description"></a><div class="componentTitle">Element <span class="qname">description</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_description" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_description');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_description" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_description.png" usemap="#eml-documentation_xsd_Element_description" /><map name="eml-documentation_xsd_Element_description" id="eml-documentation_xsd_Element_description">
                                 <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="169,78,252,102" />
                                 <area alt="eml-text_xsd.tmp#TextType_section" href="eml-text_xsd.html#TextType_section" coords="247,119,317,143" />
                                 <area alt="eml-text_xsd.tmp#TextType_para" href="eml-text_xsd.html#TextType_para" coords="247,209,302,233" />
                                 <area alt="eml-text_xsd.tmp#TextType_markdown" href="eml-text_xsd.html#TextType_markdown" coords="247,312,334,336" />
                                 <area alt="eml-text_xsd.tmp#TextType" href="eml-text_xsd.html#TextType" coords="144,3,263,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType" target="mainFrame" title="https://eml.ecoinformatics.org/text-2.2.0" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">TextType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_description" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_description');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_description" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
                                    <td><b>true</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_description" type="image" src="img/btM.gif" value="-" onclick="switchState('model_description');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_description" style="display:block"><b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section*</a></b> | <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para*</a></b> | <b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown</a></b>, <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para</a></b>, <b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_description" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_description');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_description" style="display:block">
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                 <tr>
                                    <td width="100%"><pre><span class="tEl">&lt;description</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"https://eml.ecoinformatics.org/documentation-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;section</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/section&gt;</span><span class="tI">
  </span><span class="tEl">&lt;para</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/para&gt;</span><span class="tI">
  </span><span class="tEl">&lt;markdown</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/markdown&gt;</span><span class="tI">
</span><span class="tEl">&lt;/description&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_description" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_description');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_description" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="example"></a><div class="componentTitle">Element <span class="qname">example</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_example" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_example');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_example" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_example.png" usemap="#eml-documentation_xsd_Element_example" /><map name="eml-documentation_xsd_Element_example" id="eml-documentation_xsd_Element_example">
                                 <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="153,78,236,102" />
                                 <area alt="eml-text_xsd.tmp#TextType_section" href="eml-text_xsd.html#TextType_section" coords="231,119,301,143" />
                                 <area alt="eml-text_xsd.tmp#TextType_para" href="eml-text_xsd.html#TextType_para" coords="231,209,286,233" />
                                 <area alt="eml-text_xsd.tmp#TextType_markdown" href="eml-text_xsd.html#TextType_markdown" coords="231,312,318,336" />
                                 <area alt="eml-text_xsd.tmp#TextType" href="eml-text_xsd.html#TextType" coords="128,3,247,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType" target="mainFrame" title="https://eml.ecoinformatics.org/text-2.2.0" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">TextType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_example" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_example');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_example" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
                                    <td><b>true</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_example" type="image" src="img/btM.gif" value="-" onclick="switchState('model_example');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_example" style="display:block"><b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section*</a></b> | <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para*</a></b> | <b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown</a></b>, <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para</a></b>, <b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_example" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_example');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_example" style="display:block">
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                 <tr>
                                    <td width="100%"><pre><span class="tEl">&lt;example</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"https://eml.ecoinformatics.org/documentation-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;section</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/section&gt;</span><span class="tI">
  </span><span class="tEl">&lt;para</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/para&gt;</span><span class="tI">
  </span><span class="tEl">&lt;markdown</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/markdown&gt;</span><span class="tI">
</span><span class="tEl">&lt;/example&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_example" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_example');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_example" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="lineage"></a><div class="componentTitle">Element <span class="qname">lineage</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_lineage" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_lineage');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_lineage" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_lineage.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_lineage" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_lineage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_lineage" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="module"></a><div class="componentTitle">Element <span class="qname">module</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>https://eml.ecoinformatics.org/documentation-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_module" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_module');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_module" style="display:block"><img alt="Diagram" border="0" src="img/eml-documentation_xsd_Element_module.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_module" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_module');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_module" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table>
      <div class="footer">
         <hr />
         <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX">&lt;</span>o<span class="redX">X</span>ygen<span class="redX">/&gt;</span></span></a><sup>®</sup> XML Editor Trial Edition.
         </div>
      </div><script type="text/javascript">
         <!--
                     // The namespace is the selected option in the TOC combo.
                    
                     // Floats the toolbar.
                     var globalControls = getElementObject("global_controls"); 
                     
                     if(globalControls != null){
	                     var browser=navigator.appName;
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
						 
						 var IE6 = false;
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
						 	IE6 = true;
						 }
	
	                     //alert (IE6 + " |V| " + version);
	                     
	                     if(IE6){
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
	                         globalControls.style.position='absolute';                         
	                         // The global controls will do not exist in the TOC frame, when chunking.
	                         findAndFloat("global_controls", 225, 30);    
	                     } else {
	                      	  globalControls.style.position='fixed';                     	
	                     }
	                     
	                     globalControls.style.right='0';                       
                     }
                //--></script></body>
</html>