<!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-protocol.xsd</title>
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
         <!--
        var propertiesBoxes= new Array('properties_eml-protocol.xsd', 
				'properties_ProtocolType_proceduralStep', 
				'properties_protocol', 
				'properties_ProtocolType_id', 
				'properties_ProtocolType_system', 
				'properties_ProtocolType_scope');
var facetsBoxes= new Array('facets_ProtocolType_scope');
var instanceBoxes= new Array('instance_ProtocolType_proceduralStep', 
				'instance_protocol');
var diagramBoxes= new Array('diagram_ProtocolType_proceduralStep', 
				'diagram_protocol', 
				'diagram_ProtocolType');
var annotationBoxes= new Array('annotations_eml-protocol.xsd', 
				'annotations_protocol', 
				'annotations_ProtocolType');
var attributesBoxes= new Array('attributes_protocol', 
				'attributes_ProtocolType');
var modelBoxes= new Array('model_ProtocolType_proceduralStep', 
				'model_protocol', 
				'model_ProtocolType');

      
        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-protocol.xsd"></a><div class="componentTitle">Imported schema <span class="qname">eml-protocol.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/protocol-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_eml-protocol.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml-protocol.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_eml-protocol.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-protocol.xsd,v $'</span><span class="tI">
</span><span class="tT">       Copyright: 1997-2002 Regents of the University of California,</span><span class="tI">
</span><span class="tT">                            University of New Mexico, and</span><span class="tI">
</span><span class="tT">                            Arizona State University</span><span class="tI">
</span><span class="tT">        Sponsors: National Center for Ecological Analysis and Synthesis and</span><span class="tI">
</span><span class="tT">                  Partnership for Interdisciplinary Studies of Coastal Oceans,</span><span class="tI">
</span><span class="tT">                     University of California Santa Barbara</span><span class="tI">
</span><span class="tT">                  Long-Term Ecological Research Network Office,</span><span class="tI">
</span><span class="tT">                     University of New Mexico</span><span class="tI">
</span><span class="tT">                  Center for Environmental Studies, Arizona State University</span><span class="tI">
</span><span class="tT">   Other funding: National Science Foundation (see README for details)</span><span class="tI">
</span><span class="tT">                  The David and Lucile Packard Foundation</span><span class="tI">
</span><span class="tT">     For Details: http://knb.ecoinformatics.org/</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">        '$Author: obrien $'</span><span class="tI">
</span><span class="tT">          '$Date: 2008-09-26 23:59:46 $'</span><span class="tI">
</span><span class="tT">      '$Revision: 1.60 $'</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    This program is free software; you can redistribute it and/or modify</span><span class="tI">
</span><span class="tT">    it under the terms of the GNU General Public License as published by</span><span class="tI">
</span><span class="tT">    the Free Software Foundation; either version 2 of the License, or</span><span class="tI">
</span><span class="tT">    (at your option) any later version.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    This program is distributed in the hope that it will be useful,</span><span class="tI">
</span><span class="tT">    but WITHOUT ANY WARRANTY; without even the implied warranty of</span><span class="tI">
</span><span class="tT">    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span><span class="tI">
</span><span class="tT">    GNU General Public License for more details.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">    You should have received a copy of the GNU General Public License</span><span class="tI">
</span><span class="tT">    along with this program; if not, write to the Free Software</span><span class="tI">
</span><span class="tT">    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA</span></pre></td>
                                    </tr>
                                 </table>
                              </div>
                              <div class="annotation">
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
                                    <tr>
                                       <td width="100%"><pre><span class="tT">moduleName: eml-protocol</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">moduleDescription: </span><span class="tI">
</span><span class="tT">          </span><span class="tI">
</span><span class="tT">            </span><span class="tI">
</span><span class="tT">              The eml-protocol module - Research protocol specific information</span><span class="tI">
</span><span class="tT">            </span><span class="tI">
</span><span class="tT">          </span><span class="tI">
</span><span class="tT">        </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">recommendedUsage: Use eml-protocol to describe prescriptive</span><span class="tI">
</span><span class="tT">        procedures that can be associated with other descriptive or</span><span class="tI">
</span><span class="tT">        prescriptive procedures.</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-protocol.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml-protocol.xsd');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_eml-protocol.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="ProtocolType_proceduralStep"></a><div class="componentTitle">Element <span class="qname"><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> / proceduralStep</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>Diagram</b></div>
                           <div class="floatRight"><input id="button_diagram_ProtocolType_proceduralStep" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ProtocolType_proceduralStep');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_ProtocolType_proceduralStep" style="display:block"><img alt="Diagram" border="0" src="img/eml-protocol_xsd_Element_proceduralStep.png" usemap="#eml-protocol_xsd_Element_proceduralStep" /><map name="eml-protocol_xsd_Element_proceduralStep" id="eml-protocol_xsd_Element_proceduralStep">
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType_description" href="eml-methods_xsd.html#ProcedureStepType_description" coords="339,40,431,64" />
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType_citation" href="eml-methods_xsd.html#ProcedureStepType_citation" coords="410,130,481,154" />
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType_protocol" href="eml-methods_xsd.html#ProcedureStepType_protocol" coords="410,220,487,244" />
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType_instrumentation" href="eml-methods_xsd.html#ProcedureStepType_instrumentation" coords="247,310,364,334" />
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType_software" href="eml-methods_xsd.html#ProcedureStepType_software" coords="247,400,324,424" />
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType_subStep" href="eml-methods_xsd.html#ProcedureStepType_subStep" coords="247,490,321,514" />
                                 <area alt="eml-methods_xsd.tmp#ProcedureStepType" href="eml-methods_xsd.html#ProcedureStepType" coords="144,3,319,25" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-methods_xsd.html#ProcedureStepType" target="mainFrame" title="https://eml.ecoinformatics.org/methods-2.2.0" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">ProcedureStepType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_ProtocolType_proceduralStep" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ProtocolType_proceduralStep');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ProtocolType_proceduralStep" 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_ProtocolType_proceduralStep" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ProtocolType_proceduralStep');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_ProtocolType_proceduralStep" style="display:block"><b><a href="eml-methods_xsd.html#ProcedureStepType_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">description</a></b> , (<b><a href="eml-methods_xsd.html#ProcedureStepType_citation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">citation</a></b> | <b><a href="eml-methods_xsd.html#ProcedureStepType_protocol" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">protocol</a></b>) , <b><a href="eml-methods_xsd.html#ProcedureStepType_instrumentation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">instrumentation*</a></b> , <b><a href="eml-methods_xsd.html#ProcedureStepType_software" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">software*</a></b> , <b><a href="eml-methods_xsd.html#ProcedureStepType_subStep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">subStep*</a></b></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Children</b></td>
                        <td><b><a href="eml-methods_xsd.html#ProcedureStepType_citation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">citation</a></b>, <b><a href="eml-methods_xsd.html#ProcedureStepType_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">description</a></b>, <b><a href="eml-methods_xsd.html#ProcedureStepType_instrumentation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">instrumentation</a></b>, <b><a href="eml-methods_xsd.html#ProcedureStepType_protocol" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">protocol</a></b>, <b><a href="eml-methods_xsd.html#ProcedureStepType_software" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">software</a></b>, <b><a href="eml-methods_xsd.html#ProcedureStepType_subStep" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-methods.xsd')">subStep</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Instance</b></div>
                           <div class="floatRight"><input id="button_instance_ProtocolType_proceduralStep" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ProtocolType_proceduralStep');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_ProtocolType_proceduralStep" 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;proceduralStep</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;description</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/description&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;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;instrumentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/instrumentation&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">{0,unbounded}</span><span class="tEl">&lt;/software&gt;</span><span class="tI">
  </span><span class="tEl">&lt;subStep</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/subStep&gt;</span><span class="tI">
</span><span class="tEl">&lt;/proceduralStep&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="protocol"></a><div class="componentTitle">Element <span class="qname">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>https://eml.ecoinformatics.org/protocol-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_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: A prescriptive procedure</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A reusable container for information related to</span><span class="tI">
</span><span class="tT">        a prescriptive procedure.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The protocol field provides a container for other</span><span class="tI">
</span><span class="tT">        related fields, such as proceduralStep and ResourceGroup.</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_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_protocol');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_protocol" style="display:block"><img alt="Diagram" border="0" src="img/eml-protocol_xsd_Element_protocol.png" usemap="#eml-protocol_xsd_Element_protocol" /><map name="eml-protocol_xsd_Element_protocol" id="eml-protocol_xsd_Element_protocol">
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_id" href="eml-protocol_xsd.html#ProtocolType_id" coords="153,78,221,102" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_system" href="eml-protocol_xsd.html#ProtocolType_system" coords="153,112,239,136" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_scope" href="eml-protocol_xsd.html#ProtocolType_scope" coords="153,146,233,170" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_alternateIdentifier" href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" coords="408,231,534,255" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_shortName" href="eml-resource_xsd.html#ResourceGroup_shortName" coords="408,308,498,332" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_title" href="eml-resource_xsd.html#ResourceGroup_title" coords="408,398,459,422" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_creator" href="eml-resource_xsd.html#ResourceGroup_creator" coords="408,488,478,512" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_metadataProvider" href="eml-resource_xsd.html#ResourceGroup_metadataProvider" coords="408,578,533,602" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_associatedParty" href="eml-resource_xsd.html#ResourceGroup_associatedParty" coords="408,668,523,692" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_pubDate" href="eml-resource_xsd.html#ResourceGroup_pubDate" coords="408,758,484,782" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_language" href="eml-resource_xsd.html#ResourceGroup_language" coords="408,848,488,872" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_series" href="eml-resource_xsd.html#ResourceGroup_series" coords="408,938,471,962" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_abstract" href="eml-resource_xsd.html#ResourceGroup_abstract" coords="408,1028,483,1052" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_keywordSet" href="eml-resource_xsd.html#ResourceGroup_keywordSet" coords="408,1118,500,1142" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_additionalInfo" href="eml-resource_xsd.html#ResourceGroup_additionalInfo" coords="408,1208,513,1232" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_intellectualRights" href="eml-resource_xsd.html#ResourceGroup_intellectualRights" coords="408,1298,531,1322" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_licensed" href="eml-resource_xsd.html#ResourceGroup_licensed" coords="408,1375,483,1399" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_distribution" href="eml-resource_xsd.html#ResourceGroup_distribution" coords="408,1465,502,1489" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_coverage" href="eml-resource_xsd.html#ResourceGroup_coverage" coords="408,1542,488,1566" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_annotation" href="eml-resource_xsd.html#ResourceGroup_annotation" coords="408,1632,497,1656" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup" href="eml-resource_xsd.html#ResourceGroup" coords="305,190,464,216" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_proceduralStep" href="eml-protocol_xsd.html#ProtocolType_proceduralStep" coords="302,1772,415,1796" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="295,1854,383,1878" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="213,1809,381,1835" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType" href="eml-protocol_xsd.html#ProtocolType" coords="128,3,250,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_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_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_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('model_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_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_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="instance_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="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"https://eml.ecoinformatics.org/protocol-2.2.0"</span><span class="tEl">&gt;</span><span class="tI">
  </span><span class="tEl">&lt;alternateIdentifier</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl">&lt;/alternateIdentifier&gt;</span><span class="tI">
  </span><span class="tEl">&lt;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_protocol" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_protocol');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_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="ProtocolType"></a><div class="componentTitle">Complex Type <span class="qname">ProtocolType</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/protocol-2.2.0</td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Annotations</b></div>
                           <div class="floatRight"><input id="button_annotations_ProtocolType" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ProtocolType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="annotations_ProtocolType" 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: A prescriptive procedure; a standardized method</span><span class="tI">
</span><span class="tT">        </span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">summary: A reusable container for information related to</span><span class="tI">
</span><span class="tT">        a prescriptive procedure.</span><span class="tI">
</span><span class="tT"></span><span class="tI">
</span><span class="tT">description: The ProtocolType container defines a number of</span><span class="tI">
</span><span class="tT">        reusable fields that can be referenced from multiple EML</span><span class="tI">
</span><span class="tT">        modules.  It represents well-defined, prescriptive procedures</span><span class="tI">
</span><span class="tT">        that can be used to document other prescriptive procedures or</span><span class="tI">
</span><span class="tT">        descriptive procedures such as methods.</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_ProtocolType" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ProtocolType');" class="control" /></div>
                        </td>
                        <td class="diagram">
                           <div id="diagram_ProtocolType" style="display:block"><img alt="Diagram" border="0" src="img/eml-protocol_xsd_Complex_Type_ProtocolType.png" usemap="#eml-protocol_xsd_Complex_Type_ProtocolType" /><map name="eml-protocol_xsd_Complex_Type_ProtocolType" id="eml-protocol_xsd_Complex_Type_ProtocolType">
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_id" href="eml-protocol_xsd.html#ProtocolType_id" coords="188,38,256,62" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_system" href="eml-protocol_xsd.html#ProtocolType_system" coords="188,72,274,96" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_scope" href="eml-protocol_xsd.html#ProtocolType_scope" coords="188,106,268,130" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_alternateIdentifier" href="eml-resource_xsd.html#ResourceGroup_alternateIdentifier" coords="443,191,569,215" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_shortName" href="eml-resource_xsd.html#ResourceGroup_shortName" coords="443,268,533,292" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_title" href="eml-resource_xsd.html#ResourceGroup_title" coords="443,358,494,382" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_creator" href="eml-resource_xsd.html#ResourceGroup_creator" coords="443,448,513,472" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_metadataProvider" href="eml-resource_xsd.html#ResourceGroup_metadataProvider" coords="443,538,568,562" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_associatedParty" href="eml-resource_xsd.html#ResourceGroup_associatedParty" coords="443,628,558,652" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_pubDate" href="eml-resource_xsd.html#ResourceGroup_pubDate" coords="443,718,519,742" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_language" href="eml-resource_xsd.html#ResourceGroup_language" coords="443,808,523,832" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_series" href="eml-resource_xsd.html#ResourceGroup_series" coords="443,898,506,922" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_abstract" href="eml-resource_xsd.html#ResourceGroup_abstract" coords="443,988,518,1012" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_keywordSet" href="eml-resource_xsd.html#ResourceGroup_keywordSet" coords="443,1078,535,1102" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_additionalInfo" href="eml-resource_xsd.html#ResourceGroup_additionalInfo" coords="443,1168,548,1192" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_intellectualRights" href="eml-resource_xsd.html#ResourceGroup_intellectualRights" coords="443,1258,566,1282" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_licensed" href="eml-resource_xsd.html#ResourceGroup_licensed" coords="443,1335,518,1359" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_distribution" href="eml-resource_xsd.html#ResourceGroup_distribution" coords="443,1425,537,1449" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_coverage" href="eml-resource_xsd.html#ResourceGroup_coverage" coords="443,1502,523,1526" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup_annotation" href="eml-resource_xsd.html#ResourceGroup_annotation" coords="443,1592,532,1616" />
                                 <area alt="eml-resource_xsd.tmp#ResourceGroup" href="eml-resource_xsd.html#ResourceGroup" coords="340,150,499,176" />
                                 <area alt="eml-protocol_xsd.tmp#ProtocolType_proceduralStep" href="eml-protocol_xsd.html#ProtocolType_proceduralStep" coords="337,1732,450,1756" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="330,1814,418,1838" />
                                 <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="248,1769,416,1795" /></map></div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ProtocolType" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ProtocolType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="model_ProtocolType" 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>Attributes</b></div>
                           <div class="floatRight"><input id="button_attributes_ProtocolType" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ProtocolType');" class="control" /></div>
                        </td>
                        <td>
                           <div id="attributes_ProtocolType" 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="ProtocolType_id"></a><div class="componentTitle">Attribute <span class="qname"><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> / @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_ProtocolType_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ProtocolType_id');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ProtocolType_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="ProtocolType_system"></a><div class="componentTitle">Attribute <span class="qname"><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> / @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_ProtocolType_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ProtocolType_system');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ProtocolType_system" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>optional</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </td>
            <td class="rt_lineRight"></td>
         </tr>
         <tr>
            <td class="rt_cornerBottomLeft"></td>
            <td class="rt_lineBottom"></td>
            <td class="rt_cornerBottomRight"></td>
         </tr>
      </table><a id="ProtocolType_scope"></a><div class="componentTitle">Attribute <span class="qname"><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> / @scope</span></div>
      <table class="rt">
         <tr>
            <td class="rt_cornerTopLeft"></td>
            <td class="rt_lineTop"></td>
            <td class="rt_cornerTopRight"></td>
         </tr>
         <tr>
            <td class="rt_lineLeft"></td>
            <td class="rt_content">
               <table class="component">
                  <tbody>
                     <tr>
                        <td class="firstColumn"><b>Namespace</b></td>
                        <td>No namespace</td>
                     </tr>
                     <tr>
                        <td class="firstColumn"><b>Type</b></td>
                        <td><b><a href="eml-resource_xsd.html#ScopeType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">ScopeType</a></b></td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Properties</b></div>
                           <div class="floatRight"><input id="button_properties_ProtocolType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ProtocolType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="properties_ProtocolType_scope" style="display:block">
                              <table class="propertiesTable">
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">use</td>
                                    <td><b>optional</b></td>
                                 </tr>
                                 <tr>
                                    <td class="firstColumn" style="white-space: nowrap;">default</td>
                                    <td><b>document</b></td>
                                 </tr>
                              </table>
                           </div>
                        </td>
                     </tr>
                     <tr>
                        <td class="firstColumn">
                           <div class="floatLeft"><b>Facets</b></div>
                           <div class="floatRight"><input id="button_facets_ProtocolType_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_ProtocolType_scope');" class="control" /></div>
                        </td>
                        <td>
                           <div id="facets_ProtocolType_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>