<!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-dataTable.xsd</title>
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
         <!--
        var propertiesBoxes= new Array('properties_eml-dataTable.xsd', 
				'properties_DataTableType_attributeList', 
				'properties_DataTableType_constraint', 
				'properties_DataTableType_caseSensitive', 
				'properties_DataTableType_numberOfRecords', 
				'properties_dataTable', 
				'properties_DataTableType_id', 
				'properties_DataTableType_system', 
				'properties_DataTableType_scope');
var facetsBoxes= new Array('facets_DataTableType_caseSensitive', 
				'facets_DataTableType_numberOfRecords', 
				'facets_DataTableType_scope');
var instanceBoxes= new Array('instance_DataTableType_attributeList', 
				'instance_DataTableType_constraint', 
				'instance_dataTable');
var diagramBoxes= new Array('diagram_DataTableType_attributeList', 
				'diagram_DataTableType_constraint', 
				'diagram_DataTableType_caseSensitive', 
				'diagram_DataTableType_numberOfRecords', 
				'diagram_dataTable', 
				'diagram_DataTableType');
var annotationBoxes= new Array('annotations_eml-dataTable.xsd', 
				'annotations_DataTableType_attributeList', 
				'annotations_DataTableType_constraint', 
				'annotations_DataTableType_caseSensitive', 
				'annotations_DataTableType_numberOfRecords', 
				'annotations_dataTable');
var attributesBoxes= new Array('attributes_DataTableType_attributeList', 
				'attributes_DataTableType_constraint', 
				'attributes_dataTable', 
				'attributes_DataTableType');
var modelBoxes= new Array('model_DataTableType_attributeList', 
				'model_DataTableType_constraint', 
				'model_dataTable', 
				'model_DataTableType');

      
        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, facetsBoxes);" class="control" /></span><span class="globalControlName">Facets </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-dataTable.xsd"></a><div class="componentTitle">Imported schema <span class="qname">eml-dataTable.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/dataTable-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml-dataTable.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml-dataTable.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml-dataTable.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-dataTable.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: 2009-02-25 23:51:54 $'</span><span class="tI">
</span><span class="tT">      '$Revision: 1.47 $'</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">    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">    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 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">moduleName: eml-dataTable</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">moduleDescription: </span><span class="tI">
</span><span class="tT">        </span><span class="tI">
</span><span class="tT">          </span><span class="tI">
</span><span class="tT">            The eml-dataTable module - Logical information</span><span class="tI">
</span><span class="tT">            about data table entities</span><span class="tI">
</span><span class="tT">          </span><span class="tI">
</span><span class="tT">        </span><span class="tI">
</span><span class="tT">        </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">recommendedUsage: The EML dataTable Module is used to document</span><span class="tI">
</span><span class="tT">        datasets with one or more data tables.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">standAlone: yes</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-dataTable.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml-dataTable.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml-dataTable.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="DataTableType_attributeList"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / attributeList</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_DataTableType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_DataTableType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_DataTableType_attributeList" 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">tooltip: Attribute List</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The list of attributes associated with this</span><span class="tI">
</span><span class="tT">              entity.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The list of attributes associated with this</span><span class="tI">
</span><span class="tT">              entity.  For more information see the eml-attribute</span><span class="tI">
</span><span class="tT">              module.</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_DataTableType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_DataTableType_attributeList');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_DataTableType_attributeList" style="display:block"><img alt="Diagram" border="0" src="img/eml-dataTable_xsd_Element_attributeList.png" usemap="#eml-dataTable_xsd_Element_attributeList" /><map name="eml-dataTable_xsd_Element_attributeList" id="eml-dataTable_xsd_Element_attributeList">
                                 <area alt="eml-attribute_xsd.tmp#AttributeListType_id" href="eml-attribute_xsd.html#AttributeListType_id" coords="172,78,240,102" />
                                 <area alt="eml-attribute_xsd.tmp#AttributeListType_attribute" href="eml-attribute_xsd.html#AttributeListType_attribute" coords="250,119,327,143" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="335,201,423,225" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="253,156,421,182" />
                                 <area alt="eml-attribute_xsd.tmp#AttributeListType" href="eml-attribute_xsd.html#AttributeListType" coords="147,3,308,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-attribute_xsd.html#AttributeListType" target="mainFrame" title="https://eml.ecoinformatics.org/attribute-2.2.0" onclick="updatePageTitle('Schema documentation for eml-attribute.xsd')">AttributeListType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_attributeList" 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_DataTableType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('model_DataTableType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_DataTableType_attributeList" style="display:block"><b><a href="eml-attribute_xsd.html#AttributeListType_attribute" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-attribute.xsd')">attribute+</a></b> | (<b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>)
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-attribute_xsd.html#AttributeListType_attribute" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-attribute.xsd')">attribute</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_DataTableType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_DataTableType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_DataTableType_attributeList" 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;attributeList</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;attribute</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/attribute&gt;</span><span class="tI">
  </span><span class="tEl">&lt;references</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/references&gt;</span><span class="tI">
</span><span class="tEl">&lt;/attributeList&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_DataTableType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_DataTableType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_DataTableType_attributeList" 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="eml-attribute_xsd.html#AttributeListType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-attribute.xsd')">id</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#IDType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">IDType</a></b></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="DataTableType_constraint"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / constraint</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_DataTableType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_DataTableType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_DataTableType_constraint" 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">tooltip: Constraint</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: Description of any relational constraints on '</span><span class="tI">
</span><span class="tT">              this entity.  For more information see the eml-constraint</span><span class="tI">
</span><span class="tT">              module.</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_DataTableType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_DataTableType_constraint');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_DataTableType_constraint" style="display:block"><img alt="Diagram" border="0" src="img/eml-dataTable_xsd_Element_constraint.png" usemap="#eml-dataTable_xsd_Element_constraint" /><map name="eml-dataTable_xsd_Element_constraint" id="eml-dataTable_xsd_Element_constraint">
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_id" href="eml-constraint_xsd.html#ConstraintType_id" coords="162,78,230,102" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_system" href="eml-constraint_xsd.html#ConstraintType_system" coords="162,112,248,136" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_scope" href="eml-constraint_xsd.html#ConstraintType_scope" coords="162,146,242,170" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_primaryKey" href="eml-constraint_xsd.html#ConstraintType_primaryKey" coords="219,187,311,211" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_uniqueKey" href="eml-constraint_xsd.html#ConstraintType_uniqueKey" coords="219,277,306,301" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_checkConstraint" href="eml-constraint_xsd.html#ConstraintType_checkConstraint" coords="219,367,338,391" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_foreignKey" href="eml-constraint_xsd.html#ConstraintType_foreignKey" coords="219,457,308,481" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_joinCondition" href="eml-constraint_xsd.html#ConstraintType_joinCondition" coords="219,547,323,571" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType_notNullConstraint" href="eml-constraint_xsd.html#ConstraintType_notNullConstraint" coords="219,637,346,661" />
                                 <area alt="eml-constraint_xsd.tmp#ConstraintType" href="eml-constraint_xsd.html#ConstraintType" coords="137,3,294,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-constraint_xsd.html#ConstraintType" target="mainFrame" title="https://eml.ecoinformatics.org/constraint-2.2.0" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">ConstraintType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_constraint" 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;">minOccurs</td>
                                    <td><b>0</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td>
                                    <td><b>unbounded</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_DataTableType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('model_DataTableType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_DataTableType_constraint" style="display:block"><b><a href="eml-constraint_xsd.html#ConstraintType_primaryKey" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">primaryKey</a></b> | <b><a href="eml-constraint_xsd.html#ConstraintType_uniqueKey" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">uniqueKey</a></b> | <b><a href="eml-constraint_xsd.html#ConstraintType_checkConstraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">checkConstraint</a></b> | <b><a href="eml-constraint_xsd.html#ConstraintType_foreignKey" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">foreignKey</a></b> | <b><a href="eml-constraint_xsd.html#ConstraintType_joinCondition" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">joinCondition</a></b> | <b><a href="eml-constraint_xsd.html#ConstraintType_notNullConstraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">notNullConstraint</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-constraint_xsd.html#ConstraintType_checkConstraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">checkConstraint</a></b>, <b><a href="eml-constraint_xsd.html#ConstraintType_foreignKey" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">foreignKey</a></b>, <b><a href="eml-constraint_xsd.html#ConstraintType_joinCondition" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">joinCondition</a></b>, <b><a href="eml-constraint_xsd.html#ConstraintType_notNullConstraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">notNullConstraint</a></b>, <b><a href="eml-constraint_xsd.html#ConstraintType_primaryKey" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">primaryKey</a></b>, <b><a href="eml-constraint_xsd.html#ConstraintType_uniqueKey" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">uniqueKey</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_DataTableType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_DataTableType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_DataTableType_constraint" 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;constraint</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;primaryKey</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/primaryKey&gt;</span><span class="tI">
  </span><span class="tEl">&lt;uniqueKey</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/uniqueKey&gt;</span><span class="tI">
  </span><span class="tEl">&lt;checkConstraint</span><span class="tT"> </span><span class="tAN">language=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/checkConstraint&gt;</span><span class="tI">
  </span><span class="tEl">&lt;foreignKey</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/foreignKey&gt;</span><span class="tI">
  </span><span class="tEl">&lt;joinCondition</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/joinCondition&gt;</span><span class="tI">
  </span><span class="tEl">&lt;notNullConstraint</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/notNullConstraint&gt;</span><span class="tI">
</span><span class="tEl">&lt;/constraint&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_DataTableType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_DataTableType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_DataTableType_constraint" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="10%">Default</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-constraint_xsd.html#ConstraintType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">id</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#IDType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">IDType</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-constraint_xsd.html#ConstraintType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">scope</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#ScopeType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">ScopeType</a></b></td>
                                    <td>document</td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-constraint_xsd.html#ConstraintType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-constraint.xsd')">system</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#SystemType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">SystemType</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="DataTableType_caseSensitive"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / caseSensitive</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_DataTableType_caseSensitive" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_DataTableType_caseSensitive');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_DataTableType_caseSensitive" 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">tooltip: Case sensitivity</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Specification of text case sensitivity in the</span><span class="tI">
</span><span class="tT">              dataTable.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The caseSensitive element</span><span class="tI">
</span><span class="tT">              specifies text case sensitivity of the data in the</span><span class="tI">
</span><span class="tT">              dataTable. The valid values are yes or no. If it is set to</span><span class="tI">
</span><span class="tT">              yes, then values of attributes that differ only in case (e.g.,</span><span class="tI">
</span><span class="tT">              LOW, low) represent distinct values.  If set to no, then values</span><span class="tI">
</span><span class="tT">              of attributes that differ only in case represent the same value.</span><span class="tI">
</span><span class="tT">              </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: yes</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: no</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_DataTableType_caseSensitive" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_DataTableType_caseSensitive');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_DataTableType_caseSensitive" style="display:block"><img alt="Diagram" border="0" src="img/eml-dataTable_xsd_Element_caseSensitive.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td>restriction of <b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_caseSensitive" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_caseSensitive');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_caseSensitive" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">minOccurs</td>
                                    <td><b>0</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_DataTableType_caseSensitive" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_DataTableType_caseSensitive');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_DataTableType_caseSensitive" style="display:block">
                              <table class="facetsTable">
                                 <tr>
                                    <td class="firstColumn">enumeration</td>
                                    <td width="30%"><b>yes</b></td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn">enumeration</td>
                                    <td width="30%"><b>no</b></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="DataTableType_numberOfRecords"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / numberOfRecords</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_DataTableType_numberOfRecords" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_DataTableType_numberOfRecords');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_DataTableType_numberOfRecords" 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">tooltip: Number of records</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The integer count of the number of records in the</span><span class="tI">
</span><span class="tT">              dataTable.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The numberOfRecords element contains a count</span><span class="tI">
</span><span class="tT">              of the number of records in the dataTable. This is typically an</span><span class="tI">
</span><span class="tT">              integer value, and only includes records that represent</span><span class="tI">
</span><span class="tT">              observations. It would not include any details of physical</span><span class="tI">
</span><span class="tT">              formatting such as the number of header lines (see eml-physical</span><span class="tI">
</span><span class="tT">              for that information).</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: 975</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_DataTableType_numberOfRecords" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_DataTableType_numberOfRecords');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_DataTableType_numberOfRecords" style="display:block"><img alt="Diagram" border="0" src="img/eml-dataTable_xsd_Element_numberOfRecords.png" usemap="#eml-dataTable_xsd_Element_numberOfRecords" /><map name="eml-dataTable_xsd_Element_numberOfRecords" id="eml-dataTable_xsd_Element_numberOfRecords">
                                 <area alt="eml-resource_xsd.tmp#NonEmptyStringType" href="eml-resource_xsd.html#NonEmptyStringType" coords="178,0,366,26" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-resource_xsd.html#NonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">NonEmptyStringType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_numberOfRecords" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_numberOfRecords');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_numberOfRecords" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">minOccurs</td>
                                    <td><b>0</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_DataTableType_numberOfRecords" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_DataTableType_numberOfRecords');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_DataTableType_numberOfRecords" style="display:block">
                              <table class="facetsTable">
                                 <tr>
                                    <td class="firstColumn">minLength</td>
                                    <td width="30%"><b>1</b></td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn">pattern</td>
                                    <td width="30%"><b>[\s]*[\S][\s\S]*</b></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="dataTable"></a><div class="componentTitle">Element <span class="qname">dataTable</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/dataTable-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_dataTable" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_dataTable');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_dataTable" 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">tooltip: Table Entity descriptor</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Descriptor of one table entity in the</span><span class="tI">
</span><span class="tT">        dataset.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The dataTable element is a descriptor of one entity in</span><span class="tI">
</span><span class="tT">        the dataset identified by its name. This element can contain</span><span class="tI">
</span><span class="tT">        information about the dataTable's orientation, number of records, case</span><span class="tI">
</span><span class="tT">        sensitivity, and temporal, geographic and taxonomic coverage. Because</span><span class="tI">
</span><span class="tT">        the dataTable element refers to the complex type 'DataTableType', it</span><span class="tI">
</span><span class="tT">        must contain all the elements defined for the type.</span><span class="tI">
</span><span class="tT">        description for DataTableType to review component element</span><span class="tI">
</span><span class="tT">        rules.</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_dataTable" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_dataTable');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_dataTable" style="display:block"><img alt="Diagram" border="0" src="img/eml-dataTable_xsd_Element_dataTable.png" usemap="#eml-dataTable_xsd_Element_dataTable" /><map name="eml-dataTable_xsd_Element_dataTable" id="eml-dataTable_xsd_Element_dataTable">
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_id" href="eml-dataTable_xsd.html#DataTableType_id" coords="159,78,227,102" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_system" href="eml-dataTable_xsd.html#DataTableType_system" coords="159,112,245,136" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_scope" href="eml-dataTable_xsd.html#DataTableType_scope" coords="159,146,239,170" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="414,231,540,255" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="414,308,505,332" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="414,398,537,422" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="414,475,489,499" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="414,565,494,589" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="414,655,492,679" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="414,745,519,769" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="414,835,503,859" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup" href="eml-entity_xsd.html#EntityGroup" coords="311,190,450,216" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_attributeList" href="eml-dataTable_xsd.html#DataTableType_attributeList" coords="308,975,404,999" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_constraint" href="eml-dataTable_xsd.html#DataTableType_constraint" coords="308,1052,394,1076" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_caseSensitive" href="eml-dataTable_xsd.html#DataTableType_caseSensitive" coords="308,1142,410,1166" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_numberOfRecords" href="eml-dataTable_xsd.html#DataTableType_numberOfRecords" coords="308,1219,438,1243" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="301,1344,389,1368" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="219,1299,387,1325" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType" href="eml-dataTable_xsd.html#DataTableType" coords="134,3,264,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_dataTable" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_dataTable');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_dataTable" 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_dataTable" type="image" src="img/btM.gif" value="-" onclick="switchState('model_dataTable');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_dataTable" style="display:block">(<b><a href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">alternateIdentifier*</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_entityName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityName</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_entityDescription" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityDescription{0,1}</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_physical" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">physical*</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">coverage{0,1}</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">methods{0,1}</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">additionalInfo*</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">annotation*</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">attributeList</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">constraint*</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_caseSensitive" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">caseSensitive{0,1}</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_numberOfRecords" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">numberOfRecords{0,1}</a></b>) | (<b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>)
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-entity_xsd.html#EntityGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">additionalInfo</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">alternateIdentifier</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">annotation</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">attributeList</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_caseSensitive" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">caseSensitive</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">constraint</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">coverage</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityDescription" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityDescription</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityName</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">methods</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_numberOfRecords" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">numberOfRecords</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_physical" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">physical</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_dataTable" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_dataTable');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_dataTable" 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;dataTable</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"https://eml.ecoinformatics.org/dataTable-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;alternateIdentifier</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/alternateIdentifier&gt;</span><span class="tI">
  </span><span class="tEl">&lt;entityName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/entityName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;entityDescription</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/entityDescription&gt;</span><span class="tI">
  </span><span class="tEl">&lt;physical</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/physical&gt;</span><span class="tI">
  </span><span class="tEl">&lt;coverage</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/coverage&gt;</span><span class="tI">
  </span><span class="tEl">&lt;methods</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/methods&gt;</span><span class="tI">
  </span><span class="tEl">&lt;additionalInfo</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;/additionalInfo&gt;</span><span class="tI">
  </span><span class="tEl">&lt;annotation</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/annotation&gt;</span><span class="tI">
  </span><span class="tEl">&lt;attributeList</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/attributeList&gt;</span><span class="tI">
  </span><span class="tEl">&lt;constraint</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/constraint&gt;</span><span class="tI">
  </span><span class="tEl">&lt;caseSensitive</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/caseSensitive&gt;</span><span class="tI">
  </span><span class="tEl">&lt;numberOfRecords</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/numberOfRecords&gt;</span><span class="tI">
  </span><span class="tEl">&lt;references</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/references&gt;</span><span class="tI">
</span><span class="tEl">&lt;/dataTable&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_dataTable" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_dataTable');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_dataTable" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="10%">Default</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-dataTable_xsd.html#DataTableType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">id</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#IDType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">IDType</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-dataTable_xsd.html#DataTableType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">scope</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#ScopeType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">ScopeType</a></b></td>
                                    <td>document</td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-dataTable_xsd.html#DataTableType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">system</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#SystemType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">SystemType</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="DataTableType"></a><div class="componentTitle">Complex Type <span class="qname">DataTableType</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/dataTable-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_DataTableType" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_DataTableType');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_DataTableType" style="display:block"><img alt="Diagram" border="0" src="img/eml-dataTable_xsd_Complex_Type_DataTableType.png" usemap="#eml-dataTable_xsd_Complex_Type_DataTableType" /><map name="eml-dataTable_xsd_Complex_Type_DataTableType" id="eml-dataTable_xsd_Complex_Type_DataTableType">
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_id" href="eml-dataTable_xsd.html#DataTableType_id" coords="176,38,244,62" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_system" href="eml-dataTable_xsd.html#DataTableType_system" coords="176,72,262,96" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_scope" href="eml-dataTable_xsd.html#DataTableType_scope" coords="176,106,256,130" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="431,191,557,215" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="431,268,522,292" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="431,358,554,382" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="431,435,506,459" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="431,525,511,549" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="431,615,509,639" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="431,705,536,729" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="431,795,520,819" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup" href="eml-entity_xsd.html#EntityGroup" coords="328,150,467,176" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_attributeList" href="eml-dataTable_xsd.html#DataTableType_attributeList" coords="325,935,421,959" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_constraint" href="eml-dataTable_xsd.html#DataTableType_constraint" coords="325,1012,411,1036" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_caseSensitive" href="eml-dataTable_xsd.html#DataTableType_caseSensitive" coords="325,1102,427,1126" />
                                 <area alt="eml-dataTable_xsd.tmp#DataTableType_numberOfRecords" href="eml-dataTable_xsd.html#DataTableType_numberOfRecords" coords="325,1179,455,1203" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="318,1304,406,1328" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="236,1259,404,1285" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_DataTableType" type="image" src="img/btM.gif" value="-" onclick="switchState('model_DataTableType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_DataTableType" style="display:block">(<b><a href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">alternateIdentifier*</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_entityName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityName</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_entityDescription" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityDescription{0,1}</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_physical" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">physical*</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">coverage{0,1}</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">methods{0,1}</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">additionalInfo*</a></b> , <b><a href="eml-entity_xsd.html#EntityGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">annotation*</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">attributeList</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">constraint*</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_caseSensitive" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">caseSensitive{0,1}</a></b> , <b><a href="eml-dataTable_xsd.html#DataTableType_numberOfRecords" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">numberOfRecords{0,1}</a></b>) | (<b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>)
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-entity_xsd.html#EntityGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">additionalInfo</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">alternateIdentifier</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">annotation</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">attributeList</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_caseSensitive" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">caseSensitive</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">constraint</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">coverage</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityDescription" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityDescription</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityName</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">methods</a></b>, <b><a href="eml-dataTable_xsd.html#DataTableType_numberOfRecords" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">numberOfRecords</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_physical" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">physical</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_DataTableType" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_DataTableType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_DataTableType" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="10%">Default</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-dataTable_xsd.html#DataTableType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">id</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#IDType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">IDType</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-dataTable_xsd.html#DataTableType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">scope</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#ScopeType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">ScopeType</a></b></td>
                                    <td>document</td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-dataTable_xsd.html#DataTableType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">system</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#SystemType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">SystemType</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="DataTableType_id"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / @id</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-resource_xsd.html#IDType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">IDType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_id');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_id" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>optional</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="DataTableType_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / @system</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-resource_xsd.html#SystemType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">SystemType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_system" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>optional</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="DataTableType_scope"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-dataTable_xsd.html#DataTableType" target="mainFrame" title="https://eml.ecoinformatics.org/dataTable-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataTable.xsd')">DataTableType</a></b> / @scope</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>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-resource_xsd.html#ScopeType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">ScopeType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_DataTableType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_DataTableType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_DataTableType_scope" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>optional</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">default</td>
                                    <td><b>document</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_DataTableType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_DataTableType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_DataTableType_scope" style="display:block">
                              <table class="facetsTable">
                                 <tr>
                                    <td class="firstColumn">enumeration</td>
                                    <td width="30%"><b>system</b></td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn">enumeration</td>
                                    <td width="30%"><b>document</b></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>
      <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>