<!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.xsd</title>
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
         <!--
        var propertiesBoxes= new Array('properties_eml.xsd', 
				'properties_eml', 
				'properties_eml_access', 
				'properties_eml_dataset', 
				'properties_eml_citation', 
				'properties_eml_software', 
				'properties_eml_protocol', 
				'properties_eml_annotations', 
				'properties_eml_eml_annotations_annotation', 
				'properties_eml_additionalMetadata', 
				'properties_eml_eml_additionalMetadata_describes', 
				'properties_eml_eml_additionalMetadata_metadata', 
				'properties_eml_eml_annotations_eml_eml_annotations_annotation_references', 
				'properties_eml_eml_additionalMetadata_id', 
				'properties_eml_packageId', 
				'properties_eml_system', 
				'properties_eml_scope');
var facetsBoxes= new Array('facets_eml_eml_additionalMetadata_describes', 
				'facets_eml_scope');
var instanceBoxes= new Array('instance_eml', 
				'instance_eml_access', 
				'instance_eml_dataset', 
				'instance_eml_citation', 
				'instance_eml_software', 
				'instance_eml_protocol', 
				'instance_eml_annotations', 
				'instance_eml_eml_annotations_annotation', 
				'instance_eml_additionalMetadata');
var diagramBoxes= new Array('diagram_eml', 
				'diagram_eml_access', 
				'diagram_eml_dataset', 
				'diagram_eml_citation', 
				'diagram_eml_software', 
				'diagram_eml_protocol', 
				'diagram_eml_annotations', 
				'diagram_eml_eml_annotations_annotation', 
				'diagram_eml_additionalMetadata', 
				'diagram_eml_eml_additionalMetadata_describes', 
				'diagram_eml_eml_additionalMetadata_metadata');
var annotationBoxes= new Array('annotations_eml.xsd', 
				'annotations_eml', 
				'annotations_eml_access', 
				'annotations_eml_dataset', 
				'annotations_eml_citation', 
				'annotations_eml_software', 
				'annotations_eml_protocol', 
				'annotations_eml_annotations', 
				'annotations_eml_eml_annotations_annotation', 
				'annotations_eml_additionalMetadata', 
				'annotations_eml_eml_additionalMetadata_describes', 
				'annotations_eml_eml_additionalMetadata_metadata', 
				'annotations_eml_packageId', 
				'annotations_eml_scope');
var attributesBoxes= new Array('attributes_eml', 
				'attributes_eml_access', 
				'attributes_eml_dataset', 
				'attributes_eml_citation', 
				'attributes_eml_software', 
				'attributes_eml_protocol', 
				'attributes_eml_eml_annotations_annotation', 
				'attributes_eml_additionalMetadata');
var modelBoxes= new Array('model_eml', 
				'model_eml_access', 
				'model_eml_dataset', 
				'model_eml_citation', 
				'model_eml_software', 
				'model_eml_protocol', 
				'model_eml_annotations', 
				'model_eml_eml_annotations_annotation', 
				'model_eml_additionalMetadata', 
				'model_eml_eml_additionalMetadata_metadata');

      
        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.xsd"></a><div class="componentTitle">Main schema <span class="qname">eml.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/eml-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml.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.xsd,v $' Copyright: 1997-2002 Regents of the University of</span><span class="tI">
</span><span class="tT">California, University of New Mexico, and Arizona State University Sponsors: National Center</span><span class="tI">
</span><span class="tT">for Ecological Analysis and Synthesis and Partnership for Interdisciplinary Studies of Coastal</span><span class="tI">
</span><span class="tT">Oceans, University of California Santa Barbara Long-Term Ecological Research Network Office,</span><span class="tI">
</span><span class="tT">University of New Mexico Center for Environmental Studies, Arizona State University Other</span><span class="tI">
</span><span class="tT">funding: National Science Foundation (see README for details) The David and Lucile Packard</span><span class="tI">
</span><span class="tT">Foundation For Details: http://knb.ecoinformatics.org/ '$Author: obrien $' '$Date: 2008/04/09</span><span class="tI">
</span><span class="tT">21:31:41 $' '$Revision: 1.59 $' This program is free software; you can redistribute it and/or</span><span class="tI">
</span><span class="tT">modify it under the terms of the GNU General Public License as published by the Free Software</span><span class="tI">
</span><span class="tT">Foundation; either version 2 of the License, or (at your option) any later version. This</span><span class="tI">
</span><span class="tT">program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without</span><span class="tI">
</span><span class="tT">even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span><span class="tI">
</span><span class="tT">General Public License for more details. You should have received a copy of the GNU General</span><span class="tI">
</span><span class="tT">Public License along with this program; if not, write to the Free Software Foundation, Inc.,</span><span class="tI">
</span><span class="tT">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</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">             The eml module - A metadata container </span><span class="tI">
</span><span class="tT">             The eml module is a wrapper container that allows the inclusion of any metadata</span><span class="tI">
</span><span class="tT">              content in a single EML document. The eml module is used as a container to hold</span><span class="tI">
</span><span class="tT">              structured descriptions of ecological resources. In EML, the definition of a resource</span><span class="tI">
</span><span class="tT">              comes from the </span><span class="tI">
</span><span class="tT">                 The Dublin Core Metadata Initiative </span><span class="tI">
</span><span class="tT">              , which describes a general element set used to describe "networked digital</span><span class="tI">
</span><span class="tT">              resources". The top-level structure of EML has been designed to be compatible with the</span><span class="tI">
</span><span class="tT">              Dublin Core syntax. In general, dataset resources, literature resources, software</span><span class="tI">
</span><span class="tT">              resources, and protocol resources comprise the list of information that may be</span><span class="tI">
</span><span class="tT">              described in EML. EML is largely designed to describe digital resources, however, it</span><span class="tI">
</span><span class="tT">              may also be used to describe non-digital resources such as paper maps and other</span><span class="tI">
</span><span class="tT">              non-digital media.  In EML, the definition of a "Data Package" is the</span><span class="tI">
</span><span class="tT">                combination of both the data and metadata for a resource.  So, data</span><span class="tI">
</span><span class="tT">              packages are built by using the &lt;eml&gt; wrapper, which will include all of</span><span class="tI">
</span><span class="tT">              the metadata, and optionally the data (or references to them). All EML packages must</span><span class="tI">
</span><span class="tT">              begin with the &lt;eml&gt; tag and end with the &lt;/eml&gt; tag. </span><span class="tI">
</span><span class="tT">             The eml module may be extended to describe other resources by means of its</span><span class="tI">
</span><span class="tT">              optional sub-field, &lt;additionalMetadata&gt;. This field is largely reserved</span><span class="tI">
</span><span class="tT">              for the inclusion of metadata that may be highly discipline specific and not covered</span><span class="tI">
</span><span class="tT">              in this version of EML, or it may be used to internally extend fields within the EML</span><span class="tI">
</span><span class="tT">              standard. </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</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.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml.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="eml"></a><div class="componentTitle">Element <span class="qname">eml</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/eml-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml" 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: Ecological Metadata</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A collection of EML metadata and additional metadata linked using the inline</span><span class="tI">
</span><span class="tT">          references.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The "eml" element allows for the inclusion of any metadata content in a</span><span class="tI">
</span><span class="tT">          single EML document. In general, dataset resources, literature resources, and software</span><span class="tI">
</span><span class="tT">          resources, or another type that extends eml-resource are described using an eml document.</span><span class="tI">
</span><span class="tT">          The eml document represents a "package" that can contain both metadata and data. It can</span><span class="tI">
</span><span class="tT">          optionally include non-EML metadata through the flexibility of the "additionalMetadata"</span><span class="tI">
</span><span class="tT">          element. Any additional metadata that is provided can provide a pointer into the EML</span><span class="tI">
</span><span class="tT">          metadata indicating what the context of the additional metadata is (i.e., what it</span><span class="tI">
</span><span class="tT">          describes). For example, a spatial raster image might be described in EML, and an FGDC</span><span class="tI">
</span><span class="tT">          CSDGM metadata document could be included in the additionalMetadata element with a pointer</span><span class="tI">
</span><span class="tT">          to the EML spatialRaster element to indicate that the FGDC metadata is providing</span><span class="tI">
</span><span class="tT">          supplemental documentation about that particular image entity. There is no validity</span><span class="tI">
</span><span class="tT">          constraint that restricts what metadata may be present in additionalMetadata.</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_eml" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_eml.png" usemap="#eml_xsd_Element_eml" /><map name="eml_xsd_Element_eml" id="eml_xsd_Element_eml">
                                 <area alt="eml_xsd.tmp#eml_packageId" href="eml_xsd.html#eml_packageId" coords="113,40,226,82" />
                                 <area alt="eml_xsd.tmp#eml_system" href="eml_xsd.html#eml_system" coords="113,148,262,190" />
                                 <area alt="eml_xsd.tmp#eml_scope" href="eml_xsd.html#eml_scope" coords="113,200,259,260" />
                                 <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="113,313,196,337" />
                                 <area alt="eml_xsd.tmp#eml_access" href="eml_xsd.html#eml_access" coords="191,354,341,396" />
                                 <area alt="eml_xsd.tmp#eml_dataset" href="eml_xsd.html#eml_dataset" coords="262,449,409,491" />
                                 <area alt="eml_xsd.tmp#eml_citation" href="eml_xsd.html#eml_citation" coords="262,544,411,586" />
                                 <area alt="eml_xsd.tmp#eml_software" href="eml_xsd.html#eml_software" coords="262,639,416,681" />
                                 <area alt="eml_xsd.tmp#eml_protocol" href="eml_xsd.html#eml_protocol" coords="262,734,420,776" />
                                 <area alt="eml_xsd.tmp#eml_annotations" href="eml_xsd.html#eml_annotations" coords="191,829,286,853" />
                                 <area alt="eml_xsd.tmp#eml_additionalMetadata" href="eml_xsd.html#eml_additionalMetadata" coords="191,919,323,943" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml" 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_eml" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml" style="display:block"><b><a href="eml_xsd.html#eml_access" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">access{0,1}</a></b> , (<b><a href="eml_xsd.html#eml_dataset" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">dataset</a></b> | <b><a href="eml_xsd.html#eml_citation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">citation</a></b> | <b><a href="eml_xsd.html#eml_software" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">software</a></b> | <b><a href="eml_xsd.html#eml_protocol" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">protocol</a></b>) , <b><a href="eml_xsd.html#eml_annotations" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotations{0,1}</a></b> , <b><a href="eml_xsd.html#eml_additionalMetadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">additionalMetadata*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml_xsd.html#eml_access" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">access</a></b>, <b><a href="eml_xsd.html#eml_additionalMetadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">additionalMetadata</a></b>, <b><a href="eml_xsd.html#eml_annotations" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotations</a></b>, <b><a href="eml_xsd.html#eml_citation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">citation</a></b>, <b><a href="eml_xsd.html#eml_dataset" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">dataset</a></b>, <b><a href="eml_xsd.html#eml_protocol" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">protocol</a></b>, <b><a href="eml_xsd.html#eml_software" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">software</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml" 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;eml</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">packageId=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"system"</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/eml-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;access</span><span class="tT"> </span><span class="tAN">authSystem=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">order=</span><span class="tAV">"allowFirst"</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;/access&gt;</span><span class="tI">
  </span><span class="tEl">&lt;dataset</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/dataset&gt;</span><span class="tI">
  </span><span class="tEl">&lt;citation</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/citation&gt;</span><span class="tI">
  </span><span class="tEl">&lt;software</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/software&gt;</span><span class="tI">
  </span><span class="tEl">&lt;protocol</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/protocol&gt;</span><span class="tI">
  </span><span class="tEl">&lt;annotations</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/annotations&gt;</span><span class="tI">
  </span><span class="tEl">&lt;additionalMetadata</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/additionalMetadata&gt;</span><span class="tI">
</span><span class="tEl">&lt;/eml&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_eml" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="5%">Fixed</th>
                                       <th width="5%">Use</th>
                                       <th>Annotation</th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml_xsd.html#eml_packageId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">packageId</a></b></td>
                                    <td><b>xs:string</b></td>
                                    <td></td>
                                    <td>required</td>
                                    <td>
                                       <div class="annotation">
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                             <tr>
                                                <td width="100%"><pre><span class="tT">tooltip: Package Identifer</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A globally unique identifier for the data package described by this EML metadata document that can be used</span><span class="tI">
</span><span class="tT">              to cite it elsewhere.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A globally unique identifier for the data package described by this EML metadata document</span><span class="tI">
</span><span class="tT">              that can be used to cite it elsewhere. This identifier can be interpreted as the formal</span><span class="tI">
</span><span class="tT">              accession number for the data package, and is therefore required. It must be globally unique</span><span class="tI">
</span><span class="tT">              within a particular data management system, which should be specified in the system</span><span class="tI">
</span><span class="tT">              attribute as a URI. Typically a DOI or other identifier that is both citable and</span><span class="tI">
</span><span class="tT">              resolvable is used for published data packages.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: doi:10.5063/F17P8WGK</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: https://doi.org/10.5063/F17P8WGK</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: urn:uuid:04cd34fd-25d4-447f-ab6e-73a572c5d383</span></pre></td>
                                             </tr>
                                          </table>
                                       </div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml_xsd.html#eml_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.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>system</td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation">
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                             <tr>
                                                <td width="100%"><pre><span class="tT">tooltip: Identifer Scope</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The scope of the identifier.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The scope of the identifier. Scope is generally set to either "system",</span><span class="tI">
</span><span class="tT">              meaning that it is scoped according to the "system" attribute, or "document" if it is</span><span class="tI">
</span><span class="tT">              only to be in scope within this single document instance. In this particular use of</span><span class="tI">
</span><span class="tT">              scope, it is FIXED to be "system" because the packageId is required and always has the</span><span class="tI">
</span><span class="tT">              scope of the required "system". </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: system</span></pre></td>
                                             </tr>
                                          </table>
                                       </div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml_xsd.html#eml_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.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>required</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td>
                                    <td></td>
                                    <td></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="eml_access"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / access</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_eml_access" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_access');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_access" 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: Access</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: Access control rules for the entire resource, which can be overridden by access rules in distribution trees</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: An optional access tree at this location controls access to the entire metadata document. If this access element is omitted from the document, then the package submitter should be given full access to the package but all other users should be denied all access.</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_eml_access" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_access');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_access" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_access.png" usemap="#eml_xsd_Element_access" /><map name="eml_xsd_Element_access" id="eml_xsd_Element_access">
                                 <area alt="eml-access_xsd.tmp#AccessType_id" href="eml-access_xsd.html#AccessType_id" coords="226,78,294,102" />
                                 <area alt="eml-access_xsd.tmp#AccessType_system" href="eml-access_xsd.html#AccessType_system" coords="226,112,312,136" />
                                 <area alt="eml-access_xsd.tmp#AccessType_scope" href="eml-access_xsd.html#AccessType_scope" coords="226,146,306,170" />
                                 <area alt="eml-access_xsd.tmp#AccessType_order" href="eml-access_xsd.html#AccessType_order" coords="226,180,304,204" />
                                 <area alt="eml-access_xsd.tmp#AccessType_authSystem" href="eml-access_xsd.html#AccessType_authSystem" coords="226,270,336,294" />
                                 <area alt="eml-access_xsd.tmp#AccessType_allow" href="eml-access_xsd.html#AccessType_allow" coords="375,367,433,391" />
                                 <area alt="eml-access_xsd.tmp#AccessType_deny" href="eml-access_xsd.html#AccessType_deny" coords="375,457,432,481" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="389,595,477,619" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="307,550,475,576" />
                                 <area alt="eml-access_xsd.tmp#AccessType" href="eml-access_xsd.html#AccessType" coords="201,3,337,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-access_xsd.html#AccessType" target="mainFrame" title="https://eml.ecoinformatics.org/access-2.2.0" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">AccessType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_access" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_access');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_access" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">minOccurs</td>
                                    <td><b>0</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_eml_access" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_access');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_access" style="display:block"><b><a href="eml-access_xsd.html#AccessType_allow" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">allow</a></b> | <b><a href="eml-access_xsd.html#AccessType_deny" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">deny</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-access_xsd.html#AccessType_allow" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">allow</a></b>, <b><a href="eml-access_xsd.html#AccessType_deny" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">deny</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_eml_access" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_access');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_access" 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;access</span><span class="tT"> </span><span class="tAN">authSystem=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">order=</span><span class="tAV">"allowFirst"</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;allow</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/allow&gt;</span><span class="tI">
  </span><span class="tEl">&lt;deny</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/deny&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;/access&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_eml_access" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_access');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_access" 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>Annotation</th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-access_xsd.html#AccessType_authSystem" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">authSystem</a></b></td>
                                    <td><b>xs:string</b></td>
                                    <td></td>
                                    <td>required</td>
                                    <td>
                                       <div class="annotation">
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                             <tr>
                                                <td width="100%"><pre><span class="tT">tooltip: Authentication system</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The authentication system is used to verify the user or</span><span class="tI">
</span><span class="tT">          group to whom access is allowed or denied.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The authentication system determines the set of</span><span class="tI">
</span><span class="tT">          principals (users + groups) that can be used in the access control</span><span class="tI">
</span><span class="tT">          list, and the membership of users in groups. This element is intended</span><span class="tI">
</span><span class="tT">          to provide a reference to the authentication system that is used to</span><span class="tI">
</span><span class="tT">          verify the user or group. This reference is typically in the form</span><span class="tI">
</span><span class="tT">          of a URI, which includes the connection protocol, Internet host, and</span><span class="tI">
</span><span class="tT">          path to the authentication mechanism.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: </span><span class="tI">
</span><span class="tT">          ldap://ldap.ecoinformatics.org:389/dc=ecoinformatics,dc=org</span></pre></td>
                                             </tr>
                                          </table>
                                       </div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-access_xsd.html#AccessType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.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-access_xsd.html#AccessType_order" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.xsd')">order</a></b></td>
                                    <td>restriction of <b>xs:string</b></td>
                                    <td>allowFirst</td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation">
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                             <tr>
                                                <td width="100%"><pre><span class="tT">tooltip: Rule order</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The order in which the allow and deny rules should be</span><span class="tI">
</span><span class="tT">          applied.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: To obtain the desired access control, use the order</span><span class="tI">
</span><span class="tT">          attribute to define which rules should be applied first. The acceptable</span><span class="tI">
</span><span class="tT">          values are 'allowFirst' and 'denyFirst'. If 'allowFirst' is</span><span class="tI">
</span><span class="tT">          specified, then all 'allow' rules are processed, and then overridden</span><span class="tI">
</span><span class="tT">          by all 'deny' rules.  If 'denyFirst' is specified, then all 'deny'</span><span class="tI">
</span><span class="tT">          rules are processed, and then overridden by all 'allow' rules.</span><span class="tI">
</span><span class="tT">          </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: allowFirst</span></pre></td>
                                             </tr>
                                          </table>
                                       </div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-access_xsd.html#AccessType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.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-access_xsd.html#AccessType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-access.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="eml_dataset"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / dataset</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_eml_dataset" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_dataset');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_dataset" 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: Dataset Resource</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A resource that describes a data set, which can include one or more</span><span class="tI">
</span><span class="tT">                  data entities such as data tables. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A resource that describes a data set, which can include one or more</span><span class="tI">
</span><span class="tT">                  data entities such as data tables and spatial images (raster and vector). If</span><span class="tI">
</span><span class="tT">                  included, this represents the primary resource that is described in this eml</span><span class="tI">
</span><span class="tT">                  document.</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_eml_dataset" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_dataset');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_dataset" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_dataset.png" usemap="#eml_xsd_Element_dataset" /><map name="eml_xsd_Element_dataset" id="eml_xsd_Element_dataset">
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_id" href="eml-dataset_xsd.html#DatasetType_id" coords="223,78,291,102" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_system" href="eml-dataset_xsd.html#DatasetType_system" coords="223,112,309,136" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_scope" href="eml-dataset_xsd.html#DatasetType_scope" coords="223,146,303,170" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_alternateIdentifier" href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" coords="478,231,604,255" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_shortName" href="eml-resource_xsd.html#ResourceGroup_shortName" coords="478,308,568,332" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_title" href="eml-resource_xsd.html#ResourceGroup_title" coords="478,398,529,422" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_creator" href="eml-resource_xsd.html#ResourceGroup_creator" coords="478,488,548,512" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_metadataProvider" href="eml-resource_xsd.html#ResourceGroup_metadataProvider" coords="478,578,603,602" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_associatedParty" href="eml-resource_xsd.html#ResourceGroup_associatedParty" coords="478,668,593,692" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_pubDate" href="eml-resource_xsd.html#ResourceGroup_pubDate" coords="478,758,554,782" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_language" href="eml-resource_xsd.html#ResourceGroup_language" coords="478,848,558,872" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_series" href="eml-resource_xsd.html#ResourceGroup_series" coords="478,938,541,962" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_abstract" href="eml-resource_xsd.html#ResourceGroup_abstract" coords="478,1028,553,1052" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_keywordSet" href="eml-resource_xsd.html#ResourceGroup_keywordSet" coords="478,1118,570,1142" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_additionalInfo" href="eml-resource_xsd.html#ResourceGroup_additionalInfo" coords="478,1208,583,1232" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_intellectualRights" href="eml-resource_xsd.html#ResourceGroup_intellectualRights" coords="478,1298,601,1322" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_licensed" href="eml-resource_xsd.html#ResourceGroup_licensed" coords="478,1375,553,1399" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_distribution" href="eml-resource_xsd.html#ResourceGroup_distribution" coords="478,1465,572,1489" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_coverage" href="eml-resource_xsd.html#ResourceGroup_coverage" coords="478,1542,558,1566" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_annotation" href="eml-resource_xsd.html#ResourceGroup_annotation" coords="478,1632,567,1656" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup" href="eml-resource_xsd.html#ResourceGroup" coords="375,190,534,216" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_purpose" href="eml-dataset_xsd.html#DatasetType_purpose" coords="372,1772,448,1796" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_introduction" href="eml-dataset_xsd.html#DatasetType_introduction" coords="372,1862,470,1886" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_gettingStarted" href="eml-dataset_xsd.html#DatasetType_gettingStarted" coords="372,1952,479,1976" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_acknowledgements" href="eml-dataset_xsd.html#DatasetType_acknowledgements" coords="372,2029,505,2053" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_maintenance" href="eml-dataset_xsd.html#DatasetType_maintenance" coords="372,2106,471,2130" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_contact" href="eml-dataset_xsd.html#DatasetType_contact" coords="372,2196,443,2220" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_publisher" href="eml-dataset_xsd.html#DatasetType_publisher" coords="372,2286,454,2310" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_pubPlace" href="eml-dataset_xsd.html#DatasetType_pubPlace" coords="372,2376,451,2400" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_methods" href="eml-dataset_xsd.html#DatasetType_methods" coords="372,2466,450,2490" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_project" href="eml-dataset_xsd.html#DatasetType_project" coords="372,2556,441,2580" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_dataTable" href="eml-dataset_xsd.html#DatasetType_dataTable" coords="443,2646,526,2670" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_spatialRaster" href="eml-dataset_xsd.html#DatasetType_spatialRaster" coords="443,2736,543,2760" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_spatialVector" href="eml-dataset_xsd.html#DatasetType_spatialVector" coords="443,2826,544,2850" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_storedProcedure" href="eml-dataset_xsd.html#DatasetType_storedProcedure" coords="443,2903,564,2927" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_view" href="eml-dataset_xsd.html#DatasetType_view" coords="443,2993,497,3017" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_otherEntity" href="eml-dataset_xsd.html#DatasetType_otherEntity" coords="443,3083,533,3107" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_referencePublication" href="eml-dataset_xsd.html#DatasetType_referencePublication" coords="372,3173,513,3197" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_usageCitation" href="eml-dataset_xsd.html#DatasetType_usageCitation" coords="372,3250,477,3274" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType_literatureCited" href="eml-dataset_xsd.html#DatasetType_literatureCited" coords="372,3327,480,3351" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="365,3452,453,3476" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="283,3407,451,3433" />
                                 <area alt="eml-dataset_xsd.tmp#DatasetType" href="eml-dataset_xsd.html#DatasetType" coords="198,3,331,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-dataset_xsd.html#DatasetType" target="mainFrame" title="https://eml.ecoinformatics.org/dataset-2.2.0" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">DatasetType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_dataset" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_dataset');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_dataset" 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_eml_dataset" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_dataset');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_dataset" style="display:block">(<b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation*</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_purpose" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">purpose{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_introduction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">introduction{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_gettingStarted" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">gettingStarted{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_acknowledgements" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">acknowledgements{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_maintenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">maintenance{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_contact" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">contact+</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">publisher{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_pubPlace" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">pubPlace{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">methods{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_project" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">project{0,1}</a></b> , (<b><a href="eml-dataset_xsd.html#DatasetType_dataTable" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">dataTable</a></b> | <b><a href="eml-dataset_xsd.html#DatasetType_spatialRaster" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">spatialRaster</a></b> | <b><a href="eml-dataset_xsd.html#DatasetType_spatialVector" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">spatialVector</a></b> | <b><a href="eml-dataset_xsd.html#DatasetType_storedProcedure" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">storedProcedure</a></b> | <b><a href="eml-dataset_xsd.html#DatasetType_view" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">view</a></b> | <b><a href="eml-dataset_xsd.html#DatasetType_otherEntity" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">otherEntity</a></b>) , <b><a href="eml-dataset_xsd.html#DatasetType_referencePublication" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">referencePublication{0,1}</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_usageCitation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">usageCitation*</a></b> , <b><a href="eml-dataset_xsd.html#DatasetType_literatureCited" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">literatureCited*</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-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_acknowledgements" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">acknowledgements</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_contact" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">contact</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_dataTable" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">dataTable</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_gettingStarted" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">gettingStarted</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_introduction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">introduction</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_literatureCited" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">literatureCited</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_maintenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">maintenance</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_methods" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">methods</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_otherEntity" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">otherEntity</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_project" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">project</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_pubPlace" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">pubPlace</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">publisher</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_purpose" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">purpose</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_referencePublication" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">referencePublication</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_spatialRaster" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">spatialRaster</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_spatialVector" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">spatialVector</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_storedProcedure" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">storedProcedure</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_usageCitation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">usageCitation</a></b>, <b><a href="eml-dataset_xsd.html#DatasetType_view" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.xsd')">view</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_dataset" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_dataset');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_dataset" 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;dataset</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;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;shortName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/shortName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;title</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/title&gt;</span><span class="tI">
  </span><span class="tEl">&lt;creator</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;/creator&gt;</span><span class="tI">
  </span><span class="tEl">&lt;metadataProvider</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;/metadataProvider&gt;</span><span class="tI">
  </span><span class="tEl">&lt;associatedParty</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;/associatedParty&gt;</span><span class="tI">
  </span><span class="tEl">&lt;pubDate</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/pubDate&gt;</span><span class="tI">
  </span><span class="tEl">&lt;language</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,1}</span><span class="tEl">&lt;/language&gt;</span><span class="tI">
  </span><span class="tEl">&lt;series</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/series&gt;</span><span class="tI">
  </span><span class="tEl">&lt;abstract</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,1}</span><span class="tEl">&lt;/abstract&gt;</span><span class="tI">
  </span><span class="tEl">&lt;keywordSet</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/keywordSet&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;intellectualRights</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,1}</span><span class="tEl">&lt;/intellectualRights&gt;</span><span class="tI">
  </span><span class="tEl">&lt;licensed</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/licensed&gt;</span><span class="tI">
  </span><span class="tEl">&lt;distribution</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/distribution&gt;</span><span class="tI">
  </span><span class="tEl">&lt;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;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;purpose</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,1}</span><span class="tEl">&lt;/purpose&gt;</span><span class="tI">
  </span><span class="tEl">&lt;introduction</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,1}</span><span class="tEl">&lt;/introduction&gt;</span><span class="tI">
  </span><span class="tEl">&lt;gettingStarted</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,1}</span><span class="tEl">&lt;/gettingStarted&gt;</span><span class="tI">
  </span><span class="tEl">&lt;acknowledgements</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,1}</span><span class="tEl">&lt;/acknowledgements&gt;</span><span class="tI">
  </span><span class="tEl">&lt;maintenance</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/maintenance&gt;</span><span class="tI">
  </span><span class="tEl">&lt;contact</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;/contact&gt;</span><span class="tI">
  </span><span class="tEl">&lt;publisher</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;/publisher&gt;</span><span class="tI">
  </span><span class="tEl">&lt;pubPlace</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/pubPlace&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;project</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;/project&gt;</span><span class="tI">
  </span><span class="tEl">&lt;dataTable</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/dataTable&gt;</span><span class="tI">
  </span><span class="tEl">&lt;spatialRaster</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/spatialRaster&gt;</span><span class="tI">
  </span><span class="tEl">&lt;spatialVector</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/spatialVector&gt;</span><span class="tI">
  </span><span class="tEl">&lt;storedProcedure</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/storedProcedure&gt;</span><span class="tI">
  </span><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="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/view&gt;</span><span class="tI">
  </span><span class="tEl">&lt;otherEntity</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/otherEntity&gt;</span><span class="tI">
  </span><span class="tEl">&lt;referencePublication</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;/referencePublication&gt;</span><span class="tI">
  </span><span class="tEl">&lt;usageCitation</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;/usageCitation&gt;</span><span class="tI">
  </span><span class="tEl">&lt;literatureCited</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/literatureCited&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;/dataset&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_eml_dataset" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_dataset');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_dataset" 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-dataset_xsd.html#DatasetType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.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-dataset_xsd.html#DatasetType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.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-dataset_xsd.html#DatasetType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-dataset.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="eml_citation"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / citation</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_eml_citation" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_citation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_citation" 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: Literature Resource</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A resource that describes a literature citation that one might find in</span><span class="tI">
</span><span class="tT">                  a bibliography. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A resource that describes a literature citation that one might find</span><span class="tI">
</span><span class="tT">                  in a bibliography. If included, this represents the primary resource that is</span><span class="tI">
</span><span class="tT">                  described in this eml document.</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_eml_citation" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_citation');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_citation" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_citation.png" usemap="#eml_xsd_Element_citation" /><map name="eml_xsd_Element_citation" id="eml_xsd_Element_citation">
                                 <area alt="eml-literature_xsd.tmp#CitationType_id" href="eml-literature_xsd.html#CitationType_id" coords="225,78,293,102" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_system" href="eml-literature_xsd.html#CitationType_system" coords="225,112,311,136" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_scope" href="eml-literature_xsd.html#CitationType_scope" coords="225,146,305,170" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_alternateIdentifier" href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" coords="480,231,606,255" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_shortName" href="eml-resource_xsd.html#ResourceGroup_shortName" coords="480,308,570,332" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_title" href="eml-resource_xsd.html#ResourceGroup_title" coords="480,398,531,422" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_creator" href="eml-resource_xsd.html#ResourceGroup_creator" coords="480,488,550,512" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_metadataProvider" href="eml-resource_xsd.html#ResourceGroup_metadataProvider" coords="480,578,605,602" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_associatedParty" href="eml-resource_xsd.html#ResourceGroup_associatedParty" coords="480,668,595,692" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_pubDate" href="eml-resource_xsd.html#ResourceGroup_pubDate" coords="480,758,556,782" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_language" href="eml-resource_xsd.html#ResourceGroup_language" coords="480,848,560,872" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_series" href="eml-resource_xsd.html#ResourceGroup_series" coords="480,938,543,962" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_abstract" href="eml-resource_xsd.html#ResourceGroup_abstract" coords="480,1028,555,1052" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_keywordSet" href="eml-resource_xsd.html#ResourceGroup_keywordSet" coords="480,1118,572,1142" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_additionalInfo" href="eml-resource_xsd.html#ResourceGroup_additionalInfo" coords="480,1208,585,1232" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_intellectualRights" href="eml-resource_xsd.html#ResourceGroup_intellectualRights" coords="480,1298,603,1322" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_licensed" href="eml-resource_xsd.html#ResourceGroup_licensed" coords="480,1375,555,1399" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_distribution" href="eml-resource_xsd.html#ResourceGroup_distribution" coords="480,1465,574,1489" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_coverage" href="eml-resource_xsd.html#ResourceGroup_coverage" coords="480,1542,560,1566" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_annotation" href="eml-resource_xsd.html#ResourceGroup_annotation" coords="480,1632,569,1656" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup" href="eml-resource_xsd.html#ResourceGroup" coords="377,190,536,216" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_contact" href="eml-literature_xsd.html#CitationType_contact" coords="374,1772,445,1796" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_article" href="eml-literature_xsd.html#CitationType_article" coords="445,1862,509,1886" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_book" href="eml-literature_xsd.html#CitationType_book" coords="445,1952,503,1976" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_chapter" href="eml-literature_xsd.html#CitationType_chapter" coords="445,2042,517,2066" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_editedBook" href="eml-literature_xsd.html#CitationType_editedBook" coords="445,2132,535,2156" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_manuscript" href="eml-literature_xsd.html#CitationType_manuscript" coords="445,2222,537,2246" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_report" href="eml-literature_xsd.html#CitationType_report" coords="445,2312,510,2336" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_thesis" href="eml-literature_xsd.html#CitationType_thesis" coords="445,2402,508,2426" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_conferenceProceedings" href="eml-literature_xsd.html#CitationType_conferenceProceedings" coords="445,2492,602,2516" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_personalCommunication" href="eml-literature_xsd.html#CitationType_personalCommunication" coords="445,2569,608,2593" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_map" href="eml-literature_xsd.html#CitationType_map" coords="445,2646,499,2670" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_generic" href="eml-literature_xsd.html#CitationType_generic" coords="445,2736,516,2760" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_audioVisual" href="eml-literature_xsd.html#CitationType_audioVisual" coords="445,2826,538,2850" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_presentation" href="eml-literature_xsd.html#CitationType_presentation" coords="445,2916,544,2940" />
                                 <area alt="eml-literature_xsd.tmp#CitationType_bibtex" href="eml-literature_xsd.html#CitationType_bibtex" coords="282,3006,347,3030" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="367,3144,455,3168" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="285,3099,453,3125" />
                                 <area alt="eml-literature_xsd.tmp#CitationType" href="eml-literature_xsd.html#CitationType" coords="200,3,335,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-literature_xsd.html#CitationType" target="mainFrame" title="https://eml.ecoinformatics.org/literature-2.2.0" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">CitationType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_citation" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_citation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_citation" 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_eml_citation" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_citation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_citation" style="display:block">(<b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation*</a></b> , <b><a href="eml-literature_xsd.html#CitationType_contact" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">contact*</a></b> , (<b><a href="eml-literature_xsd.html#CitationType_article" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">article</a></b> | <b><a href="eml-literature_xsd.html#CitationType_book" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">book</a></b> | <b><a href="eml-literature_xsd.html#CitationType_chapter" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">chapter</a></b> | <b><a href="eml-literature_xsd.html#CitationType_editedBook" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">editedBook</a></b> | <b><a href="eml-literature_xsd.html#CitationType_manuscript" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">manuscript</a></b> | <b><a href="eml-literature_xsd.html#CitationType_report" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">report</a></b> | <b><a href="eml-literature_xsd.html#CitationType_thesis" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">thesis</a></b> | <b><a href="eml-literature_xsd.html#CitationType_conferenceProceedings" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">conferenceProceedings</a></b> | <b><a href="eml-literature_xsd.html#CitationType_personalCommunication" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">personalCommunication</a></b> | <b><a href="eml-literature_xsd.html#CitationType_map" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">map</a></b> | <b><a href="eml-literature_xsd.html#CitationType_generic" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">generic</a></b> | <b><a href="eml-literature_xsd.html#CitationType_audioVisual" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">audioVisual</a></b> | <b><a href="eml-literature_xsd.html#CitationType_presentation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">presentation</a></b>)) | <b><a href="eml-literature_xsd.html#CitationType_bibtex" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">bibtex</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-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation</a></b>, <b><a href="eml-literature_xsd.html#CitationType_article" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">article</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty</a></b>, <b><a href="eml-literature_xsd.html#CitationType_audioVisual" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">audioVisual</a></b>, <b><a href="eml-literature_xsd.html#CitationType_bibtex" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">bibtex</a></b>, <b><a href="eml-literature_xsd.html#CitationType_book" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">book</a></b>, <b><a href="eml-literature_xsd.html#CitationType_chapter" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">chapter</a></b>, <b><a href="eml-literature_xsd.html#CitationType_conferenceProceedings" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">conferenceProceedings</a></b>, <b><a href="eml-literature_xsd.html#CitationType_contact" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">contact</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution</a></b>, <b><a href="eml-literature_xsd.html#CitationType_editedBook" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">editedBook</a></b>, <b><a href="eml-literature_xsd.html#CitationType_generic" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">generic</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed</a></b>, <b><a href="eml-literature_xsd.html#CitationType_manuscript" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">manuscript</a></b>, <b><a href="eml-literature_xsd.html#CitationType_map" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">map</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider</a></b>, <b><a href="eml-literature_xsd.html#CitationType_personalCommunication" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">personalCommunication</a></b>, <b><a href="eml-literature_xsd.html#CitationType_presentation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">presentation</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>, <b><a href="eml-literature_xsd.html#CitationType_report" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">report</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName</a></b>, <b><a href="eml-literature_xsd.html#CitationType_thesis" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.xsd')">thesis</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_citation" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_citation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_citation" 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;citation</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;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;shortName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/shortName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;title</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/title&gt;</span><span class="tI">
  </span><span class="tEl">&lt;creator</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;/creator&gt;</span><span class="tI">
  </span><span class="tEl">&lt;metadataProvider</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;/metadataProvider&gt;</span><span class="tI">
  </span><span class="tEl">&lt;associatedParty</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;/associatedParty&gt;</span><span class="tI">
  </span><span class="tEl">&lt;pubDate</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/pubDate&gt;</span><span class="tI">
  </span><span class="tEl">&lt;language</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,1}</span><span class="tEl">&lt;/language&gt;</span><span class="tI">
  </span><span class="tEl">&lt;series</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/series&gt;</span><span class="tI">
  </span><span class="tEl">&lt;abstract</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,1}</span><span class="tEl">&lt;/abstract&gt;</span><span class="tI">
  </span><span class="tEl">&lt;keywordSet</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/keywordSet&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;intellectualRights</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,1}</span><span class="tEl">&lt;/intellectualRights&gt;</span><span class="tI">
  </span><span class="tEl">&lt;licensed</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/licensed&gt;</span><span class="tI">
  </span><span class="tEl">&lt;distribution</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/distribution&gt;</span><span class="tI">
  </span><span class="tEl">&lt;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;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;contact</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;/contact&gt;</span><span class="tI">
  </span><span class="tEl">&lt;article</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/article&gt;</span><span class="tI">
  </span><span class="tEl">&lt;book</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/book&gt;</span><span class="tI">
  </span><span class="tEl">&lt;chapter</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/chapter&gt;</span><span class="tI">
  </span><span class="tEl">&lt;editedBook</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/editedBook&gt;</span><span class="tI">
  </span><span class="tEl">&lt;manuscript</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/manuscript&gt;</span><span class="tI">
  </span><span class="tEl">&lt;report</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/report&gt;</span><span class="tI">
  </span><span class="tEl">&lt;thesis</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/thesis&gt;</span><span class="tI">
  </span><span class="tEl">&lt;conferenceProceedings</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/conferenceProceedings&gt;</span><span class="tI">
  </span><span class="tEl">&lt;personalCommunication</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/personalCommunication&gt;</span><span class="tI">
  </span><span class="tEl">&lt;map</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/map&gt;</span><span class="tI">
  </span><span class="tEl">&lt;generic</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/generic&gt;</span><span class="tI">
  </span><span class="tEl">&lt;audioVisual</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/audioVisual&gt;</span><span class="tI">
  </span><span class="tEl">&lt;presentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/presentation&gt;</span><span class="tI">
  </span><span class="tEl">&lt;bibtex</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/bibtex&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;/citation&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_eml_citation" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_citation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_citation" 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-literature_xsd.html#CitationType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.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-literature_xsd.html#CitationType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.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-literature_xsd.html#CitationType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-literature.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="eml_software"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / software</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_eml_software" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_software');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_software" 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: Software Resource</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A resource that describes a software package, which can include</span><span class="tI">
</span><span class="tT">                  commercial and non-commercial software as well as data processing programs. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A resource that describes a software package, which can include</span><span class="tI">
</span><span class="tT">                  commercial and non-commercial software as well as data processing programs. If</span><span class="tI">
</span><span class="tT">                  included, this represents the primary resource that is described in this eml</span><span class="tI">
</span><span class="tT">                  document.</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_eml_software" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_software');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_software" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_software.png" usemap="#eml_xsd_Element_software" /><map name="eml_xsd_Element_software" id="eml_xsd_Element_software">
                                 <area alt="eml-software_xsd.tmp#SoftwareType_id" href="eml-software_xsd.html#SoftwareType_id" coords="230,78,298,102" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_system" href="eml-software_xsd.html#SoftwareType_system" coords="230,112,316,136" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_scope" href="eml-software_xsd.html#SoftwareType_scope" coords="230,146,310,170" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_alternateIdentifier" href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" coords="485,231,611,255" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_shortName" href="eml-resource_xsd.html#ResourceGroup_shortName" coords="485,308,575,332" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_title" href="eml-resource_xsd.html#ResourceGroup_title" coords="485,398,536,422" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_creator" href="eml-resource_xsd.html#ResourceGroup_creator" coords="485,488,555,512" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_metadataProvider" href="eml-resource_xsd.html#ResourceGroup_metadataProvider" coords="485,578,610,602" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_associatedParty" href="eml-resource_xsd.html#ResourceGroup_associatedParty" coords="485,668,600,692" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_pubDate" href="eml-resource_xsd.html#ResourceGroup_pubDate" coords="485,758,561,782" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_language" href="eml-resource_xsd.html#ResourceGroup_language" coords="485,848,565,872" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_series" href="eml-resource_xsd.html#ResourceGroup_series" coords="485,938,548,962" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_abstract" href="eml-resource_xsd.html#ResourceGroup_abstract" coords="485,1028,560,1052" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_keywordSet" href="eml-resource_xsd.html#ResourceGroup_keywordSet" coords="485,1118,577,1142" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_additionalInfo" href="eml-resource_xsd.html#ResourceGroup_additionalInfo" coords="485,1208,590,1232" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_intellectualRights" href="eml-resource_xsd.html#ResourceGroup_intellectualRights" coords="485,1298,608,1322" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_licensed" href="eml-resource_xsd.html#ResourceGroup_licensed" coords="485,1375,560,1399" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_distribution" href="eml-resource_xsd.html#ResourceGroup_distribution" coords="485,1465,579,1489" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_coverage" href="eml-resource_xsd.html#ResourceGroup_coverage" coords="485,1542,565,1566" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_annotation" href="eml-resource_xsd.html#ResourceGroup_annotation" coords="485,1632,574,1656" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup" href="eml-resource_xsd.html#ResourceGroup" coords="382,190,541,216" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_implementation" href="eml-software_xsd.html#SoftwareType_implementation" coords="379,1772,493,1796" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_dependency" href="eml-software_xsd.html#SoftwareType_dependency" coords="379,1862,475,1886" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_licenseURL" href="eml-software_xsd.html#SoftwareType_licenseURL" coords="450,1952,539,1976" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_license" href="eml-software_xsd.html#SoftwareType_license" coords="450,2042,518,2066" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_version" href="eml-software_xsd.html#SoftwareType_version" coords="379,2119,450,2143" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType_project" href="eml-software_xsd.html#SoftwareType_project" coords="379,2209,448,2233" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="372,2347,460,2371" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="290,2302,458,2328" />
                                 <area alt="eml-software_xsd.tmp#SoftwareType" href="eml-software_xsd.html#SoftwareType" coords="205,3,345,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-software_xsd.html#SoftwareType" target="mainFrame" title="https://eml.ecoinformatics.org/software-2.2.0" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">SoftwareType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_software" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_software');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_software" 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_eml_software" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_software');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_software" style="display:block">(<b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation*</a></b> , <b><a href="eml-software_xsd.html#SoftwareType_implementation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">implementation+</a></b> , <b><a href="eml-software_xsd.html#SoftwareType_dependency" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">dependency*</a></b> , (<b><a href="eml-software_xsd.html#SoftwareType_licenseURL" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">licenseURL</a></b> | <b><a href="eml-software_xsd.html#SoftwareType_license" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">license</a></b>) , <b><a href="eml-software_xsd.html#SoftwareType_version" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">version</a></b> , <b><a href="eml-software_xsd.html#SoftwareType_project" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">project{0,1}</a></b>) | (<b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>)
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator</a></b>, <b><a href="eml-software_xsd.html#SoftwareType_dependency" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">dependency</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution</a></b>, <b><a href="eml-software_xsd.html#SoftwareType_implementation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">implementation</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language</a></b>, <b><a href="eml-software_xsd.html#SoftwareType_license" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">license</a></b>, <b><a href="eml-software_xsd.html#SoftwareType_licenseURL" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">licenseURL</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider</a></b>, <b><a href="eml-software_xsd.html#SoftwareType_project" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">project</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title</a></b>, <b><a href="eml-software_xsd.html#SoftwareType_version" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.xsd')">version</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_software" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_software');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_software" 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;software</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;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;shortName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/shortName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;title</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/title&gt;</span><span class="tI">
  </span><span class="tEl">&lt;creator</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;/creator&gt;</span><span class="tI">
  </span><span class="tEl">&lt;metadataProvider</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;/metadataProvider&gt;</span><span class="tI">
  </span><span class="tEl">&lt;associatedParty</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;/associatedParty&gt;</span><span class="tI">
  </span><span class="tEl">&lt;pubDate</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/pubDate&gt;</span><span class="tI">
  </span><span class="tEl">&lt;language</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,1}</span><span class="tEl">&lt;/language&gt;</span><span class="tI">
  </span><span class="tEl">&lt;series</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/series&gt;</span><span class="tI">
  </span><span class="tEl">&lt;abstract</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,1}</span><span class="tEl">&lt;/abstract&gt;</span><span class="tI">
  </span><span class="tEl">&lt;keywordSet</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/keywordSet&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;intellectualRights</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,1}</span><span class="tEl">&lt;/intellectualRights&gt;</span><span class="tI">
  </span><span class="tEl">&lt;licensed</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/licensed&gt;</span><span class="tI">
  </span><span class="tEl">&lt;distribution</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/distribution&gt;</span><span class="tI">
  </span><span class="tEl">&lt;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;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;implementation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/implementation&gt;</span><span class="tI">
  </span><span class="tEl">&lt;dependency</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/dependency&gt;</span><span class="tI">
  </span><span class="tEl">&lt;licenseURL</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/licenseURL&gt;</span><span class="tI">
  </span><span class="tEl">&lt;license</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/license&gt;</span><span class="tI">
  </span><span class="tEl">&lt;version</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/version&gt;</span><span class="tI">
  </span><span class="tEl">&lt;project</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;/project&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;/software&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_eml_software" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_software');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_software" 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-software_xsd.html#SoftwareType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.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-software_xsd.html#SoftwareType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.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-software_xsd.html#SoftwareType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-software.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="eml_protocol"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / protocol</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_eml_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_protocol" 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: Protocol Resource</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A resource that describes a scientific protocol, which can include one</span><span class="tI">
</span><span class="tT">                  or more descriptions of methods and procedures. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A resource that describes a scientific protocol, which can include</span><span class="tI">
</span><span class="tT">                  one or more descriptions of methods and procedures. If included, this represents</span><span class="tI">
</span><span class="tT">                  the primary resource that is described in this eml document.</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_eml_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_protocol');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_protocol" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_protocol.png" usemap="#eml_xsd_Element_protocol" /><map name="eml_xsd_Element_protocol" id="eml_xsd_Element_protocol">
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_id" href="eml-protocol_xsd.html#ProtocolType_id" coords="234,78,302,102" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_system" href="eml-protocol_xsd.html#ProtocolType_system" coords="234,112,320,136" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_scope" href="eml-protocol_xsd.html#ProtocolType_scope" coords="234,146,314,170" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_alternateIdentifier" href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" coords="489,231,615,255" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_shortName" href="eml-resource_xsd.html#ResourceGroup_shortName" coords="489,308,579,332" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_title" href="eml-resource_xsd.html#ResourceGroup_title" coords="489,398,540,422" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_creator" href="eml-resource_xsd.html#ResourceGroup_creator" coords="489,488,559,512" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_metadataProvider" href="eml-resource_xsd.html#ResourceGroup_metadataProvider" coords="489,578,614,602" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_associatedParty" href="eml-resource_xsd.html#ResourceGroup_associatedParty" coords="489,668,604,692" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_pubDate" href="eml-resource_xsd.html#ResourceGroup_pubDate" coords="489,758,565,782" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_language" href="eml-resource_xsd.html#ResourceGroup_language" coords="489,848,569,872" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_series" href="eml-resource_xsd.html#ResourceGroup_series" coords="489,938,552,962" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_abstract" href="eml-resource_xsd.html#ResourceGroup_abstract" coords="489,1028,564,1052" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_keywordSet" href="eml-resource_xsd.html#ResourceGroup_keywordSet" coords="489,1118,581,1142" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_additionalInfo" href="eml-resource_xsd.html#ResourceGroup_additionalInfo" coords="489,1208,594,1232" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_intellectualRights" href="eml-resource_xsd.html#ResourceGroup_intellectualRights" coords="489,1298,612,1322" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_licensed" href="eml-resource_xsd.html#ResourceGroup_licensed" coords="489,1375,564,1399" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_distribution" href="eml-resource_xsd.html#ResourceGroup_distribution" coords="489,1465,583,1489" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_coverage" href="eml-resource_xsd.html#ResourceGroup_coverage" coords="489,1542,569,1566" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_annotation" href="eml-resource_xsd.html#ResourceGroup_annotation" coords="489,1632,578,1656" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup" href="eml-resource_xsd.html#ResourceGroup" coords="386,190,545,216" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_proceduralStep" href="eml-protocol_xsd.html#ProtocolType_proceduralStep" coords="383,1772,496,1796" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="376,1854,464,1878" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="294,1809,462,1835" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType" href="eml-protocol_xsd.html#ProtocolType" coords="209,3,353,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-protocol_xsd.html#ProtocolType" target="mainFrame" title="https://eml.ecoinformatics.org/protocol-2.2.0" onclick="updatePageTitle('Schema documentation for eml-protocol.xsd')">ProtocolType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_protocol" 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_eml_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_protocol" style="display:block">(<b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator+</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution*</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage{0,1}</a></b> , <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation*</a></b> , <b><a href="eml-protocol_xsd.html#ProtocolType_proceduralStep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-protocol.xsd')">proceduralStep*</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-resource_xsd.html#ResourceGroup_abstract" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">abstract</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_additionalInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">additionalInfo</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">alternateIdentifier</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">annotation</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_associatedParty" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">associatedParty</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_coverage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">coverage</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_creator" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">creator</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_distribution" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">distribution</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_intellectualRights" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">intellectualRights</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_keywordSet" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">keywordSet</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">language</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_licensed" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">licensed</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_metadataProvider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">metadataProvider</a></b>, <b><a href="eml-protocol_xsd.html#ProtocolType_proceduralStep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-protocol.xsd')">proceduralStep</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_pubDate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">pubDate</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_series" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">series</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_shortName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">shortName</a></b>, <b><a href="eml-resource_xsd.html#ResourceGroup_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">title</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_protocol" 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;protocol</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;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;shortName</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/shortName&gt;</span><span class="tI">
  </span><span class="tEl">&lt;title</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,unbounded}</span><span class="tEl">&lt;/title&gt;</span><span class="tI">
  </span><span class="tEl">&lt;creator</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;/creator&gt;</span><span class="tI">
  </span><span class="tEl">&lt;metadataProvider</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;/metadataProvider&gt;</span><span class="tI">
  </span><span class="tEl">&lt;associatedParty</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;/associatedParty&gt;</span><span class="tI">
  </span><span class="tEl">&lt;pubDate</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/pubDate&gt;</span><span class="tI">
  </span><span class="tEl">&lt;language</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,1}</span><span class="tEl">&lt;/language&gt;</span><span class="tI">
  </span><span class="tEl">&lt;series</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/series&gt;</span><span class="tI">
  </span><span class="tEl">&lt;abstract</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,1}</span><span class="tEl">&lt;/abstract&gt;</span><span class="tI">
  </span><span class="tEl">&lt;keywordSet</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/keywordSet&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;intellectualRights</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,1}</span><span class="tEl">&lt;/intellectualRights&gt;</span><span class="tI">
  </span><span class="tEl">&lt;licensed</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/licensed&gt;</span><span class="tI">
  </span><span class="tEl">&lt;distribution</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/distribution&gt;</span><span class="tI">
  </span><span class="tEl">&lt;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;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;proceduralStep</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/proceduralStep&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;/protocol&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_eml_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_protocol" 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-protocol_xsd.html#ProtocolType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-protocol.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-protocol_xsd.html#ProtocolType_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-protocol.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-protocol_xsd.html#ProtocolType_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-protocol.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="eml_annotations"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / annotations</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_eml_annotations" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_annotations');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_annotations" style="display:block">
                              <div class="annotation">
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                    <tr>
                                       <td width="100%"><pre><span class="tT">tooltip: Semantic Annotation List</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A list of precisely-defined semantic statements about this resource.</span><span class="tI">
</span><span class="tT">					</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A list of annotations defining precise semantics</span><span class="tI">
</span><span class="tT">						for parts of this resource.  The list consists of a set</span><span class="tI">
</span><span class="tT">						of annotation elements, each referring to a subject within</span><span class="tI">
</span><span class="tT">						the EML document using its references attribute, which provides</span><span class="tI">
</span><span class="tT">						a pointer to the id of the element being annotated.</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_eml_annotations" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_annotations');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_annotations" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_annotations.png" usemap="#eml_xsd_Element_annotations" /><map name="eml_xsd_Element_annotations" id="eml_xsd_Element_annotations">
                                 <area alt="eml_xsd.tmp#eml_eml_annotations_annotation" href="eml_xsd.html#eml_eml_annotations_annotation" coords="235,2,509,44" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_annotations" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_annotations');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_annotations" 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>1</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_eml_annotations" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_annotations');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_annotations" style="display:block"><b><a href="eml_xsd.html#eml_eml_annotations_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotation+</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml_xsd.html#eml_eml_annotations_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotation</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_annotations" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_annotations');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_annotations" 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;annotations</span><span class="tEl">&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">references=</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;/annotation&gt;</span><span class="tI">
</span><span class="tEl">&lt;/annotations&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="eml_eml_annotations_annotation"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / <b><a href="eml_xsd.html#eml_annotations" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotations</a></b> / annotation</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml_eml_annotations_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_eml_annotations_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_eml_annotations_annotation" style="display:block">
                              <div class="annotation">
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                    <tr>
                                       <td width="100%"><pre><span class="tT">tooltip: Semantic Annotation</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A precisely-defined semantic statement about</span><span class="tI">
</span><span class="tT">									an element in the EML document.</span><span class="tI">
</span><span class="tT">								</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: An annotation represents a precisely-defined semantic</span><span class="tI">
</span><span class="tT">									statement that applies to this resource.  This semantic</span><span class="tI">
</span><span class="tT">									statement is used to associate precise semantics with a</span><span class="tI">
</span><span class="tT">									particular element in the EML document.  The id of the</span><span class="tI">
</span><span class="tT">									element being annotated is listed in the references attribute,</span><span class="tI">
</span><span class="tT">									and must point to a unique id within the EML document.</span><span class="tI">
</span><span class="tT">									Each annotation consists of a propertyURI and</span><span class="tI">
</span><span class="tT">									valueURI that define a property and value that apply to the</span><span class="tI">
</span><span class="tT">									resource. The subject of the statement is implicitly the</span><span class="tI">
</span><span class="tT">									element that is listed in the references attribute.</span><span class="tI">
</span><span class="tT">									The associated labels can be used to display the statement to users.</span><span class="tI">
</span><span class="tT">									Each URI is resolvable to a controlled vocabulary</span><span class="tI">
</span><span class="tT">									that provides a definition, relationships to other terms, and</span><span class="tI">
</span><span class="tT">									multiple labels for displaying the statement.</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_eml_eml_annotations_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_eml_annotations_annotation');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_eml_annotations_annotation" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_annotation.png" usemap="#eml_xsd_Element_annotation" /><map name="eml_xsd_Element_annotation" id="eml_xsd_Element_annotation">
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_id" href="eml-semantics_xsd.html#SemanticAnnotation_id" coords="350,80,418,104" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_system" href="eml-semantics_xsd.html#SemanticAnnotation_system" coords="350,114,436,138" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_scope" href="eml-semantics_xsd.html#SemanticAnnotation_scope" coords="350,148,430,172" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_propertyURI" href="eml-semantics_xsd.html#SemanticAnnotation_propertyURI" coords="407,189,503,213" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation_valueURI" href="eml-semantics_xsd.html#SemanticAnnotation_valueURI" coords="407,279,484,303" />
                                 <area alt="eml-semantics_xsd.tmp#SemanticAnnotation" href="eml-semantics_xsd.html#SemanticAnnotation" coords="325,5,601,27" />
                                 <area alt="eml_xsd.tmp#eml_eml_annotations_eml_eml_annotations_annotation_references" href="eml_xsd.html#eml_eml_annotations_eml_eml_annotations_annotation_references" coords="336,457,449,499" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td>extension of <b><a href="eml-semantics_xsd.html#SemanticAnnotation" target="mainFrame" title="https://eml.ecoinformatics.org/semantics-2.2.0" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">SemanticAnnotation</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type hierarchy</b></td>
                        <td>
                           <ul class="internal">
                              <li class="internal"><b><a href="eml-semantics_xsd.html#SemanticAnnotation" target="mainFrame" title="https://eml.ecoinformatics.org/semantics-2.2.0" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">SemanticAnnotation</a></b></li>
                           </ul>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_eml_annotations_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_eml_annotations_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_eml_annotations_annotation" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>complex</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">minOccurs</td>
                                    <td><b>1</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_eml_eml_annotations_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_eml_annotations_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_eml_annotations_annotation" style="display:block"><b><a href="eml-semantics_xsd.html#SemanticAnnotation_propertyURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">propertyURI</a></b> , <b><a href="eml-semantics_xsd.html#SemanticAnnotation_valueURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">valueURI</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-semantics_xsd.html#SemanticAnnotation_propertyURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">propertyURI</a></b>, <b><a href="eml-semantics_xsd.html#SemanticAnnotation_valueURI" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">valueURI</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_eml_annotations_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_eml_annotations_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_eml_annotations_annotation" style="display:block">
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                 <tr>
                                    <td width="100%"><pre><span class="tEl">&lt;annotation</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">references=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">scope=</span><span class="tAV">"document"</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;propertyURI</span><span class="tT"> </span><span class="tAN">label=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/propertyURI&gt;</span><span class="tI">
  </span><span class="tEl">&lt;valueURI</span><span class="tT"> </span><span class="tAN">label=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/valueURI&gt;</span><span class="tI">
</span><span class="tEl">&lt;/annotation&gt;</span></pre></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_eml_eml_annotations_annotation" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_eml_annotations_annotation');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_eml_annotations_annotation" style="display:block">
                              <table class="attributesTable">
                                 <thead>
                                    <tr>
                                       <th>QName</th>
                                       <th width="10%">Type</th>
                                       <th width="10%">Default</th>
                                       <th width="5%">Use</th>
                                       <th></th>
                                    </tr>
                                 </thead>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-semantics_xsd.html#SemanticAnnotation_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">id</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#IDType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">IDType</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml_xsd.html#eml_eml_annotations_eml_eml_annotations_annotation_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">references</a></b></td>
                                    <td><b>xs:string</b></td>
                                    <td></td>
                                    <td>required</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-semantics_xsd.html#SemanticAnnotation_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">scope</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#ScopeType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">ScopeType</a></b></td>
                                    <td>document</td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn"><b><a href="eml-semantics_xsd.html#SemanticAnnotation_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-semantics.xsd')">system</a></b></td>
                                    <td><b><a href="eml-resource_xsd.html#SystemType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">SystemType</a></b></td>
                                    <td></td>
                                    <td>optional</td>
                                    <td>
                                       <div class="annotation"></div>
                                    </td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="eml_additionalMetadata"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / additionalMetadata</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_eml_additionalMetadata" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_additionalMetadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_additionalMetadata" style="display:block">
                              <div class="annotation">
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                    <tr>
                                       <td width="100%"><pre><span class="tT">tooltip: Additional Metadata</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A flexible field for including any other relevant metadata that pertains</span><span class="tI">
</span><span class="tT">                to the resource being described.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A flexible field for including any other relevant metadata that</span><span class="tI">
</span><span class="tT">                pertains to the resource being described. This field allows EML to be extensible in</span><span class="tI">
</span><span class="tT">                that any XML-based metadata can be included in this element, including metadata from</span><span class="tI">
</span><span class="tT">                other standards such as the FGDC CSDGM. The "describes" element of this field allows</span><span class="tI">
</span><span class="tT">                the specific part of the resource which is described by the additional metadata to</span><span class="tI">
</span><span class="tT">                be indicated formally.</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_eml_additionalMetadata" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_additionalMetadata');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_additionalMetadata" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_additionalMetadata.png" usemap="#eml_xsd_Element_additionalMetadata" /><map name="eml_xsd_Element_additionalMetadata" id="eml_xsd_Element_additionalMetadata">
                                 <area alt="eml_xsd.tmp#eml_eml_additionalMetadata_id" href="eml_xsd.html#eml_eml_additionalMetadata_id" coords="194,40,316,82" />
                                 <area alt="eml_xsd.tmp#eml_eml_additionalMetadata_describes" href="eml_xsd.html#eml_eml_additionalMetadata_describes" coords="272,99,470,141" />
                                 <area alt="eml_xsd.tmp#eml_eml_additionalMetadata_metadata" href="eml_xsd.html#eml_eml_additionalMetadata_metadata" coords="272,194,352,218" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_additionalMetadata" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_additionalMetadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_additionalMetadata" 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_eml_additionalMetadata" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_additionalMetadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_additionalMetadata" style="display:block"><b><a href="eml_xsd.html#eml_eml_additionalMetadata_describes" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">describes*</a></b> , <b><a href="eml_xsd.html#eml_eml_additionalMetadata_metadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">metadata</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml_xsd.html#eml_eml_additionalMetadata_describes" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">describes</a></b>, <b><a href="eml_xsd.html#eml_eml_additionalMetadata_metadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">metadata</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_eml_additionalMetadata" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_eml_additionalMetadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_eml_additionalMetadata" 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;additionalMetadata</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;describes</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/describes&gt;</span><span class="tI">
  </span><span class="tEl">&lt;metadata</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/metadata&gt;</span><span class="tI">
</span><span class="tEl">&lt;/additionalMetadata&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_eml_additionalMetadata" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_eml_additionalMetadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_eml_additionalMetadata" 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_xsd.html#eml_eml_additionalMetadata_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.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="eml_eml_additionalMetadata_describes"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / <b><a href="eml_xsd.html#eml_additionalMetadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">additionalMetadata</a></b> / describes</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_eml_eml_additionalMetadata_describes" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_eml_additionalMetadata_describes');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_eml_additionalMetadata_describes" 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: Describes Reference</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A pointer to the id attribute for the sub-portion of the resource</span><span class="tI">
</span><span class="tT">                      that is described by this additional metadata. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A pointer to the id attribute for the sub-portion of the</span><span class="tI">
</span><span class="tT">                      resource that is described by this additional metadata. This is a formal field</span><span class="tI">
</span><span class="tT">                      in that it is an error to provide a value in the "describes" element that does</span><span class="tI">
</span><span class="tT">                      not correspond to the value of one of the "id" attributes in another eml</span><span class="tI">
</span><span class="tT">                      module. This is designed to allow automated processors to discover the</span><span class="tI">
</span><span class="tT">                      contextual relationship between the additional metadata and the resource it</span><span class="tI">
</span><span class="tT">                      describes. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: knb.343.22</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_eml_eml_additionalMetadata_describes" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_eml_additionalMetadata_describes');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_eml_additionalMetadata_describes" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_describes.png" usemap="#eml_xsd_Element_describes" /><map name="eml_xsd_Element_describes" id="eml_xsd_Element_describes">
                                 <area alt="eml-resource_xsd.tmp#NonEmptyStringType" href="eml-resource_xsd.html#NonEmptyStringType" coords="246,8,434,34" /></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_eml_eml_additionalMetadata_describes" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_eml_additionalMetadata_describes');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_eml_additionalMetadata_describes" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
                                    <td><b>simple</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">minOccurs</td>
                                    <td><b>0</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td>
                                    <td><b>unbounded</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_eml_eml_additionalMetadata_describes" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_eml_eml_additionalMetadata_describes');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_eml_eml_additionalMetadata_describes" 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="eml_eml_additionalMetadata_metadata"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / <b><a href="eml_xsd.html#eml_additionalMetadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">additionalMetadata</a></b> / metadata</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_eml_eml_additionalMetadata_metadata" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_eml_additionalMetadata_metadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_eml_additionalMetadata_metadata" style="display:block">
                              <div class="annotation">
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                    <tr>
                                       <td width="100%"><pre><span class="tT">tooltip: Additional metadata</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: This element contains the additional metadata that is to be</span><span class="tI">
</span><span class="tT">                      included in the document. The content of this field can be any well-formed XML</span><span class="tI">
</span><span class="tT">                      fragment. </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: This element contains the additional metadata to be included in</span><span class="tI">
</span><span class="tT">                      the document. This element should be used for extending EML to include</span><span class="tI">
</span><span class="tT">                      metadata that is not already available in another part of the EML</span><span class="tI">
</span><span class="tT">                      specification, or to include site- or system-specific extensions that are</span><span class="tI">
</span><span class="tT">                      needed beyond the core metadata. The additional metadata contained in this</span><span class="tI">
</span><span class="tT">                      field describes the element referenced in the 'describes' element preceding</span><span class="tI">
</span><span class="tT">                      it. The content of this field is any well-formed XML fragment. If that content</span><span class="tI">
</span><span class="tT">                      contains namespace declarations, and if the namespace declaration can be</span><span class="tI">
</span><span class="tT">                      resolved to a schema definition, then the content will be validated against</span><span class="tI">
</span><span class="tT">                      that schema definition. If no namespace is present, or if no schema can be</span><span class="tI">
</span><span class="tT">                      resolved, validation for this fragment will be skipped (validation is "lax"). </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: </span><span class="tI">
</span><span class="tT">                      &lt;embargoDate&gt;2006-10-10&lt;/embargoDate&gt;</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_eml_eml_additionalMetadata_metadata" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_eml_eml_additionalMetadata_metadata');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_eml_eml_additionalMetadata_metadata" style="display:block"><img alt="Diagram" border="0" src="img/eml_xsd_Element_metadata.png" /></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_eml_additionalMetadata_metadata" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_eml_additionalMetadata_metadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_eml_additionalMetadata_metadata" 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_eml_eml_additionalMetadata_metadata" type="image" src="img/btM.gif" value="-" onclick="switchState('model_eml_eml_additionalMetadata_metadata');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_eml_eml_additionalMetadata_metadata" style="display:block"><b>ANY element from ANY namespace</b></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="eml_eml_annotations_eml_eml_annotations_annotation_references"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / <b><a href="eml_xsd.html#eml_annotations" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotations</a></b> / <b><a href="eml_xsd.html#eml_eml_annotations_annotation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">annotation</a></b> / @references</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>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_eml_annotations_eml_eml_annotations_annotation_references" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_eml_annotations_eml_eml_annotations_annotation_references');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_eml_annotations_eml_eml_annotations_annotation_references" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>required</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="eml_eml_additionalMetadata_id"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / <b><a href="eml_xsd.html#eml_additionalMetadata" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml.xsd')">additionalMetadata</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_eml_eml_additionalMetadata_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_eml_additionalMetadata_id');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_eml_additionalMetadata_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="eml_packageId"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</a></b> / @packageId</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_eml_packageId" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_packageId');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_packageId" 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: Package Identifer</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A globally unique identifier for the data package described by this EML metadata document that can be used</span><span class="tI">
</span><span class="tT">              to cite it elsewhere.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: A globally unique identifier for the data package described by this EML metadata document</span><span class="tI">
</span><span class="tT">              that can be used to cite it elsewhere. This identifier can be interpreted as the formal</span><span class="tI">
</span><span class="tT">              accession number for the data package, and is therefore required. It must be globally unique</span><span class="tI">
</span><span class="tT">              within a particular data management system, which should be specified in the system</span><span class="tI">
</span><span class="tT">              attribute as a URI. Typically a DOI or other identifier that is both citable and</span><span class="tI">
</span><span class="tT">              resolvable is used for published data packages.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: doi:10.5063/F17P8WGK</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: https://doi.org/10.5063/F17P8WGK</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: urn:uuid:04cd34fd-25d4-447f-ab6e-73a572c5d383</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b>xs:string</b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_eml_packageId" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_packageId');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_packageId" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>required</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="eml_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</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_eml_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_system" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>required</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="eml_scope"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml_xsd.html#eml" target="mainFrame" title="https://eml.ecoinformatics.org/eml-2.2.0" onclick="updatePageTitle('Schema documentation for eml.xsd')">eml</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">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml_scope" 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: Identifer Scope</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: The scope of the identifier.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The scope of the identifier. Scope is generally set to either "system",</span><span class="tI">
</span><span class="tT">              meaning that it is scoped according to the "system" attribute, or "document" if it is</span><span class="tI">
</span><span class="tT">              only to be in scope within this single document instance. In this particular use of</span><span class="tI">
</span><span class="tT">              scope, it is FIXED to be "system" because the packageId is required and always has the</span><span class="tI">
</span><span class="tT">              scope of the required "system". </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">example: system</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-resource_xsd.html#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_eml_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml_scope" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">fixed</td>
                                    <td><b>system</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_eml_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_eml_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_eml_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>