<!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-entity.xsd</title>
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
         <!--
        var propertiesBoxes= new Array('properties_eml-entity.xsd', 
				'properties_EntityGroup_alternateIdentifier', 
				'properties_EntityGroup_entityName', 
				'properties_EntityGroup_entityDescription', 
				'properties_EntityGroup_physical', 
				'properties_EntityGroup_coverage', 
				'properties_EntityGroup_methods', 
				'properties_EntityGroup_additionalInfo', 
				'properties_EntityGroup_annotation', 
				'properties_OtherEntityType_attributeList', 
				'properties_OtherEntityType_constraint', 
				'properties_OtherEntityType_entityType', 
				'properties_otherEntity', 
				'properties_EntityGroup_EntityGroup_alternateIdentifier_system', 
				'properties_OtherEntityType_id', 
				'properties_OtherEntityType_system', 
				'properties_OtherEntityType_scope');
var facetsBoxes= new Array('facets_EntityGroup_entityName', 
				'facets_EntityGroup_entityDescription', 
				'facets_OtherEntityType_entityType', 
				'facets_OtherEntityType_scope');
var instanceBoxes= new Array('instance_EntityGroup_physical', 
				'instance_EntityGroup_coverage', 
				'instance_EntityGroup_methods', 
				'instance_EntityGroup_additionalInfo', 
				'instance_EntityGroup_annotation', 
				'instance_OtherEntityType_attributeList', 
				'instance_OtherEntityType_constraint', 
				'instance_otherEntity');
var diagramBoxes= new Array('diagram_EntityGroup_alternateIdentifier', 
				'diagram_EntityGroup_entityName', 
				'diagram_EntityGroup_entityDescription', 
				'diagram_EntityGroup_physical', 
				'diagram_EntityGroup_coverage', 
				'diagram_EntityGroup_methods', 
				'diagram_EntityGroup_additionalInfo', 
				'diagram_EntityGroup_annotation', 
				'diagram_OtherEntityType_attributeList', 
				'diagram_OtherEntityType_constraint', 
				'diagram_OtherEntityType_entityType', 
				'diagram_otherEntity', 
				'diagram_OtherEntityType', 
				'diagram_EntityGroup');
var annotationBoxes= new Array('annotations_eml-entity.xsd', 
				'annotations_EntityGroup_alternateIdentifier', 
				'annotations_EntityGroup_entityName', 
				'annotations_EntityGroup_entityDescription', 
				'annotations_EntityGroup_physical', 
				'annotations_EntityGroup_coverage', 
				'annotations_EntityGroup_methods', 
				'annotations_EntityGroup_additionalInfo', 
				'annotations_EntityGroup_annotation', 
				'annotations_OtherEntityType_attributeList', 
				'annotations_OtherEntityType_constraint', 
				'annotations_OtherEntityType_entityType', 
				'annotations_otherEntity', 
				'annotations_EntityGroup_EntityGroup_alternateIdentifier_system', 
				'annotations_EntityGroup');
var attributesBoxes= new Array('attributes_EntityGroup_alternateIdentifier', 
				'attributes_EntityGroup_physical', 
				'attributes_EntityGroup_coverage', 
				'attributes_EntityGroup_additionalInfo', 
				'attributes_EntityGroup_annotation', 
				'attributes_OtherEntityType_attributeList', 
				'attributes_OtherEntityType_constraint', 
				'attributes_otherEntity', 
				'attributes_OtherEntityType');
var modelBoxes= new Array('model_EntityGroup_physical', 
				'model_EntityGroup_coverage', 
				'model_EntityGroup_methods', 
				'model_EntityGroup_additionalInfo', 
				'model_EntityGroup_annotation', 
				'model_OtherEntityType_attributeList', 
				'model_OtherEntityType_constraint', 
				'model_otherEntity', 
				'model_OtherEntityType', 
				'model_EntityGroup');

      
        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-entity.xsd"></a><div class="componentTitle">Imported schema <span class="qname">eml-entity.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/entity-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml-entity.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml-entity.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml-entity.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-entity.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.89 $'</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    This program is free software; you can redistribute it and/or modify</span><span class="tI">
</span><span class="tT">    it under the terms of the GNU General Public License as published by</span><span class="tI">
</span><span class="tT">    the Free Software Foundation; either version 2 of the License, or</span><span class="tI">
</span><span class="tT">    (at your option) any later version.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    This program is distributed in the hope that it will be useful,</span><span class="tI">
</span><span class="tT">    but WITHOUT ANY WARRANTY; without even the implied warranty of</span><span class="tI">
</span><span class="tT">    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span><span class="tI">
</span><span class="tT">    GNU General Public License for more details.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    You should have received a copy of the GNU General Public License</span><span class="tI">
</span><span class="tT">    along with this program; if not, write to the Free Software</span><span class="tI">
</span><span class="tT">    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                              <div 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-entity</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-entity module - Entity level information within datasets</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: This module is used to describe data</span><span class="tI">
</span><span class="tT">        entities.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">standAlone: Only when 'otherEntity' is used.</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-entity.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml-entity.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml-entity.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="EntityGroup_alternateIdentifier"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / alternateIdentifier</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_EntityGroup_alternateIdentifier" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_alternateIdentifier');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_alternateIdentifier" 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: Alternate Identifier</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A secondary identifier for this entity</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: An additional, secondary identifier for this</span><span class="tI">
</span><span class="tT">            entity. The primary identifier belongs in the "id" attribute, but</span><span class="tI">
</span><span class="tT">            additional identifiers that are used to label this entity, possibly</span><span class="tI">
</span><span class="tT">            from different data management systems, can be listed</span><span class="tI">
</span><span class="tT">            here.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: VCR3465</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_EntityGroup_alternateIdentifier" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_alternateIdentifier');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_alternateIdentifier" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_alternateIdentifier.png" usemap="#eml-entity_xsd_Element_alternateIdentifier" /><map name="eml-entity_xsd_Element_alternateIdentifier" id="eml-entity_xsd_Element_alternateIdentifier">
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_EntityGroup_alternateIdentifier_system" href="eml-entity_xsd.html#EntityGroup_EntityGroup_alternateIdentifier_system" coords="188,119,274,143" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td>extension 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_EntityGroup_alternateIdentifier" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_alternateIdentifier');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_alternateIdentifier" 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">
                           <div class="floatLeft"><b>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_EntityGroup_alternateIdentifier" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_EntityGroup_alternateIdentifier');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_EntityGroup_alternateIdentifier" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="5%">Use</th>
                                       <th>Annotation</th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-entity_xsd.html#EntityGroup_EntityGroup_alternateIdentifier_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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>optional</td>
                                    <td>
                                       <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: Identifier System</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The system in which this id is</span><span class="tI">
</span><span class="tT">                    relevant</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The information management system within</span><span class="tI">
</span><span class="tT">                    which this identifier has relevance. Generally, the</span><span class="tI">
</span><span class="tT">                    identifier would be unique within the "system" and would be</span><span class="tI">
</span><span class="tT">                    sufficient to retrieve the entity from the system. The</span><span class="tI">
</span><span class="tT">                    system is often a URL or URI that identifies the main entry</span><span class="tI">
</span><span class="tT">                    point for the information management</span><span class="tI">
</span><span class="tT">                    system.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: </span><span class="tI">
</span><span class="tT">                    http://knb.ecoinformatics.org/knb/</span></pre></td>
                                             </tr>
                                          </table>
                                       </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="EntityGroup_entityName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / entityName</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_EntityGroup_entityName" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_entityName');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_entityName" 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: Entity name</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The name of the entity name</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The name identifies the entity in the dataset:</span><span class="tI">
</span><span class="tT">            file name, name of database table, etc.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: SpeciesAbundance1996</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_EntityGroup_entityName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_entityName');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_entityName" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_entityName.png" usemap="#eml-entity_xsd_Element_entityName" /><map name="eml-entity_xsd_Element_entityName" id="eml-entity_xsd_Element_entityName">
                                 <area alt="eml-resource_xsd.tmp#NonEmptyStringType" href="eml-resource_xsd.html#NonEmptyStringType" coords="139,0,327,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_EntityGroup_entityName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_entityName');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_entityName" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_EntityGroup_entityName" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_EntityGroup_entityName');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_EntityGroup_entityName" 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="EntityGroup_entityDescription"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / entityDescription</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_EntityGroup_entityDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_entityDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_entityDescription" 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: Entity description</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: General description of the entity and its</span><span class="tI">
</span><span class="tT">            contents</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: Text generally describing the entity, its type,</span><span class="tI">
</span><span class="tT">            and relevant information about the data in the</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">example: Species abundance data for 1996 at the VCR LTER</span><span class="tI">
</span><span class="tT">            site</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_EntityGroup_entityDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_entityDescription');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_entityDescription" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_entityDescription.png" usemap="#eml-entity_xsd_Element_entityDescription" /><map name="eml-entity_xsd_Element_entityDescription" id="eml-entity_xsd_Element_entityDescription">
                                 <area alt="eml-resource_xsd.tmp#NonEmptyStringType" href="eml-resource_xsd.html#NonEmptyStringType" coords="171,0,359,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_EntityGroup_entityDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_entityDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_entityDescription" 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_EntityGroup_entityDescription" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_EntityGroup_entityDescription');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_EntityGroup_entityDescription" 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="EntityGroup_physical"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / physical</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_EntityGroup_physical" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_physical');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_physical" 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: physical descriptors</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Description of the physical format of the entity</span><span class="tI">
</span><span class="tT">            </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: Information on the physical format of this entity.</span><span class="tI">
</span><span class="tT">            Each logical entity can be serialized in one or more physical</span><span class="tI">
</span><span class="tT">            formats, which can be described here.  For each physical format,</span><span class="tI">
</span><span class="tT">            provide a "physical" element that describes the format and how</span><span class="tI">
</span><span class="tT">            to obtain that version.  Two physical elements MUST describe</span><span class="tI">
</span><span class="tT">            the same entity precisely (i.e., after obtaining and parsing</span><span class="tI">
</span><span class="tT">            the physical data stream described under each physical element,</span><span class="tI">
</span><span class="tT">            one MUST end with an identical logical entity).</span><span class="tI">
</span><span class="tT">            For more information see the eml-physical 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_EntityGroup_physical" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_physical');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_physical" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_physical.png" usemap="#eml-entity_xsd_Element_physical" /><map name="eml-entity_xsd_Element_physical" id="eml-entity_xsd_Element_physical">
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_id" href="eml-physical_xsd.html#PhysicalType_id" coords="151,78,219,102" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_system" href="eml-physical_xsd.html#PhysicalType_system" coords="151,112,237,136" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_scope" href="eml-physical_xsd.html#PhysicalType_scope" coords="151,146,231,170" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_objectName" href="eml-physical_xsd.html#PhysicalType_objectName" coords="300,187,394,211" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_size" href="eml-physical_xsd.html#PhysicalType_size" coords="300,277,352,301" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_authentication" href="eml-physical_xsd.html#PhysicalType_authentication" coords="300,367,408,391" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_compressionMethod" href="eml-physical_xsd.html#PhysicalType_compressionMethod" coords="371,457,512,481" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_encodingMethod" href="eml-physical_xsd.html#PhysicalType_encodingMethod" coords="371,534,492,558" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_characterEncoding" href="eml-physical_xsd.html#PhysicalType_characterEncoding" coords="300,624,432,648" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_dataFormat" href="eml-physical_xsd.html#PhysicalType_dataFormat" coords="300,701,392,725" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType_distribution" href="eml-physical_xsd.html#PhysicalType_distribution" coords="300,791,394,815" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="293,916,381,940" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="211,871,379,897" />
                                 <area alt="eml-physical_xsd.tmp#PhysicalType" href="eml-physical_xsd.html#PhysicalType" coords="126,3,275,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-physical_xsd.html#PhysicalType" target="mainFrame" title="https://eml.ecoinformatics.org/physical-2.2.0" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">PhysicalType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_EntityGroup_physical" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_physical');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_physical" 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_EntityGroup_physical" type="image" src="img/btM.gif" value="-" onclick="switchState('model_EntityGroup_physical');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_EntityGroup_physical" style="display:block">(<b><a href="eml-physical_xsd.html#PhysicalType_objectName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">objectName</a></b> , <b><a href="eml-physical_xsd.html#PhysicalType_size" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">size{0,1}</a></b> , <b><a href="eml-physical_xsd.html#PhysicalType_authentication" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">authentication*</a></b> , (<b><a href="eml-physical_xsd.html#PhysicalType_compressionMethod" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">compressionMethod</a></b> | <b><a href="eml-physical_xsd.html#PhysicalType_encodingMethod" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">encodingMethod</a></b>) , <b><a href="eml-physical_xsd.html#PhysicalType_characterEncoding" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">characterEncoding{0,1}</a></b> , <b><a href="eml-physical_xsd.html#PhysicalType_dataFormat" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">dataFormat</a></b> , <b><a href="eml-physical_xsd.html#PhysicalType_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">distribution*</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-physical_xsd.html#PhysicalType_authentication" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">authentication</a></b>, <b><a href="eml-physical_xsd.html#PhysicalType_characterEncoding" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">characterEncoding</a></b>, <b><a href="eml-physical_xsd.html#PhysicalType_compressionMethod" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">compressionMethod</a></b>, <b><a href="eml-physical_xsd.html#PhysicalType_dataFormat" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">dataFormat</a></b>, <b><a href="eml-physical_xsd.html#PhysicalType_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">distribution</a></b>, <b><a href="eml-physical_xsd.html#PhysicalType_encodingMethod" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">encodingMethod</a></b>, <b><a href="eml-physical_xsd.html#PhysicalType_objectName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">objectName</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>, <b><a href="eml-physical_xsd.html#PhysicalType_size" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.xsd')">size</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_EntityGroup_physical" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_EntityGroup_physical');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_EntityGroup_physical" 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;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="tI">
  </span><span class="tEl">&lt;objectName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/objectName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;size</span><span class="tT"> </span><span class="tAN">unit=</span><span class="tAV">"byte"</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/size&gt;</span><span class="tI">
  </span><span class="tEl">&lt;authentication</span><span class="tT"> </span><span class="tAN">method=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/authentication&gt;</span><span class="tI">
  </span><span class="tEl">&lt;compressionMethod</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/compressionMethod&gt;</span><span class="tI">
  </span><span class="tEl">&lt;encodingMethod</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/encodingMethod&gt;</span><span class="tI">
  </span><span class="tEl">&lt;characterEncoding</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/characterEncoding&gt;</span><span class="tI">
  </span><span class="tEl">&lt;dataFormat</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/dataFormat&gt;</span><span class="tI">
  </span><span class="tEl">&lt;distribution</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;/distribution&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;/physical&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_EntityGroup_physical" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_EntityGroup_physical');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_EntityGroup_physical" 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-physical_xsd.html#PhysicalType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.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-physical_xsd.html#PhysicalType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.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-physical_xsd.html#PhysicalType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-physical.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="EntityGroup_coverage"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / coverage</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_EntityGroup_coverage" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_coverage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_coverage" 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: coverage descriptors</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Information on the geographic, spatial and temporal</span><span class="tI">
</span><span class="tT">            coverages used in this entity.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: Information on the geographic, spatial and temporal</span><span class="tI">
</span><span class="tT">            coverages used in this entity.  Please see the eml-coverage module</span><span class="tI">
</span><span class="tT">            for more information.</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_EntityGroup_coverage" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_coverage');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_coverage" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_coverage.png" usemap="#eml-entity_xsd_Element_coverage" /><map name="eml-entity_xsd_Element_coverage" id="eml-entity_xsd_Element_coverage">
                                 <area alt="eml-coverage_xsd.tmp#Coverage_id" href="eml-coverage_xsd.html#Coverage_id" coords="156,78,224,102" />
                                 <area alt="eml-coverage_xsd.tmp#Coverage_system" href="eml-coverage_xsd.html#Coverage_system" coords="156,112,242,136" />
                                 <area alt="eml-coverage_xsd.tmp#Coverage_scope" href="eml-coverage_xsd.html#Coverage_scope" coords="156,146,236,170" />
                                 <area alt="eml-coverage_xsd.tmp#Coverage_geographicCoverage" href="eml-coverage_xsd.html#Coverage_geographicCoverage" coords="305,187,448,211" />
                                 <area alt="eml-coverage_xsd.tmp#Coverage_temporalCoverage" href="eml-coverage_xsd.html#Coverage_temporalCoverage" coords="305,264,435,288" />
                                 <area alt="eml-coverage_xsd.tmp#Coverage_taxonomicCoverage" href="eml-coverage_xsd.html#Coverage_taxonomicCoverage" coords="305,354,444,378" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="319,492,407,516" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="237,447,405,473" />
                                 <area alt="eml-coverage_xsd.tmp#Coverage" href="eml-coverage_xsd.html#Coverage" coords="131,3,255,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-coverage_xsd.html#Coverage" target="mainFrame" title="https://eml.ecoinformatics.org/coverage-2.2.0" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">Coverage</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_EntityGroup_coverage" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_coverage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_coverage" 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>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_EntityGroup_coverage" type="image" src="img/btM.gif" value="-" onclick="switchState('model_EntityGroup_coverage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_EntityGroup_coverage" style="display:block"><b><a href="eml-coverage_xsd.html#Coverage_geographicCoverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">geographicCoverage</a></b> | <b><a href="eml-coverage_xsd.html#Coverage_temporalCoverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">temporalCoverage</a></b> | <b><a href="eml-coverage_xsd.html#Coverage_taxonomicCoverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">taxonomicCoverage</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-coverage_xsd.html#Coverage_geographicCoverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">geographicCoverage</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>, <b><a href="eml-coverage_xsd.html#Coverage_taxonomicCoverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">taxonomicCoverage</a></b>, <b><a href="eml-coverage_xsd.html#Coverage_temporalCoverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.xsd')">temporalCoverage</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_EntityGroup_coverage" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_EntityGroup_coverage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_EntityGroup_coverage" 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;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="tI">
  </span><span class="tEl">&lt;geographicCoverage</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,1}</span><span class="tEl">&lt;/geographicCoverage&gt;</span><span class="tI">
  </span><span class="tEl">&lt;temporalCoverage</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,1}</span><span class="tEl">&lt;/temporalCoverage&gt;</span><span class="tI">
  </span><span class="tEl">&lt;taxonomicCoverage</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,1}</span><span class="tEl">&lt;/taxonomicCoverage&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;/coverage&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_EntityGroup_coverage" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_EntityGroup_coverage');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_EntityGroup_coverage" 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-coverage_xsd.html#Coverage_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.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-coverage_xsd.html#Coverage_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.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-coverage_xsd.html#Coverage_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-coverage.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="EntityGroup_methods"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / methods</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_EntityGroup_methods" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_methods');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_methods" 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: method descriptions</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: Information on the specific methods used to collect</span><span class="tI">
</span><span class="tT">            information in this entity.  Please see the eml-methods module for</span><span class="tI">
</span><span class="tT">            more information.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example:</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_EntityGroup_methods" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_methods');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_methods" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_methods.png" usemap="#eml-entity_xsd_Element_methods" /><map name="eml-entity_xsd_Element_methods" id="eml-entity_xsd_Element_methods">
                                 <area alt="eml-methods_xsd.tmp#MethodsType_methodStep" href="eml-methods_xsd.html#MethodsType_methodStep" coords="253,40,348,64" />
                                 <area alt="eml-methods_xsd.tmp#MethodsType_sampling" href="eml-methods_xsd.html#MethodsType_sampling" coords="253,130,333,154" />
                                 <area alt="eml-methods_xsd.tmp#MethodsType_qualityControl" href="eml-methods_xsd.html#MethodsType_qualityControl" coords="253,220,361,244" />
                                 <area alt="eml-methods_xsd.tmp#MethodsType" href="eml-methods_xsd.html#MethodsType" coords="150,3,293,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-methods_xsd.html#MethodsType" target="mainFrame" title="https://eml.ecoinformatics.org/methods-2.2.0" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">MethodsType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_EntityGroup_methods" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_methods');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_methods" 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>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_EntityGroup_methods" type="image" src="img/btM.gif" value="-" onclick="switchState('model_EntityGroup_methods');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_EntityGroup_methods" style="display:block"><b><a href="eml-methods_xsd.html#MethodsType_methodStep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">methodStep+</a></b> , <b><a href="eml-methods_xsd.html#MethodsType_sampling" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">sampling{0,1}</a></b> , <b><a href="eml-methods_xsd.html#MethodsType_qualityControl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">qualityControl*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-methods_xsd.html#MethodsType_methodStep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">methodStep</a></b>, <b><a href="eml-methods_xsd.html#MethodsType_qualityControl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">qualityControl</a></b>, <b><a href="eml-methods_xsd.html#MethodsType_sampling" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">sampling</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_EntityGroup_methods" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_EntityGroup_methods');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_EntityGroup_methods" 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;methods</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;methodStep</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/methodStep&gt;</span><span class="tI">
  </span><span class="tEl">&lt;sampling</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/sampling&gt;</span><span class="tI">
  </span><span class="tEl">&lt;qualityControl</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/qualityControl&gt;</span><span class="tI">
</span><span class="tEl">&lt;/methods&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="EntityGroup_additionalInfo"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / additionalInfo</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_EntityGroup_additionalInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_additionalInfo');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_additionalInfo" 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: Additional Information</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Any extra information pertitent to the</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: This field provides any information that is not</span><span class="tI">
</span><span class="tT">            characterized by the other entity metadata</span><span class="tI">
</span><span class="tT">            fields.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: Multiple sampling events represented</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_EntityGroup_additionalInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_additionalInfo');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_additionalInfo" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_additionalInfo.png" usemap="#eml-entity_xsd_Element_additionalInfo" /><map name="eml-entity_xsd_Element_additionalInfo" id="eml-entity_xsd_Element_additionalInfo">
                                 <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="202,78,285,102" />
                                 <area alt="eml-text_xsd.tmp#TextType_section" href="eml-text_xsd.html#TextType_section" coords="280,119,350,143" />
                                 <area alt="eml-text_xsd.tmp#TextType_para" href="eml-text_xsd.html#TextType_para" coords="280,209,335,233" />
                                 <area alt="eml-text_xsd.tmp#TextType_markdown" href="eml-text_xsd.html#TextType_markdown" coords="280,312,367,336" />
                                 <area alt="eml-text_xsd.tmp#TextType" href="eml-text_xsd.html#TextType" coords="177,3,296,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType" target="mainFrame" title="https://eml.ecoinformatics.org/text-2.2.0" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">TextType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_EntityGroup_additionalInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_additionalInfo');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_additionalInfo" 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>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
                                    <td><b>true</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_EntityGroup_additionalInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('model_EntityGroup_additionalInfo');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_EntityGroup_additionalInfo" style="display:block"><b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section*</a></b> | <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para*</a></b> | <b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-text_xsd.html#TextType_markdown" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">markdown</a></b>, <b><a href="eml-text_xsd.html#TextType_para" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">para</a></b>, <b><a href="eml-text_xsd.html#TextType_section" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-text.xsd')">section</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_EntityGroup_additionalInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_EntityGroup_additionalInfo');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_EntityGroup_additionalInfo" 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;additionalInfo</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;section</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/section&gt;</span><span class="tI">
  </span><span class="tEl">&lt;para</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/para&gt;</span><span class="tI">
  </span><span class="tEl">&lt;markdown</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/markdown&gt;</span><span class="tI">
</span><span class="tEl">&lt;/additionalInfo&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_EntityGroup_additionalInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_EntityGroup_additionalInfo');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_EntityGroup_additionalInfo" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="EntityGroup_annotation"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</a></b> / annotation</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_EntityGroup_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_annotation" 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: Semantic Annotation</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A precisely-defined semantic statement about this entity.</span><span class="tI">
</span><span class="tT">            </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: An annotation represents a precisely-defined semantic</span><span class="tI">
</span><span class="tT">                  statement that applies to this entity.  This semantic statement</span><span class="tI">
</span><span class="tT">                  is used to associate precise measurement semantics with the</span><span class="tI">
</span><span class="tT">                  entity.  Each annotation consists of a propertyURI and valueURI,</span><span class="tI">
</span><span class="tT">                  which define a property and a value that apply to the entity.</span><span class="tI">
</span><span class="tT">                  The associated labels can be used to display the property and</span><span class="tI">
</span><span class="tT">                  value to users.  Each URI is resolvable to a</span><span class="tI">
</span><span class="tT">                  controlled vocabulary that provides a definition, relationships</span><span class="tI">
</span><span class="tT">                  to other terms, and multiple labels for displaying the statement.</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_EntityGroup_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup_annotation');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup_annotation" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_annotation.png" usemap="#eml-entity_xsd_Element_annotation" /><map name="eml-entity_xsd_Element_annotation" id="eml-entity_xsd_Element_annotation">
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_id" href="eml-semantics_xsd.html#SemanticAnnotation_id" coords="165,78,233,102" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_system" href="eml-semantics_xsd.html#SemanticAnnotation_system" coords="165,112,251,136" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_scope" href="eml-semantics_xsd.html#SemanticAnnotation_scope" coords="165,146,245,170" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_propertyURI" href="eml-semantics_xsd.html#SemanticAnnotation_propertyURI" coords="222,187,318,211" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_valueURI" href="eml-semantics_xsd.html#SemanticAnnotation_valueURI" coords="222,277,299,301" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation" href="eml-semantics_xsd.html#SemanticAnnotation" coords="140,3,324,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-semantics_xsd.html#SemanticAnnotation" target="mainFrame" title="https://eml.ecoinformatics.org/semantics-2.2.0" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">SemanticAnnotation</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_EntityGroup_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_annotation" 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_EntityGroup_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('model_EntityGroup_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_EntityGroup_annotation" style="display:block"><b><a href="eml-semantics_xsd.html#SemanticAnnotation_propertyURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">propertyURI</a></b> , <b><a href="eml-semantics_xsd.html#SemanticAnnotation_valueURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">valueURI</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-semantics_xsd.html#SemanticAnnotation_propertyURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">propertyURI</a></b>, <b><a href="eml-semantics_xsd.html#SemanticAnnotation_valueURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">valueURI</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_EntityGroup_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_EntityGroup_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_EntityGroup_annotation" 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;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="tI">
  </span><span class="tEl">&lt;propertyURI</span><span class="tT"> </span><span class="tAN">label=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/propertyURI&gt;</span><span class="tI">
  </span><span class="tEl">&lt;valueURI</span><span class="tT"> </span><span class="tAN">label=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/valueURI&gt;</span><span class="tI">
</span><span class="tEl">&lt;/annotation&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_EntityGroup_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_EntityGroup_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_EntityGroup_annotation" 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-semantics_xsd.html#SemanticAnnotation_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.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-semantics_xsd.html#SemanticAnnotation_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.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-semantics_xsd.html#SemanticAnnotation_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.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="OtherEntityType_attributeList"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</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_OtherEntityType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_OtherEntityType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_OtherEntityType_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_OtherEntityType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_OtherEntityType_attributeList');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_OtherEntityType_attributeList" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_attributeList.png" usemap="#eml-entity_xsd_Element_attributeList" /><map name="eml-entity_xsd_Element_attributeList" id="eml-entity_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_OtherEntityType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_OtherEntityType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_OtherEntityType_attributeList" 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>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_OtherEntityType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('model_OtherEntityType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_OtherEntityType_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_OtherEntityType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_OtherEntityType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_OtherEntityType_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_OtherEntityType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_OtherEntityType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_OtherEntityType_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="OtherEntityType_constraint"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</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_OtherEntityType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_OtherEntityType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_OtherEntityType_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_OtherEntityType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_OtherEntityType_constraint');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_OtherEntityType_constraint" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_constraint.png" usemap="#eml-entity_xsd_Element_constraint" /><map name="eml-entity_xsd_Element_constraint" id="eml-entity_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_OtherEntityType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_OtherEntityType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_OtherEntityType_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_OtherEntityType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('model_OtherEntityType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_OtherEntityType_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_OtherEntityType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_OtherEntityType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_OtherEntityType_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_OtherEntityType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_OtherEntityType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_OtherEntityType_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="OtherEntityType_entityType"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</a></b> / entityType</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_OtherEntityType_entityType" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_OtherEntityType_entityType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_OtherEntityType_entityType" 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: Entity type</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Contains the name of the type for 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 entityType field contains the name of the</span><span class="tI">
</span><span class="tT">                entity's type. The entity's type is typically the name of the</span><span class="tI">
</span><span class="tT">                type of data represented in the entity, such as "photograph".</span><span class="tI">
</span><span class="tT">                This field is used only if this is an 'other' entity and you</span><span class="tI">
</span><span class="tT">                want to specify the kind of "other" entity this</span><span class="tI">
</span><span class="tT">                is.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: Photograph</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_OtherEntityType_entityType" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_OtherEntityType_entityType');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_OtherEntityType_entityType" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_entityType.png" usemap="#eml-entity_xsd_Element_entityType" /><map name="eml-entity_xsd_Element_entityType" id="eml-entity_xsd_Element_entityType">
                                 <area alt="eml-resource_xsd.tmp#NonEmptyStringType" href="eml-resource_xsd.html#NonEmptyStringType" coords="135,0,323,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_OtherEntityType_entityType" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_OtherEntityType_entityType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_OtherEntityType_entityType" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_OtherEntityType_entityType" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_OtherEntityType_entityType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_OtherEntityType_entityType" 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="otherEntity"></a><div class="componentTitle">Element <span class="qname">otherEntity</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/entity-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_otherEntity" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_otherEntity');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_otherEntity" 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: Other Entity</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Descriptor of single data entity in a dataset of a type</span><span class="tI">
</span><span class="tT">        not specifically described in eml.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The other entity element is a descriptor of a</span><span class="tI">
</span><span class="tT">        not-otherwise-defined entity in the dataset, identified by its name.</span><span class="tI">
</span><span class="tT">        The element can contain information about the entity's basic identity,</span><span class="tI">
</span><span class="tT">        its temporal, geographic and taxonomic coverage, and its</span><span class="tI">
</span><span class="tT">        type.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: Photograph of rocky intertidal plot 12 from Santa Cruz</span><span class="tI">
</span><span class="tT">        Island</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_otherEntity" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_otherEntity');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_otherEntity" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_otherEntity.png" usemap="#eml-entity_xsd_Element_otherEntity" /><map name="eml-entity_xsd_Element_otherEntity" id="eml-entity_xsd_Element_otherEntity">
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_id" href="eml-entity_xsd.html#OtherEntityType_id" coords="166,78,234,102" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_system" href="eml-entity_xsd.html#OtherEntityType_system" coords="166,112,252,136" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_scope" href="eml-entity_xsd.html#OtherEntityType_scope" coords="166,146,246,170" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="400,231,526,255" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="400,308,491,332" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="400,398,523,422" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="400,475,475,499" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="400,565,480,589" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="400,655,478,679" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="400,745,505,769" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="400,835,489,859" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup" href="eml-entity_xsd.html#EntityGroup" coords="297,190,416,216" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_attributeList" href="eml-entity_xsd.html#OtherEntityType_attributeList" coords="386,975,482,999" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_constraint" href="eml-entity_xsd.html#OtherEntityType_constraint" coords="386,1052,472,1076" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_entityType" href="eml-entity_xsd.html#OtherEntityType_entityType" coords="386,1142,473,1166" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="308,1280,396,1304" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="226,1235,394,1261" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType" href="eml-entity_xsd.html#OtherEntityType" coords="141,3,279,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_otherEntity" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_otherEntity');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_otherEntity" 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_otherEntity" type="image" src="img/btM.gif" value="-" onclick="switchState('model_otherEntity');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_otherEntity" 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-entity_xsd.html#OtherEntityType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">attributeList{0,1}</a></b> , <b><a href="eml-entity_xsd.html#OtherEntityType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">constraint*</a></b> , <b><a href="eml-entity_xsd.html#OtherEntityType_entityType" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityType</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-entity_xsd.html#OtherEntityType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">attributeList</a></b>, <b><a href="eml-entity_xsd.html#OtherEntityType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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#OtherEntityType_entityType" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityType</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-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_otherEntity" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_otherEntity');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_otherEntity" 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;otherEntity</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/entity-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">{0,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;entityType</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/entityType&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;/otherEntity&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_otherEntity" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_otherEntity');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_otherEntity" 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-entity_xsd.html#OtherEntityType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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-entity_xsd.html#OtherEntityType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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-entity_xsd.html#OtherEntityType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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="OtherEntityType"></a><div class="componentTitle">Complex Type <span class="qname">OtherEntityType</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/entity-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_OtherEntityType" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_OtherEntityType');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_OtherEntityType" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Complex_Type_OtherEntityType.png" usemap="#eml-entity_xsd_Complex_Type_OtherEntityType" /><map name="eml-entity_xsd_Complex_Type_OtherEntityType" id="eml-entity_xsd_Complex_Type_OtherEntityType">
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_id" href="eml-entity_xsd.html#OtherEntityType_id" coords="184,38,252,62" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_system" href="eml-entity_xsd.html#OtherEntityType_system" coords="184,72,270,96" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_scope" href="eml-entity_xsd.html#OtherEntityType_scope" coords="184,106,264,130" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="418,191,544,215" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="418,268,509,292" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="418,358,541,382" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="418,435,493,459" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="418,525,498,549" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="418,615,496,639" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="418,705,523,729" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="418,795,507,819" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup" href="eml-entity_xsd.html#EntityGroup" coords="315,150,434,176" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_attributeList" href="eml-entity_xsd.html#OtherEntityType_attributeList" coords="404,935,500,959" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_constraint" href="eml-entity_xsd.html#OtherEntityType_constraint" coords="404,1012,490,1036" />
                                 <area alt="eml-entity_xsd.tmp#OtherEntityType_entityType" href="eml-entity_xsd.html#OtherEntityType_entityType" coords="404,1102,491,1126" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="326,1240,414,1264" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="244,1195,412,1221" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_OtherEntityType" type="image" src="img/btM.gif" value="-" onclick="switchState('model_OtherEntityType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_OtherEntityType" 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-entity_xsd.html#OtherEntityType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">attributeList{0,1}</a></b> , <b><a href="eml-entity_xsd.html#OtherEntityType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">constraint*</a></b> , <b><a href="eml-entity_xsd.html#OtherEntityType_entityType" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityType</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-entity_xsd.html#OtherEntityType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">attributeList</a></b>, <b><a href="eml-entity_xsd.html#OtherEntityType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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#OtherEntityType_entityType" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityType</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-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_OtherEntityType" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_OtherEntityType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_OtherEntityType" 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-entity_xsd.html#OtherEntityType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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-entity_xsd.html#OtherEntityType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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-entity_xsd.html#OtherEntityType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.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="EntityGroup_EntityGroup_alternateIdentifier_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-entity_xsd.html#EntityGroup" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">EntityGroup</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> / @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">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_EntityGroup_EntityGroup_alternateIdentifier_system" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup_EntityGroup_alternateIdentifier_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup_EntityGroup_alternateIdentifier_system" 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: Identifier System</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The system in which this id is</span><span class="tI">
</span><span class="tT">                    relevant</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The information management system within</span><span class="tI">
</span><span class="tT">                    which this identifier has relevance. Generally, the</span><span class="tI">
</span><span class="tT">                    identifier would be unique within the "system" and would be</span><span class="tI">
</span><span class="tT">                    sufficient to retrieve the entity from the system. The</span><span class="tI">
</span><span class="tT">                    system is often a URL or URI that identifies the main entry</span><span class="tI">
</span><span class="tT">                    point for the information management</span><span class="tI">
</span><span class="tT">                    system.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: </span><span class="tI">
</span><span class="tT">                    http://knb.ecoinformatics.org/knb/</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </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_EntityGroup_EntityGroup_alternateIdentifier_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_EntityGroup_EntityGroup_alternateIdentifier_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_EntityGroup_EntityGroup_alternateIdentifier_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="OtherEntityType_id"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</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_OtherEntityType_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_OtherEntityType_id');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_OtherEntityType_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="OtherEntityType_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</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_OtherEntityType_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_OtherEntityType_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_OtherEntityType_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="OtherEntityType_scope"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-entity_xsd.html#OtherEntityType" target="mainFrame" title="https://eml.ecoinformatics.org/entity-2.2.0" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">OtherEntityType</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_OtherEntityType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_OtherEntityType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_OtherEntityType_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_OtherEntityType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_OtherEntityType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_OtherEntityType_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><a id="EntityGroup"></a><div class="componentTitle">Element Group <span class="qname">EntityGroup</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/entity-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_EntityGroup" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_EntityGroup');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_EntityGroup" 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: Base Entity descriptors</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Basic information about an entity common to all entity</span><span class="tI">
</span><span class="tT">        types.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The EntityGroup defines the common structure for</span><span class="tI">
</span><span class="tT">        descriptions of any type of entity, including the name and attributes</span><span class="tI">
</span><span class="tT">        of the entity. The term entity is used in the sense of an entity in a</span><span class="tI">
</span><span class="tT">        relational model. The most common entity is a table, something with</span><span class="tI">
</span><span class="tT">        columns and rows, but can also represent an image or other type of</span><span class="tI">
</span><span class="tT">        data. See 'eml-attribute' for descriptions of the required attribute</span><span class="tI">
</span><span class="tT">        fields.</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_EntityGroup" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_EntityGroup');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_EntityGroup" style="display:block"><img alt="Diagram" border="0" src="img/eml-entity_xsd_Element_Group_EntityGroup.png" usemap="#eml-entity_xsd_Element_Group_EntityGroup" /><map name="eml-entity_xsd_Element_Group_EntityGroup" id="eml-entity_xsd_Element_Group_EntityGroup">
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="259,0,385,24" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="259,77,350,101" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="259,167,382,191" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="259,244,334,268" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="259,334,339,358" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="259,424,337,448" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="259,514,364,538" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="259,604,348,628" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_EntityGroup" type="image" src="img/btM.gif" value="-" onclick="switchState('model_EntityGroup');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_EntityGroup" 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></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-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-entity_xsd.html#EntityGroup_physical" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">physical</a></b></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>