<!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-view.xsd</title>
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
         <!--
        var propertiesBoxes= new Array('properties_eml-view.xsd', 
				'properties_ViewType_attributeList', 
				'properties_ViewType_constraint', 
				'properties_ViewType_queryStatement', 
				'properties_view', 
				'properties_ViewType_id', 
				'properties_ViewType_system', 
				'properties_ViewType_scope');
var facetsBoxes= new Array('facets_ViewType_queryStatement', 
				'facets_ViewType_scope');
var instanceBoxes= new Array('instance_ViewType_attributeList', 
				'instance_ViewType_constraint', 
				'instance_view');
var diagramBoxes= new Array('diagram_ViewType_attributeList', 
				'diagram_ViewType_constraint', 
				'diagram_ViewType_queryStatement', 
				'diagram_view', 
				'diagram_ViewType');
var annotationBoxes= new Array('annotations_eml-view.xsd', 
				'annotations_ViewType_attributeList', 
				'annotations_ViewType_constraint', 
				'annotations_ViewType_queryStatement', 
				'annotations_view', 
				'annotations_ViewType');
var attributesBoxes= new Array('attributes_ViewType_attributeList', 
				'attributes_ViewType_constraint', 
				'attributes_view', 
				'attributes_ViewType');
var modelBoxes= new Array('model_ViewType_attributeList', 
				'model_ViewType_constraint', 
				'model_view', 
				'model_ViewType');

      
        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-view.xsd"></a><div class="componentTitle">Imported schema <span class="qname">eml-view.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/view-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml-view.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml-view.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml-view.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-view.xsd,v $'</span><span class="tI">
</span><span class="tT">       Copyright: 1997-2002 Regents of the University of California,</span><span class="tI">
</span><span class="tT">                            University of New Mexico, and</span><span class="tI">
</span><span class="tT">                            Arizona State University</span><span class="tI">
</span><span class="tT">        Sponsors: National Center for Ecological Analysis and Synthesis and</span><span class="tI">
</span><span class="tT">                  Partnership for Interdisciplinary Studies of Coastal Oceans,</span><span class="tI">
</span><span class="tT">                     University of California Santa Barbara</span><span class="tI">
</span><span class="tT">                  Long-Term Ecological Research Network Office,</span><span class="tI">
</span><span class="tT">                     University of New Mexico</span><span class="tI">
</span><span class="tT">                  Center for Environmental Studies, Arizona State University</span><span class="tI">
</span><span class="tT">   Other funding: National Science Foundation (see README for details)</span><span class="tI">
</span><span class="tT">                  The David and Lucile Packard Foundation</span><span class="tI">
</span><span class="tT">     For Details: http://knb.ecoinformatics.org/</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">        '$Author: obrien $'</span><span class="tI">
</span><span class="tT">          '$Date: 2008-11-14 23:50:13 $'</span><span class="tI">
</span><span class="tT">      '$Revision: 1.43 $'</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-view</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-view module - Data tables resulting from a</span><span class="tI">
</span><span class="tT">            database query</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: all datasets that contain one or more</span><span class="tI">
</span><span class="tT">        views</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">standAlone: yes</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml-view.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml-view.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml-view.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="ViewType_attributeList"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</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_ViewType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ViewType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_ViewType_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_ViewType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ViewType_attributeList');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_ViewType_attributeList" style="display:block"><img alt="Diagram" border="0" src="img/eml-view_xsd_Element_attributeList.png" usemap="#eml-view_xsd_Element_attributeList" /><map name="eml-view_xsd_Element_attributeList" id="eml-view_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_ViewType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ViewType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ViewType_attributeList" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ViewType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ViewType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_ViewType_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_ViewType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ViewType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_ViewType_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_ViewType_attributeList" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ViewType_attributeList');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_ViewType_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="ViewType_constraint"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</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_ViewType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ViewType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_ViewType_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_ViewType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ViewType_constraint');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_ViewType_constraint" style="display:block"><img alt="Diagram" border="0" src="img/eml-view_xsd_Element_constraint.png" usemap="#eml-view_xsd_Element_constraint" /><map name="eml-view_xsd_Element_constraint" id="eml-view_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_ViewType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ViewType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ViewType_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_ViewType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ViewType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_ViewType_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_ViewType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ViewType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_ViewType_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_ViewType_constraint" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ViewType_constraint');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_ViewType_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="ViewType_queryStatement"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</a></b> / queryStatement</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_ViewType_queryStatement" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ViewType_queryStatement');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_ViewType_queryStatement" 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: Query Statement</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Query syntax that produced the view</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The value of a queryStatement field is the</span><span class="tI">
</span><span class="tT">              actual query statement stored in the database is entered here.</span><span class="tI">
</span><span class="tT">              The query statement generates the entity being</span><span class="tI">
</span><span class="tT">              documented.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: Select site as SiteID,common_name as CommonName,</span><span class="tI">
</span><span class="tT">              count as CountOfIndividuals from samples inner join taxonlist</span><span class="tI">
</span><span class="tT">              on samples.speciesid=taxonlist.speciesid</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_ViewType_queryStatement" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ViewType_queryStatement');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_ViewType_queryStatement" style="display:block"><img alt="Diagram" border="0" src="img/eml-view_xsd_Element_queryStatement.png" usemap="#eml-view_xsd_Element_queryStatement" /><map name="eml-view_xsd_Element_queryStatement" id="eml-view_xsd_Element_queryStatement">
                                 <area alt="eml-resource_xsd.tmp#NonEmptyStringType" href="eml-resource_xsd.html#NonEmptyStringType" coords="163,0,351,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_ViewType_queryStatement" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ViewType_queryStatement');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ViewType_queryStatement" 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_ViewType_queryStatement" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_ViewType_queryStatement');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_ViewType_queryStatement" 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="view"></a><div class="componentTitle">Element <span class="qname">view</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/view-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_view" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_view');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_view" 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: View</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The View element is a container for documenting a</span><span class="tI">
</span><span class="tT">        view.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The View element is a container for documenting a</span><span class="tI">
</span><span class="tT">        view. The structure of the view element is defined by the</span><span class="tI">
</span><span class="tT">        ViewType.</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_view" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_view');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_view" style="display:block"><img alt="Diagram" border="0" src="img/eml-view_xsd_Element_view.png" usemap="#eml-view_xsd_Element_view" /><map name="eml-view_xsd_Element_view" id="eml-view_xsd_Element_view">
                                 <area alt="eml-view_xsd.tmp#ViewType_id" href="eml-view_xsd.html#ViewType_id" coords="130,78,198,102" />
                                 <area alt="eml-view_xsd.tmp#ViewType_system" href="eml-view_xsd.html#ViewType_system" coords="130,112,216,136" />
                                 <area alt="eml-view_xsd.tmp#ViewType_scope" href="eml-view_xsd.html#ViewType_scope" coords="130,146,210,170" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="385,231,511,255" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="385,308,476,332" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="385,398,508,422" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="385,475,460,499" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="385,565,465,589" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="385,655,463,679" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="385,745,490,769" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="385,835,474,859" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup" href="eml-entity_xsd.html#EntityGroup" coords="282,190,421,216" />
                                 <area alt="eml-view_xsd.tmp#ViewType_attributeList" href="eml-view_xsd.html#ViewType_attributeList" coords="279,975,375,999" />
                                 <area alt="eml-view_xsd.tmp#ViewType_constraint" href="eml-view_xsd.html#ViewType_constraint" coords="279,1052,365,1076" />
                                 <area alt="eml-view_xsd.tmp#ViewType_queryStatement" href="eml-view_xsd.html#ViewType_queryStatement" coords="279,1142,394,1166" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="272,1280,360,1304" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="190,1235,358,1261" />
                                 <area alt="eml-view_xsd.tmp#ViewType" href="eml-view_xsd.html#ViewType" coords="105,3,206,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_view" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_view');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_view" 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_view" type="image" src="img/btM.gif" value="-" onclick="switchState('model_view');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_view" 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-view_xsd.html#ViewType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">attributeList</a></b> , <b><a href="eml-view_xsd.html#ViewType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">constraint*</a></b> , <b><a href="eml-view_xsd.html#ViewType_queryStatement" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">queryStatement</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-view_xsd.html#ViewType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">attributeList</a></b>, <b><a href="eml-view_xsd.html#ViewType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">constraint</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">coverage</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityDescription" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityDescription</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityName</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">methods</a></b>, <b><a href="eml-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-view_xsd.html#ViewType_queryStatement" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">queryStatement</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_view" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_view');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_view" 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;view</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/view-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;alternateIdentifier</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/alternateIdentifier&gt;</span><span class="tI">
  </span><span class="tEl">&lt;entityName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/entityName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;entityDescription</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/entityDescription&gt;</span><span class="tI">
  </span><span class="tEl">&lt;physical</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/physical&gt;</span><span class="tI">
  </span><span class="tEl">&lt;coverage</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/coverage&gt;</span><span class="tI">
  </span><span class="tEl">&lt;methods</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/methods&gt;</span><span class="tI">
  </span><span class="tEl">&lt;additionalInfo</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/additionalInfo&gt;</span><span class="tI">
  </span><span class="tEl">&lt;annotation</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/annotation&gt;</span><span class="tI">
  </span><span class="tEl">&lt;attributeList</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/attributeList&gt;</span><span class="tI">
  </span><span class="tEl">&lt;constraint</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/constraint&gt;</span><span class="tI">
  </span><span class="tEl">&lt;queryStatement</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/queryStatement&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;/view&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_view" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_view');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_view" 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-view_xsd.html#ViewType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.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-view_xsd.html#ViewType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.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-view_xsd.html#ViewType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.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="ViewType"></a><div class="componentTitle">Complex Type <span class="qname">ViewType</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/view-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_ViewType" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ViewType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_ViewType" 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: ViewType</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The ViewType complex type defines the structure for</span><span class="tI">
</span><span class="tT">        documenting a view.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The ViewType complex type defines the structure for</span><span class="tI">
</span><span class="tT">        documenting a view. This type extends the EntityGroup with a</span><span class="tI">
</span><span class="tT">        queryStatement.</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_ViewType" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ViewType');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_ViewType" style="display:block"><img alt="Diagram" border="0" src="img/eml-view_xsd_Complex_Type_ViewType.png" usemap="#eml-view_xsd_Complex_Type_ViewType" /><map name="eml-view_xsd_Complex_Type_ViewType" id="eml-view_xsd_Complex_Type_ViewType">
                                 <area alt="eml-view_xsd.tmp#ViewType_id" href="eml-view_xsd.html#ViewType_id" coords="167,38,235,62" />
                                 <area alt="eml-view_xsd.tmp#ViewType_system" href="eml-view_xsd.html#ViewType_system" coords="167,72,253,96" />
                                 <area alt="eml-view_xsd.tmp#ViewType_scope" href="eml-view_xsd.html#ViewType_scope" coords="167,106,247,130" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_alternateIdentifier" href="eml-entity_xsd.html#EntityGroup_alternateIdentifier" coords="422,191,548,215" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityName" href="eml-entity_xsd.html#EntityGroup_entityName" coords="422,268,513,292" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_entityDescription" href="eml-entity_xsd.html#EntityGroup_entityDescription" coords="422,358,545,382" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_physical" href="eml-entity_xsd.html#EntityGroup_physical" coords="422,435,497,459" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_coverage" href="eml-entity_xsd.html#EntityGroup_coverage" coords="422,525,502,549" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_methods" href="eml-entity_xsd.html#EntityGroup_methods" coords="422,615,500,639" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_additionalInfo" href="eml-entity_xsd.html#EntityGroup_additionalInfo" coords="422,705,527,729" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup_annotation" href="eml-entity_xsd.html#EntityGroup_annotation" coords="422,795,511,819" />
                                 <area alt="eml-entity_xsd.tmp#EntityGroup" href="eml-entity_xsd.html#EntityGroup" coords="319,150,458,176" />
                                 <area alt="eml-view_xsd.tmp#ViewType_attributeList" href="eml-view_xsd.html#ViewType_attributeList" coords="316,935,412,959" />
                                 <area alt="eml-view_xsd.tmp#ViewType_constraint" href="eml-view_xsd.html#ViewType_constraint" coords="316,1012,402,1036" />
                                 <area alt="eml-view_xsd.tmp#ViewType_queryStatement" href="eml-view_xsd.html#ViewType_queryStatement" coords="316,1102,431,1126" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="309,1240,397,1264" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="227,1195,395,1221" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ViewType" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ViewType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_ViewType" 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-view_xsd.html#ViewType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">attributeList</a></b> , <b><a href="eml-view_xsd.html#ViewType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">constraint*</a></b> , <b><a href="eml-view_xsd.html#ViewType_queryStatement" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">queryStatement</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-view_xsd.html#ViewType_attributeList" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">attributeList</a></b>, <b><a href="eml-view_xsd.html#ViewType_constraint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">constraint</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">coverage</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityDescription" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityDescription</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_entityName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">entityName</a></b>, <b><a href="eml-entity_xsd.html#EntityGroup_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-entity.xsd')">methods</a></b>, <b><a href="eml-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-view_xsd.html#ViewType_queryStatement" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">queryStatement</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_ViewType" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ViewType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_ViewType" 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-view_xsd.html#ViewType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.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-view_xsd.html#ViewType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.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-view_xsd.html#ViewType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-view.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="ViewType_id"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</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_ViewType_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ViewType_id');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ViewType_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="ViewType_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</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_ViewType_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ViewType_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ViewType_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="ViewType_scope"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-view_xsd.html#ViewType" target="mainFrame" title="https://eml.ecoinformatics.org/view-2.2.0" onclick="updatePageTitle('Schema documentation for eml-view.xsd')">ViewType</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_ViewType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ViewType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ViewType_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_ViewType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_ViewType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_ViewType_scope" style="display:block">
                              <table class="facetsTable">
                                 <tr>
                                    <td class="firstColumn">enumeration</td>
                                    <td width="30%"><b>system</b></td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn">enumeration</td>
                                    <td width="30%"><b>document</b></td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table>
      <div class="footer">
         <hr />
         <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX">&lt;</span>o<span class="redX">X</span>ygen<span class="redX">/&gt;</span></span></a><sup>®</sup> XML Editor Trial Edition.
         </div>
      </div><script type="text/javascript">
         <!--
                     // The namespace is the selected option in the TOC combo.
                    
                     // Floats the toolbar.
                     var globalControls = getElementObject("global_controls"); 
                     
                     if(globalControls != null){
	                     var browser=navigator.appName;
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
						 
						 var IE6 = false;
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
						 	IE6 = true;
						 }
	
	                     //alert (IE6 + " |V| " + version);
	                     
	                     if(IE6){
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
	                         globalControls.style.position='absolute';                         
	                         // The global controls will do not exist in the TOC frame, when chunking.
	                         findAndFloat("global_controls", 225, 30);    
	                     } else {
	                      	  globalControls.style.position='fixed';                     	
	                     }
	                     
	                     globalControls.style.right='0';                       
                     }
                //--></script></body>
</html>