<!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-party.xsd</title> <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript"> <!-- var propertiesBoxes= new Array('properties_eml-party.xsd', 'properties_ResponsibleParty_individualName', 'properties_Person_salutation', 'properties_Person_givenName', 'properties_Person_surName', 'properties_ResponsibleParty_organizationName', 'properties_ResponsibleParty_positionName', 'properties_ResponsibleParty_address', 'properties_Address_deliveryPoint', 'properties_Address_city', 'properties_Address_administrativeArea', 'properties_Address_postalCode', 'properties_Address_country', 'properties_ResponsibleParty_phone', 'properties_ResponsibleParty_electronicMailAddress', 'properties_ResponsibleParty_onlineUrl', 'properties_ResponsibleParty_userId', 'properties_party', 'properties_Address_id', 'properties_Address_system', 'properties_Address_scope', 'properties_ResponsibleParty_ResponsibleParty_phone_phonetype', 'properties_ResponsibleParty_ResponsibleParty_userId_directory', 'properties_ResponsibleParty_id', 'properties_ResponsibleParty_system', 'properties_ResponsibleParty_scope'); var facetsBoxes= new Array('facets_Address_scope', 'facets_ResponsibleParty_scope'); var instanceBoxes= new Array('instance_ResponsibleParty_individualName', 'instance_Person_salutation', 'instance_Person_givenName', 'instance_Person_surName', 'instance_ResponsibleParty_organizationName', 'instance_ResponsibleParty_positionName', 'instance_ResponsibleParty_address', 'instance_Address_deliveryPoint', 'instance_Address_city', 'instance_Address_administrativeArea', 'instance_Address_postalCode', 'instance_Address_country', 'instance_ResponsibleParty_electronicMailAddress', 'instance_party'); var diagramBoxes= new Array('diagram_ResponsibleParty_individualName', 'diagram_Person_salutation', 'diagram_Person_givenName', 'diagram_Person_surName', 'diagram_ResponsibleParty_organizationName', 'diagram_ResponsibleParty_positionName', 'diagram_ResponsibleParty_address', 'diagram_Address_deliveryPoint', 'diagram_Address_city', 'diagram_Address_administrativeArea', 'diagram_Address_postalCode', 'diagram_Address_country', 'diagram_ResponsibleParty_phone', 'diagram_ResponsibleParty_electronicMailAddress', 'diagram_ResponsibleParty_onlineUrl', 'diagram_ResponsibleParty_userId', 'diagram_party', 'diagram_ResponsibleParty', 'diagram_Person', 'diagram_Address', 'diagram_RoleType'); var annotationBoxes= new Array('annotations_eml-party.xsd', 'annotations_ResponsibleParty_individualName', 'annotations_Person_salutation', 'annotations_Person_givenName', 'annotations_Person_surName', 'annotations_ResponsibleParty_organizationName', 'annotations_ResponsibleParty_positionName', 'annotations_ResponsibleParty_address', 'annotations_Address_deliveryPoint', 'annotations_Address_city', 'annotations_Address_administrativeArea', 'annotations_Address_postalCode', 'annotations_Address_country', 'annotations_ResponsibleParty_phone', 'annotations_ResponsibleParty_electronicMailAddress', 'annotations_ResponsibleParty_onlineUrl', 'annotations_ResponsibleParty_userId', 'annotations_party', 'annotations_ResponsibleParty', 'annotations_Person', 'annotations_Address', 'annotations_RoleType', 'annotations_ResponsibleParty_ResponsibleParty_phone_phonetype', 'annotations_ResponsibleParty_ResponsibleParty_userId_directory'); var attributesBoxes= new Array('attributes_Person_salutation', 'attributes_Person_givenName', 'attributes_Person_surName', 'attributes_ResponsibleParty_organizationName', 'attributes_ResponsibleParty_positionName', 'attributes_ResponsibleParty_address', 'attributes_Address_deliveryPoint', 'attributes_Address_city', 'attributes_Address_administrativeArea', 'attributes_Address_postalCode', 'attributes_Address_country', 'attributes_ResponsibleParty_phone', 'attributes_ResponsibleParty_electronicMailAddress', 'attributes_ResponsibleParty_userId', 'attributes_party', 'attributes_ResponsibleParty', 'attributes_Address'); var modelBoxes= new Array('model_ResponsibleParty_individualName', 'model_Person_salutation', 'model_Person_givenName', 'model_Person_surName', 'model_ResponsibleParty_organizationName', 'model_ResponsibleParty_positionName', 'model_ResponsibleParty_address', 'model_Address_deliveryPoint', 'model_Address_city', 'model_Address_administrativeArea', 'model_Address_postalCode', 'model_Address_country', 'model_ResponsibleParty_electronicMailAddress', 'model_party', 'model_ResponsibleParty', 'model_Person', 'model_Address'); 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-party.xsd"></a><div class="componentTitle">Imported schema <span class="qname">eml-party.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/party-2.2.0</td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Annotations</b></div> <div class="floatRight"><input id="button_annotations_eml-party.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_eml-party.xsd');" class="control" /></div> </td> <td> <div id="annotations_eml-party.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-party.xsd,v $'</span><span class="tI"> </span><span class="tT"> Copyright: 1997-2002 Regents of the University of California,</span><span class="tI"> </span><span class="tT"> University of New Mexico, and</span><span class="tI"> </span><span class="tT"> Arizona State University</span><span class="tI"> </span><span class="tT"> Sponsors: National Center for Ecological Analysis and Synthesis and</span><span class="tI"> </span><span class="tT"> Partnership for Interdisciplinary Studies of Coastal Oceans,</span><span class="tI"> </span><span class="tT"> University of California Santa Barbara</span><span class="tI"> </span><span class="tT"> Long-Term Ecological Research Network Office,</span><span class="tI"> </span><span class="tT"> University of New Mexico</span><span class="tI"> </span><span class="tT"> Center for Environmental Studies, Arizona State University</span><span class="tI"> </span><span class="tT"> Other funding: National Science Foundation (see README for details)</span><span class="tI"> </span><span class="tT"> The David and Lucile Packard Foundation</span><span class="tI"> </span><span class="tT"> For Details: http://knb.ecoinformatics.org/</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT"> '$Author: obrien $'</span><span class="tI"> </span><span class="tT"> '$Date: 2009-02-25 23:51:54 $'</span><span class="tI"> </span><span class="tT"> '$Revision: 1.55 $'</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-party</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-party module - People and organization 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: 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-party.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_eml-party.xsd');" class="control" /></div> </td> <td> <div id="properties_eml-party.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="ResponsibleParty_individualName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / individualName</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_ResponsibleParty_individualName" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_individualName');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_individualName" 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: Individual Name</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The full name of the person being</span><span class="tI"> </span><span class="tT"> described</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: </span><span class="tI"> </span><span class="tT"> </span><span class="tI"> </span><span class="tT"> The individualName</span><span class="tI"> </span><span class="tT"> field contains subfields so that a person's name can be broken</span><span class="tI"> </span><span class="tT"> down into parts.</span><span class="tI"> </span><span class="tT"> Note that the the content model for the containing type</span><span class="tI"> </span><span class="tT"> allows a sequence of choices for the first</span><span class="tI"> </span><span class="tT"> element(s): <individualName>, <organizationName> and/or <positionName>.</span><span class="tI"> </span><span class="tT"> This means that a parent element (e.g., creator) may use combinations of the 3 sub-elements</span><span class="tI"> </span><span class="tT"> to make up a single logical party. For example, a creator with only</span><span class="tI"> </span><span class="tT"> the individualName of 'Joe Smith' is NOT the same as a</span><span class="tI"> </span><span class="tT"> creator with the individualName of 'Joe Smith' and the</span><span class="tI"> </span><span class="tT"> organizationName of 'NSF'. To include both a positionName and</span><span class="tI"> </span><span class="tT"> an organizationName as children of a <contact> implies that anyone</span><span class="tI"> </span><span class="tT"> currently occupying that positionName at that organizationName</span><span class="tI"> </span><span class="tT"> is an appropriate contact.</span><span class="tI"> </span><span class="tT"> The positionName should not be</span><span class="tI"> </span><span class="tT"> used in conjunction with individualName unless only that specific</span><span class="tI"> </span><span class="tT"> individual at that position would be considered appropriate for that</span><span class="tI"> </span><span class="tT"> designation. </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">example: Because this is an 'elementOnly' field, please</span><span class="tI"> </span><span class="tT"> look at the examples for the subfields 'givenName' and</span><span class="tI"> </span><span class="tT"> 'surName'.</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_ResponsibleParty_individualName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_individualName');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_individualName" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_individualName.png" usemap="#eml-party_xsd_Element_individualName" /><map name="eml-party_xsd_Element_individualName" id="eml-party_xsd_Element_individualName"> <area alt="eml-party_xsd.tmp#Person_salutation" href="eml-party_xsd.html#Person_salutation" coords="267,40,351,64" /> <area alt="eml-party_xsd.tmp#Person_givenName" href="eml-party_xsd.html#Person_givenName" coords="267,130,357,154" /> <area alt="eml-party_xsd.tmp#Person_surName" href="eml-party_xsd.html#Person_surName" coords="267,220,346,244" /> <area alt="eml-party_xsd.tmp#Person" href="eml-party_xsd.html#Person" coords="164,3,252,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-party_xsd.html#Person" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Person</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_individualName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_individualName');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_individualName" 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_ResponsibleParty_individualName" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ResponsibleParty_individualName');" class="control" /></div> </td> <td> <div id="model_ResponsibleParty_individualName" style="display:block"><b><a href="eml-party_xsd.html#Person_salutation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">salutation*</a></b> , <b><a href="eml-party_xsd.html#Person_givenName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">givenName*</a></b> , <b><a href="eml-party_xsd.html#Person_surName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">surName</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-party_xsd.html#Person_givenName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">givenName</a></b>, <b><a href="eml-party_xsd.html#Person_salutation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">salutation</a></b>, <b><a href="eml-party_xsd.html#Person_surName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">surName</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_ResponsibleParty_individualName" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ResponsibleParty_individualName');" class="control" /></div> </td> <td> <div id="instance_ResponsibleParty_individualName" 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"><individualName</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><salutation</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></salutation></span><span class="tI"> </span><span class="tEl"><givenName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></givenName></span><span class="tI"> </span><span class="tEl"><surName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></surName></span><span class="tI"> </span><span class="tEl"></individualName></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="Person_salutation"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Person" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Person</a></b> / salutation</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_Person_salutation" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Person_salutation');" class="control" /></div> </td> <td> <div id="annotations_Person_salutation" 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: Salutation</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The salutation used to address an</span><span class="tI"> </span><span class="tT"> individual</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The salutation field is used in addressing an</span><span class="tI"> </span><span class="tT"> individual with a particular title, such as Dr., Ms., Mrs., Mr.,</span><span class="tI"> </span><span class="tT"> etc.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Dr.</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_Person_salutation" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Person_salutation');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Person_salutation" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_salutation.png" usemap="#eml-party_xsd_Element_salutation" /><map name="eml-party_xsd_Element_salutation" id="eml-party_xsd_Element_salutation"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="160,78,243,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="238,123,297,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="135,3,343,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Person_salutation" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Person_salutation');" class="control" /></div> </td> <td> <div id="properties_Person_salutation" style="display:block"> <table class="propertiesTable"> <tr> <td class="firstColumn" style="white-space: nowrap;">content</td> <td><b>complex</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">minOccurs</td> <td><b>0</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td> <td><b>unbounded</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Person_salutation" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Person_salutation');" class="control" /></div> </td> <td> <div id="model_Person_salutation" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Person_salutation" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Person_salutation');" class="control" /></div> </td> <td> <div id="instance_Person_salutation" 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"><salutation</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></salutation></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_Person_salutation" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Person_salutation');" class="control" /></div> </td> <td> <div id="attributes_Person_salutation" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Person_givenName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Person" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Person</a></b> / givenName</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_Person_givenName" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Person_givenName');" class="control" /></div> </td> <td> <div id="annotations_Person_givenName" 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: Given name</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The given name of the individual.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The given name field can be used for first name of</span><span class="tI"> </span><span class="tT"> the individual associated with the resource, or for any other names</span><span class="tI"> </span><span class="tT"> that are not intended to be alphabetized, (as appropriate). Note that</span><span class="tI"> </span><span class="tT"> while it is possible to include all given names in one field (as in the</span><span class="tI"> </span><span class="tT"> example below), it may be not be good practice to do so. For example, if an</span><span class="tI"> </span><span class="tT"> XSL transformation stylesheet were to abbreviate the content of a</span><span class="tI"> </span><span class="tT"> givenName to just the first initial, a givenName element that contained</span><span class="tI"> </span><span class="tT"> more than one name would not be transformed correctly. </span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Juan Luis</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Jane</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_Person_givenName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Person_givenName');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Person_givenName" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_givenName.png" usemap="#eml-party_xsd_Element_givenName" /><map name="eml-party_xsd_Element_givenName" id="eml-party_xsd_Element_givenName"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="166,78,249,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="244,123,303,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="141,3,349,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Person_givenName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Person_givenName');" class="control" /></div> </td> <td> <div id="properties_Person_givenName" style="display:block"> <table class="propertiesTable"> <tr> <td class="firstColumn" style="white-space: nowrap;">content</td> <td><b>complex</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">minOccurs</td> <td><b>0</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td> <td><b>unbounded</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Person_givenName" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Person_givenName');" class="control" /></div> </td> <td> <div id="model_Person_givenName" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Person_givenName" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Person_givenName');" class="control" /></div> </td> <td> <div id="instance_Person_givenName" 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"><givenName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></givenName></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_Person_givenName" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Person_givenName');" class="control" /></div> </td> <td> <div id="attributes_Person_givenName" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Person_surName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Person" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Person</a></b> / surName</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_Person_surName" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Person_surName');" class="control" /></div> </td> <td> <div id="annotations_Person_surName" 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: Last name</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The last name of the individual.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The surname field is used for the last name of the</span><span class="tI"> </span><span class="tT"> individual associated with the resource. This is typically the family name</span><span class="tI"> </span><span class="tT"> of an individual, for example, the name by which s/he is referred to in citations.</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: San Gil</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Curtis-Ainsworth</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Tao</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_Person_surName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Person_surName');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Person_surName" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_surName.png" usemap="#eml-party_xsd_Element_surName" /><map name="eml-party_xsd_Element_surName" id="eml-party_xsd_Element_surName"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="155,78,238,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="233,123,292,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="130,3,338,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Person_surName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Person_surName');" class="control" /></div> </td> <td> <div id="properties_Person_surName" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Person_surName" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Person_surName');" class="control" /></div> </td> <td> <div id="model_Person_surName" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Person_surName" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Person_surName');" class="control" /></div> </td> <td> <div id="instance_Person_surName" 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"><surName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></surName></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_Person_surName" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Person_surName');" class="control" /></div> </td> <td> <div id="attributes_Person_surName" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_organizationName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / organizationName</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_ResponsibleParty_organizationName" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_organizationName');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_organizationName" 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: Organization name</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The full name of the organization being</span><span class="tI"> </span><span class="tT"> described</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: </span><span class="tI"> </span><span class="tT"> </span><span class="tI"> </span><span class="tT"> The responsible party field contains the full</span><span class="tI"> </span><span class="tT"> name of the organization that is associated with the resource.</span><span class="tI"> </span><span class="tT"> This field is intended to describe which institution or overall</span><span class="tI"> </span><span class="tT"> organization is associated with the resource being described.</span><span class="tI"> </span><span class="tT"> </span><span class="tI"> </span><span class="tT"> Note that the the content model for the containing type</span><span class="tI"> </span><span class="tT"> allows a sequence of choices for the first</span><span class="tI"> </span><span class="tT"> element(s): <individualName>, <organizationName> and/or <positionName>.</span><span class="tI"> </span><span class="tT"> This means that a parent element (e.g., creator) may use combinations of the 3 sub-elements</span><span class="tI"> </span><span class="tT"> to make up a single logical party. For example, a creator with only</span><span class="tI"> </span><span class="tT"> the individualName of 'Joe Smith' is NOT the same as a</span><span class="tI"> </span><span class="tT"> creator with the individualName of 'Joe Smith' and the</span><span class="tI"> </span><span class="tT"> organizationName of 'NSF'. To include both a positionName and</span><span class="tI"> </span><span class="tT"> an organizationName as children of a <contact> implies that anyone</span><span class="tI"> </span><span class="tT"> currently occupying that positionName at that organizationName</span><span class="tI"> </span><span class="tT"> is an appropriate contact.</span><span class="tI"> </span><span class="tT"> The positionName should not be</span><span class="tI"> </span><span class="tT"> used in conjunction with individualName unless only that specific</span><span class="tI"> </span><span class="tT"> individual at that position would be considered appropriate for that</span><span class="tI"> </span><span class="tT"> designation. </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">example: National Center for Ecological Analysis and</span><span class="tI"> </span><span class="tT"> Synthesis</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_ResponsibleParty_organizationName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_organizationName');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_organizationName" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_organizationName.png" usemap="#eml-party_xsd_Element_organizationName" /><map name="eml-party_xsd_Element_organizationName" id="eml-party_xsd_Element_organizationName"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="205,78,288,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="283,123,342,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="180,3,388,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_organizationName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_organizationName');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_organizationName" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ResponsibleParty_organizationName" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ResponsibleParty_organizationName');" class="control" /></div> </td> <td> <div id="model_ResponsibleParty_organizationName" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_ResponsibleParty_organizationName" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ResponsibleParty_organizationName');" class="control" /></div> </td> <td> <div id="instance_ResponsibleParty_organizationName" 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"><organizationName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></organizationName></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_ResponsibleParty_organizationName" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty_organizationName');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty_organizationName" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_positionName"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / positionName</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_ResponsibleParty_positionName" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_positionName');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_positionName" 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: Position Name</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The name of the title or position associated with</span><span class="tI"> </span><span class="tT"> the resource.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: </span><span class="tI"> </span><span class="tT"> </span><span class="tI"> </span><span class="tT"> This field is intended to be used instead of a</span><span class="tI"> </span><span class="tT"> particular person or full organization name. If the associated</span><span class="tI"> </span><span class="tT"> person who holds the role changes frequently, then Position</span><span class="tI"> </span><span class="tT"> Name would be used for consistency. </span><span class="tI"> </span><span class="tT"> Note that the the content model for the containing type</span><span class="tI"> </span><span class="tT"> allows a sequence of choices for the first</span><span class="tI"> </span><span class="tT"> element(s): <individualName>, <organizationName> and/or <positionName>.</span><span class="tI"> </span><span class="tT"> This means that a parent element (e.g., creator) may use combinations of the 3 sub-elements</span><span class="tI"> </span><span class="tT"> to make up a single logical party. For example, a creator with only</span><span class="tI"> </span><span class="tT"> the individualName of 'Joe Smith' is NOT the same as a</span><span class="tI"> </span><span class="tT"> creator with the individualName of 'Joe Smith' and the</span><span class="tI"> </span><span class="tT"> organizationName of 'NSF'. To include both a positionName and</span><span class="tI"> </span><span class="tT"> an organizationName as children of a <contact> implies that anyone</span><span class="tI"> </span><span class="tT"> currently occupying that positionName at that organizationName</span><span class="tI"> </span><span class="tT"> is an appropriate contact.</span><span class="tI"> </span><span class="tT"> The positionName should not be</span><span class="tI"> </span><span class="tT"> used in conjunction with individualName unless only that specific</span><span class="tI"> </span><span class="tT"> individual at that position would be considered appropriate for that</span><span class="tI"> </span><span class="tT"> designation. </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">example: Niwot Ridge Data Manager</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_ResponsibleParty_positionName" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_positionName');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_positionName" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_positionName.png" usemap="#eml-party_xsd_Element_positionName" /><map name="eml-party_xsd_Element_positionName" id="eml-party_xsd_Element_positionName"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="181,78,264,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="259,123,318,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="156,3,364,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_positionName" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_positionName');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_positionName" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ResponsibleParty_positionName" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ResponsibleParty_positionName');" class="control" /></div> </td> <td> <div id="model_ResponsibleParty_positionName" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_ResponsibleParty_positionName" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ResponsibleParty_positionName');" class="control" /></div> </td> <td> <div id="instance_ResponsibleParty_positionName" 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"><positionName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></positionName></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_ResponsibleParty_positionName" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty_positionName');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty_positionName" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_address"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / address</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_ResponsibleParty_address" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_address');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_address" 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: Contact address</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The full address information for a given responsible</span><span class="tI"> </span><span class="tT"> party entry.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The address field is a container for multiple</span><span class="tI"> </span><span class="tT"> subfields that describe the physical or electronic address of the</span><span class="tI"> </span><span class="tT"> responsible party for a resource.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Please see the subfield examples.</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_ResponsibleParty_address" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_address');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_address" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_address.png" usemap="#eml-party_xsd_Element_address" /><map name="eml-party_xsd_Element_address" id="eml-party_xsd_Element_address"> <area alt="eml-party_xsd.tmp#Address_id" href="eml-party_xsd.html#Address_id" coords="150,78,218,102" /> <area alt="eml-party_xsd.tmp#Address_system" href="eml-party_xsd.html#Address_system" coords="150,112,236,136" /> <area alt="eml-party_xsd.tmp#Address_scope" href="eml-party_xsd.html#Address_scope" coords="150,146,230,170" /> <area alt="eml-party_xsd.tmp#Address_deliveryPoint" href="eml-party_xsd.html#Address_deliveryPoint" coords="299,187,399,211" /> <area alt="eml-party_xsd.tmp#Address_city" href="eml-party_xsd.html#Address_city" coords="299,277,350,301" /> <area alt="eml-party_xsd.tmp#Address_administrativeArea" href="eml-party_xsd.html#Address_administrativeArea" coords="299,367,431,391" /> <area alt="eml-party_xsd.tmp#Address_postalCode" href="eml-party_xsd.html#Address_postalCode" coords="299,444,391,468" /> <area alt="eml-party_xsd.tmp#Address_country" href="eml-party_xsd.html#Address_country" coords="299,534,372,558" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="292,672,380,696" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="210,627,378,653" /> <area alt="eml-party_xsd.tmp#Address" href="eml-party_xsd.html#Address" coords="125,3,221,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_address" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_address');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_address" 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_ResponsibleParty_address" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ResponsibleParty_address');" class="control" /></div> </td> <td> <div id="model_ResponsibleParty_address" style="display:block">(<b><a href="eml-party_xsd.html#Address_deliveryPoint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">deliveryPoint*</a></b> , <b><a href="eml-party_xsd.html#Address_city" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">city{0,1}</a></b> , <b><a href="eml-party_xsd.html#Address_administrativeArea" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">administrativeArea{0,1}</a></b> , <b><a href="eml-party_xsd.html#Address_postalCode" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">postalCode{0,1}</a></b> , <b><a href="eml-party_xsd.html#Address_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">country{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-party_xsd.html#Address_administrativeArea" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">administrativeArea</a></b>, <b><a href="eml-party_xsd.html#Address_city" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">city</a></b>, <b><a href="eml-party_xsd.html#Address_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">country</a></b>, <b><a href="eml-party_xsd.html#Address_deliveryPoint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">deliveryPoint</a></b>, <b><a href="eml-party_xsd.html#Address_postalCode" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">postalCode</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_ResponsibleParty_address" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ResponsibleParty_address');" class="control" /></div> </td> <td> <div id="instance_ResponsibleParty_address" 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"><address</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">></span><span class="tI"> </span><span class="tEl"><deliveryPoint</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></deliveryPoint></span><span class="tI"> </span><span class="tEl"><city</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl"></city></span><span class="tI"> </span><span class="tEl"><administrativeArea</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl"></administrativeArea></span><span class="tI"> </span><span class="tEl"><postalCode</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl"></postalCode></span><span class="tI"> </span><span class="tEl"><country</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl"></country></span><span class="tI"> </span><span class="tEl"><references</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></references></span><span class="tI"> </span><span class="tEl"></address></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_ResponsibleParty_address" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty_address');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty_address" 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-party_xsd.html#Address_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#Address_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#Address_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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="Address_deliveryPoint"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</a></b> / deliveryPoint</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_Address_deliveryPoint" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Address_deliveryPoint');" class="control" /></div> </td> <td> <div id="annotations_Address_deliveryPoint" 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: Delivery point</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The location for postal deliveries.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The delivery point field is used for the</span><span class="tI"> </span><span class="tT"> physical address for postal communication. This field is used to</span><span class="tI"> </span><span class="tT"> accommodate the many different international conventions that are</span><span class="tI"> </span><span class="tT"> the equivalent to a U.S. 'street address'.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: 7209 Coast Drive, Building 44</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_Address_deliveryPoint" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Address_deliveryPoint');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Address_deliveryPoint" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_deliveryPoint.png" usemap="#eml-party_xsd_Element_deliveryPoint" /><map name="eml-party_xsd_Element_deliveryPoint" id="eml-party_xsd_Element_deliveryPoint"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="176,78,259,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="254,123,313,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="151,3,359,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Address_deliveryPoint" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_deliveryPoint');" class="control" /></div> </td> <td> <div id="properties_Address_deliveryPoint" style="display:block"> <table class="propertiesTable"> <tr> <td class="firstColumn" style="white-space: nowrap;">content</td> <td><b>complex</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">minOccurs</td> <td><b>0</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td> <td><b>unbounded</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Address_deliveryPoint" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Address_deliveryPoint');" class="control" /></div> </td> <td> <div id="model_Address_deliveryPoint" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Address_deliveryPoint" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Address_deliveryPoint');" class="control" /></div> </td> <td> <div id="instance_Address_deliveryPoint" 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"><deliveryPoint</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></deliveryPoint></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_Address_deliveryPoint" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Address_deliveryPoint');" class="control" /></div> </td> <td> <div id="attributes_Address_deliveryPoint" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Address_city"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</a></b> / city</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_Address_city" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Address_city');" class="control" /></div> </td> <td> <div id="annotations_Address_city" 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: City</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The name of the city for the contact.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The city field is used for the city name of the</span><span class="tI"> </span><span class="tT"> contact associated with a particular resource.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: San Francisco</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_Address_city" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Address_city');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Address_city" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_city.png" usemap="#eml-party_xsd_Element_city" /><map name="eml-party_xsd_Element_city" id="eml-party_xsd_Element_city"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="127,78,210,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="205,123,264,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="102,3,310,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Address_city" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_city');" class="control" /></div> </td> <td> <div id="properties_Address_city" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Address_city" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Address_city');" class="control" /></div> </td> <td> <div id="model_Address_city" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Address_city" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Address_city');" class="control" /></div> </td> <td> <div id="instance_Address_city" 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"><city</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></city></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_Address_city" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Address_city');" class="control" /></div> </td> <td> <div id="attributes_Address_city" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Address_administrativeArea"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</a></b> / administrativeArea</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_Address_administrativeArea" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Address_administrativeArea');" class="control" /></div> </td> <td> <div id="annotations_Address_administrativeArea" 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: Administrative area</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The political area of a country.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The administrative area field is the equivalent</span><span class="tI"> </span><span class="tT"> of a 'state' in the U.S., or Province in Canada. This field is</span><span class="tI"> </span><span class="tT"> intended to accommodate the many types of international</span><span class="tI"> </span><span class="tT"> administrative areas.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Colorado</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_Address_administrativeArea" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Address_administrativeArea');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Address_administrativeArea" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_administrativeArea.png" usemap="#eml-party_xsd_Element_administrativeArea" /><map name="eml-party_xsd_Element_administrativeArea" id="eml-party_xsd_Element_administrativeArea"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="208,78,291,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="286,123,345,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="183,3,391,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Address_administrativeArea" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_administrativeArea');" class="control" /></div> </td> <td> <div id="properties_Address_administrativeArea" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Address_administrativeArea" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Address_administrativeArea');" class="control" /></div> </td> <td> <div id="model_Address_administrativeArea" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Address_administrativeArea" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Address_administrativeArea');" class="control" /></div> </td> <td> <div id="instance_Address_administrativeArea" 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"><administrativeArea</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></administrativeArea></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_Address_administrativeArea" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Address_administrativeArea');" class="control" /></div> </td> <td> <div id="attributes_Address_administrativeArea" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Address_postalCode"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</a></b> / postalCode</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_Address_postalCode" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Address_postalCode');" class="control" /></div> </td> <td> <div id="annotations_Address_postalCode" 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: Postal code</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The postal code used for routing to an</span><span class="tI"> </span><span class="tT"> address.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The postal code is equivalent to a U.S. zip</span><span class="tI"> </span><span class="tT"> code, or the number used for routing to an international address.</span><span class="tI"> </span><span class="tT"> The U.S. postal code should include the 5 digit code plus the 4</span><span class="tI"> </span><span class="tT"> digit extension.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: 93106-2231</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_Address_postalCode" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Address_postalCode');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Address_postalCode" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_postalCode.png" usemap="#eml-party_xsd_Element_postalCode" /><map name="eml-party_xsd_Element_postalCode" id="eml-party_xsd_Element_postalCode"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="168,78,251,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="246,123,305,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="143,3,351,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Address_postalCode" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_postalCode');" class="control" /></div> </td> <td> <div id="properties_Address_postalCode" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Address_postalCode" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Address_postalCode');" class="control" /></div> </td> <td> <div id="model_Address_postalCode" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Address_postalCode" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Address_postalCode');" class="control" /></div> </td> <td> <div id="instance_Address_postalCode" 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"><postalCode</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></postalCode></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_Address_postalCode" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Address_postalCode');" class="control" /></div> </td> <td> <div id="attributes_Address_postalCode" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Address_country"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</a></b> / country</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_Address_country" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Address_country');" class="control" /></div> </td> <td> <div id="annotations_Address_country" 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: Country</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The name of the country for the contact's</span><span class="tI"> </span><span class="tT"> address.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The country field is used for the name of the</span><span class="tI"> </span><span class="tT"> contact's country.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: U.S.A.</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_Address_country" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Address_country');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Address_country" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_country.png" usemap="#eml-party_xsd_Element_country" /><map name="eml-party_xsd_Element_country" id="eml-party_xsd_Element_country"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="149,78,232,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="227,123,286,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="124,3,332,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_Address_country" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_country');" class="control" /></div> </td> <td> <div id="properties_Address_country" 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;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Address_country" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Address_country');" class="control" /></div> </td> <td> <div id="model_Address_country" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_Address_country" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_Address_country');" class="control" /></div> </td> <td> <div id="instance_Address_country" 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"><country</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></country></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_Address_country" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Address_country');" class="control" /></div> </td> <td> <div id="attributes_Address_country" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_phone"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / phone</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_ResponsibleParty_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_phone');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_phone" 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: Phone</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: Information about the contact's</span><span class="tI"> </span><span class="tT"> telephone</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The phone field describes information about the</span><span class="tI"> </span><span class="tT"> responsible party's telephone, be it a voice phone, fax, or</span><span class="tI"> </span><span class="tT"> TTD/TTY type telephone. This field contains an attribute used to</span><span class="tI"> </span><span class="tT"> identify the type.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: 805-555-2500</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_ResponsibleParty_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_phone');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_phone" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_phone.png" usemap="#eml-party_xsd_Element_phone" /><map name="eml-party_xsd_Element_phone" id="eml-party_xsd_Element_phone"> <area alt="eml-party_xsd.tmp#ResponsibleParty_ResponsibleParty_phone_phonetype" href="eml-party_xsd.html#ResponsibleParty_ResponsibleParty_phone_phonetype" coords="127,119,232,143" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td>extension of <b>xs:string</b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_phone');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_phone" style="display:block"> <table class="propertiesTable"> <tr> <td class="firstColumn" style="white-space: nowrap;">content</td> <td><b>complex</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">minOccurs</td> <td><b>0</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td> <td><b>unbounded</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Attributes</b></div> <div class="floatRight"><input id="button_attributes_ResponsibleParty_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty_phone');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty_phone" 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-party_xsd.html#ResponsibleParty_ResponsibleParty_phone_phonetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">phonetype</a></b></td> <td><b>xs:string</b></td> <td>voice</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: Phone type</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The type of the phone to which this number</span><span class="tI"> </span><span class="tT"> applies</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: This attribute gives the type of phone</span><span class="tI"> </span><span class="tT"> to which this number applies. By default, this is assumed</span><span class="tI"> </span><span class="tT"> to be of type "voice", but other possibilities include</span><span class="tI"> </span><span class="tT"> "facsimile" and "tdd".</span></pre></td> </tr> </table> </div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_electronicMailAddress"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / electronicMailAddress</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_ResponsibleParty_electronicMailAddress" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_electronicMailAddress');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_electronicMailAddress" 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: Email address</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The email address of the contact.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The electronic mail address is the email address</span><span class="tI"> </span><span class="tT"> for the party. It is intended to be an Internet SMTP email</span><span class="tI"> </span><span class="tT"> address, which should consist of a username followed by the @</span><span class="tI"> </span><span class="tT"> symbol, followed by the email server domain name address. Other</span><span class="tI"> </span><span class="tT"> address types are allowable.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: my-email@mydomain.edu</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_ResponsibleParty_electronicMailAddress" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_electronicMailAddress');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_electronicMailAddress" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_electronicMailAddress.png" usemap="#eml-party_xsd_Element_electronicMailAddress" /><map name="eml-party_xsd_Element_electronicMailAddress" id="eml-party_xsd_Element_electronicMailAddress"> <area alt="xml_xsd.tmp#lang" href="xml_xsd.html#lang" coords="226,78,309,102" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType_value" href="eml-resource_xsd.html#i18nNonEmptyStringType_value" coords="304,123,363,147" /> <area alt="eml-resource_xsd.tmp#i18nNonEmptyStringType" href="eml-resource_xsd.html#i18nNonEmptyStringType" coords="201,3,409,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType" target="mainFrame" title="https://eml.ecoinformatics.org/resource-2.2.0" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">i18nNonEmptyStringType</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_electronicMailAddress" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_electronicMailAddress');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_electronicMailAddress" style="display:block"> <table class="propertiesTable"> <tr> <td class="firstColumn" style="white-space: nowrap;">content</td> <td><b>complex</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">minOccurs</td> <td><b>0</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td> <td><b>unbounded</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">mixed</td> <td><b>true</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ResponsibleParty_electronicMailAddress" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ResponsibleParty_electronicMailAddress');" class="control" /></div> </td> <td> <div id="model_ResponsibleParty_electronicMailAddress" style="display:block"><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value*</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-resource_xsd.html#i18nNonEmptyStringType_value" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">value</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_ResponsibleParty_electronicMailAddress" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_ResponsibleParty_electronicMailAddress');" class="control" /></div> </td> <td> <div id="instance_ResponsibleParty_electronicMailAddress" 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"><electronicMailAddress</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><value</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></value></span><span class="tI"> </span><span class="tEl"></electronicMailAddress></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_ResponsibleParty_electronicMailAddress" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty_electronicMailAddress');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty_electronicMailAddress" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th></th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="xml_xsd.html#lang" target="mainFrame" title="http://www.w3.org/XML/1998/namespace" onclick="updatePageTitle('Schema documentation for xml.xsd')">xml:lang</a></b></td> <td></td> <td>optional</td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_onlineUrl"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / onlineUrl</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_ResponsibleParty_onlineUrl" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_onlineUrl');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_onlineUrl" 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: Online Link</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: A link to associated online information, usually a</span><span class="tI"> </span><span class="tT"> web site.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: A link to associated online information, usually</span><span class="tI"> </span><span class="tT"> a web site. When the party represents an organization, this is</span><span class="tI"> </span><span class="tT"> the URL to a website or other online information about the</span><span class="tI"> </span><span class="tT"> organization. If the party is an individual, it might be their</span><span class="tI"> </span><span class="tT"> personal web site or other related online information about the</span><span class="tI"> </span><span class="tT"> party.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: http://www.yourdomain.edu/~doe</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_ResponsibleParty_onlineUrl" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_onlineUrl');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_onlineUrl" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_onlineUrl.png" /></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b>xs:anyURI</b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_onlineUrl" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_onlineUrl');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_onlineUrl" 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> </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="ResponsibleParty_userId"></a><div class="componentTitle">Element <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / userId</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_ResponsibleParty_userId" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_userId');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_userId" 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: User Identifier</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: An identifier that links this party to a</span><span class="tI"> </span><span class="tT"> directory of individuals</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: An identifier that links this party to a</span><span class="tI"> </span><span class="tT"> directory of individuals. Although specific contact information</span><span class="tI"> </span><span class="tT"> for a party might change, the underlying correspondence to a</span><span class="tI"> </span><span class="tT"> real individual does not. This identifier provides a pointer</span><span class="tI"> </span><span class="tT"> within a directory of individuals that may contain further, and</span><span class="tI"> </span><span class="tT"> possibly more current, information about the party.</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: https://orcid.org/0000-0002-1825-0097</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"> uid=jtown,o=NCEAS,dc=ecoinformatics,dc=org</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_ResponsibleParty_userId" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty_userId');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty_userId" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_userId.png" usemap="#eml-party_xsd_Element_userId" /><map name="eml-party_xsd_Element_userId" id="eml-party_xsd_Element_userId"> <area alt="eml-party_xsd.tmp#ResponsibleParty_ResponsibleParty_userId_directory" href="eml-party_xsd.html#ResponsibleParty_ResponsibleParty_userId_directory" coords="127,119,224,143" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td>extension of <b>xs:string</b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_ResponsibleParty_userId" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_userId');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_userId" style="display:block"> <table class="propertiesTable"> <tr> <td class="firstColumn" style="white-space: nowrap;">content</td> <td><b>complex</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">minOccurs</td> <td><b>0</b></td> </tr> <tr> <td class="firstColumn" style="white-space: nowrap;">maxOccurs</td> <td><b>unbounded</b></td> </tr> </table> </div> </td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Attributes</b></div> <div class="floatRight"><input id="button_attributes_ResponsibleParty_userId" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty_userId');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty_userId" style="display:block"> <table class="attributesTable"> <thead> <tr> <th>QName</th> <th width="10%">Type</th> <th width="5%">Use</th> <th>Annotation</th> </tr> </thead> <tr> <td class="firstColumn"><b><a href="eml-party_xsd.html#ResponsibleParty_ResponsibleParty_userId_directory" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">directory</a></b></td> <td><b>xs:string</b></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: Directory</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The directory system within which the</span><span class="tI"> </span><span class="tT"> directoryId can be retrieved.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: This attribute names the directory system</span><span class="tI"> </span><span class="tT"> to which this userId applies. This will generally</span><span class="tI"> </span><span class="tT"> be a URL that shows how to look up information, for</span><span class="tI"> </span><span class="tT"> example an LDAP URL. However, it could also be a</span><span class="tI"> </span><span class="tT"> non-parsable description of the directory system if</span><span class="tI"> </span><span class="tT"> that is all that is available.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: https://orcid.org</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/dc=ecoinformatics,dc=org</span></pre></td> </tr> </table> </div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="party"></a><div class="componentTitle">Element <span class="qname">party</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/party-2.2.0</td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Annotations</b></div> <div class="floatRight"><input id="button_annotations_party" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_party');" class="control" /></div> </td> <td> <div id="annotations_party" 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: Responsible party</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: An individual, organization, or role.</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: The responsible party contains multiple</span><span class="tI"> </span><span class="tT"> subfields that are used to describe a person, organization, or</span><span class="tI"> </span><span class="tT"> position within an organization.</span><span class="tI"> </span><span class="tT"> It is intended to be used to fully document contact</span><span class="tI"> </span><span class="tT"> information for many types of associations, such as owner, manager,</span><span class="tI"> </span><span class="tT"> steward, curator, etc.</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_party" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_party');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_party" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Element_party.png" usemap="#eml-party_xsd_Element_party" /><map name="eml-party_xsd_Element_party" id="eml-party_xsd_Element_party"> <area alt="eml-party_xsd.tmp#ResponsibleParty_id" href="eml-party_xsd.html#ResponsibleParty_id" coords="135,78,203,102" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_system" href="eml-party_xsd.html#ResponsibleParty_system" coords="135,112,221,136" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_scope" href="eml-party_xsd.html#ResponsibleParty_scope" coords="135,146,215,170" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_individualName" href="eml-party_xsd.html#ResponsibleParty_individualName" coords="355,187,468,211" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_organizationName" href="eml-party_xsd.html#ResponsibleParty_organizationName" coords="355,277,484,301" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_positionName" href="eml-party_xsd.html#ResponsibleParty_positionName" coords="355,354,460,378" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_address" href="eml-party_xsd.html#ResponsibleParty_address" coords="284,444,358,468" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_phone" href="eml-party_xsd.html#ResponsibleParty_phone" coords="284,534,349,558" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_electronicMailAddress" href="eml-party_xsd.html#ResponsibleParty_electronicMailAddress" coords="284,624,434,648" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_onlineUrl" href="eml-party_xsd.html#ResponsibleParty_onlineUrl" coords="284,701,364,725" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_userId" href="eml-party_xsd.html#ResponsibleParty_userId" coords="284,791,349,815" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="277,929,365,953" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="195,884,363,910" /> <area alt="eml-party_xsd.tmp#ResponsibleParty" href="eml-party_xsd.html#ResponsibleParty" coords="110,3,253,25" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Properties</b></div> <div class="floatRight"><input id="button_properties_party" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_party');" class="control" /></div> </td> <td> <div id="properties_party" 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_party" type="image" src="img/btM.gif" value="-" onclick="switchState('model_party');" class="control" /></div> </td> <td> <div id="model_party" style="display:block">((<b><a href="eml-party_xsd.html#ResponsibleParty_individualName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">individualName</a></b> | <b><a href="eml-party_xsd.html#ResponsibleParty_organizationName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">organizationName</a></b> | <b><a href="eml-party_xsd.html#ResponsibleParty_positionName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">positionName</a></b>) , <b><a href="eml-party_xsd.html#ResponsibleParty_address" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">address*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">phone*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_electronicMailAddress" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">electronicMailAddress*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_onlineUrl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">onlineUrl*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_userId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">userId*</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-party_xsd.html#ResponsibleParty_address" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">address</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_electronicMailAddress" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">electronicMailAddress</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_individualName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">individualName</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_onlineUrl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">onlineUrl</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_organizationName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">organizationName</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">phone</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_positionName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">positionName</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-party_xsd.html#ResponsibleParty_userId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">userId</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Instance</b></div> <div class="floatRight"><input id="button_instance_party" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_party');" class="control" /></div> </td> <td> <div id="instance_party" 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"><party</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/party-2.2.0"</span><span class="tEl">></span><span class="tI"> </span><span class="tEl"><individualName</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></individualName></span><span class="tI"> </span><span class="tEl"><organizationName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></organizationName></span><span class="tI"> </span><span class="tEl"><positionName</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></positionName></span><span class="tI"> </span><span class="tEl"><address</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">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></address></span><span class="tI"> </span><span class="tEl"><phone</span><span class="tT"> </span><span class="tAN">phonetype=</span><span class="tAV">"voice"</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></phone></span><span class="tI"> </span><span class="tEl"><electronicMailAddress</span><span class="tT"> </span><span class="tAN">xml:lang=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></electronicMailAddress></span><span class="tI"> </span><span class="tEl"><onlineUrl</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></onlineUrl></span><span class="tI"> </span><span class="tEl"><userId</span><span class="tT"> </span><span class="tAN">directory=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></userId></span><span class="tI"> </span><span class="tEl"><references</span><span class="tT"> </span><span class="tAN">system=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></references></span><span class="tI"> </span><span class="tEl"></party></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_party" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_party');" class="control" /></div> </td> <td> <div id="attributes_party" 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-party_xsd.html#ResponsibleParty_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#ResponsibleParty_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#ResponsibleParty_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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="ResponsibleParty"></a><div class="componentTitle">Complex Type <span class="qname">ResponsibleParty</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/party-2.2.0</td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Annotations</b></div> <div class="floatRight"><input id="button_annotations_ResponsibleParty" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty" 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: Responsible party</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The individual, organization, or role associated with a</span><span class="tI"> </span><span class="tT"> resource.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: </span><span class="tI"> </span><span class="tT"> </span><span class="tI"> </span><span class="tT"> The ResponsibleParty Type contains</span><span class="tI"> </span><span class="tT"> elements that are used to describe the person, organization or</span><span class="tI"> </span><span class="tT"> position within an organization that is associated in some way with the</span><span class="tI"> </span><span class="tT"> resource. It is intended to be used to fully document contact</span><span class="tI"> </span><span class="tT"> information for many types of associations, such as owner, manager,</span><span class="tI"> </span><span class="tT"> steward, curator, etc.</span><span class="tI"> </span><span class="tT"> Note that the content model for a responsible party type</span><span class="tI"> </span><span class="tT"> allows a sequence of choices for the first</span><span class="tI"> </span><span class="tT"> element(s): <individualName>, <organizationName> and/or <positionName>.</span><span class="tI"> </span><span class="tT"> This means that a parent element (e.g., creator) may use combinations of the 3 sub-elements</span><span class="tI"> </span><span class="tT"> to make up a single logical party. For example, a creator with only</span><span class="tI"> </span><span class="tT"> the individualName of 'Joe Smith' is NOT the same as a</span><span class="tI"> </span><span class="tT"> creator with the individualName of 'Joe Smith' and the</span><span class="tI"> </span><span class="tT"> organizationName of 'NSF'. To include both a positionName and</span><span class="tI"> </span><span class="tT"> an organizationName as children of a <contact> implies that anyone</span><span class="tI"> </span><span class="tT"> currently occupying that positionName at that organizationName</span><span class="tI"> </span><span class="tT"> is an appropriate contact.</span><span class="tI"> </span><span class="tT"> The positionName should not be</span><span class="tI"> </span><span class="tT"> used in conjunction with individualName unless only that specific</span><span class="tI"> </span><span class="tT"> individual at that position would be considered appropriate for that</span><span class="tI"> </span><span class="tT"> designation. </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">example: Please see the examples for the particular</span><span class="tI"> </span><span class="tT"> subfields.</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_ResponsibleParty" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_ResponsibleParty');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_ResponsibleParty" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Complex_Type_ResponsibleParty.png" usemap="#eml-party_xsd_Complex_Type_ResponsibleParty" /><map name="eml-party_xsd_Complex_Type_ResponsibleParty" id="eml-party_xsd_Complex_Type_ResponsibleParty"> <area alt="eml-party_xsd.tmp#ResponsibleParty_id" href="eml-party_xsd.html#ResponsibleParty_id" coords="209,38,277,62" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_system" href="eml-party_xsd.html#ResponsibleParty_system" coords="209,72,295,96" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_scope" href="eml-party_xsd.html#ResponsibleParty_scope" coords="209,106,289,130" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_individualName" href="eml-party_xsd.html#ResponsibleParty_individualName" coords="429,147,542,171" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_organizationName" href="eml-party_xsd.html#ResponsibleParty_organizationName" coords="429,237,558,261" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_positionName" href="eml-party_xsd.html#ResponsibleParty_positionName" coords="429,314,534,338" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_address" href="eml-party_xsd.html#ResponsibleParty_address" coords="358,404,432,428" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_phone" href="eml-party_xsd.html#ResponsibleParty_phone" coords="358,494,423,518" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_electronicMailAddress" href="eml-party_xsd.html#ResponsibleParty_electronicMailAddress" coords="358,584,508,608" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_onlineUrl" href="eml-party_xsd.html#ResponsibleParty_onlineUrl" coords="358,661,438,685" /> <area alt="eml-party_xsd.tmp#ResponsibleParty_userId" href="eml-party_xsd.html#ResponsibleParty_userId" coords="358,751,423,775" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="351,889,439,913" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="269,844,437,870" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_ResponsibleParty" type="image" src="img/btM.gif" value="-" onclick="switchState('model_ResponsibleParty');" class="control" /></div> </td> <td> <div id="model_ResponsibleParty" style="display:block">((<b><a href="eml-party_xsd.html#ResponsibleParty_individualName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">individualName</a></b> | <b><a href="eml-party_xsd.html#ResponsibleParty_organizationName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">organizationName</a></b> | <b><a href="eml-party_xsd.html#ResponsibleParty_positionName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">positionName</a></b>) , <b><a href="eml-party_xsd.html#ResponsibleParty_address" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">address*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">phone*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_electronicMailAddress" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">electronicMailAddress*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_onlineUrl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">onlineUrl*</a></b> , <b><a href="eml-party_xsd.html#ResponsibleParty_userId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">userId*</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-party_xsd.html#ResponsibleParty_address" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">address</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_electronicMailAddress" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">electronicMailAddress</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_individualName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">individualName</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_onlineUrl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">onlineUrl</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_organizationName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">organizationName</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">phone</a></b>, <b><a href="eml-party_xsd.html#ResponsibleParty_positionName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">positionName</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-party_xsd.html#ResponsibleParty_userId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">userId</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Attributes</b></div> <div class="floatRight"><input id="button_attributes_ResponsibleParty" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_ResponsibleParty');" class="control" /></div> </td> <td> <div id="attributes_ResponsibleParty" 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-party_xsd.html#ResponsibleParty_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#ResponsibleParty_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#ResponsibleParty_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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="Person"></a><div class="componentTitle">Complex Type <span class="qname">Person</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/party-2.2.0</td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Annotations</b></div> <div class="floatRight"><input id="button_annotations_Person" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Person');" class="control" /></div> </td> <td> <div id="annotations_Person" 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: Person</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The full name of the individual associated with the</span><span class="tI"> </span><span class="tT"> resource.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: </span><span class="tI"> </span><span class="tT"> </span><span class="tI"> </span><span class="tT"> The person Type is used to enter the salutation, and</span><span class="tI"> </span><span class="tT"> two types of name parts for an individual associated with the</span><span class="tI"> </span><span class="tT"> resource. It uses these three subfields to help parse the person's</span><span class="tI"> </span><span class="tT"> entire name.</span><span class="tI"> </span><span class="tT"> The two elements, <givenName> and <surName>,</span><span class="tI"> </span><span class="tT"> allow parsing of many types of names, even though distinct elements</span><span class="tI"> </span><span class="tT"> do not exist for concepts like "middle name" and "compound surname".</span><span class="tI"> </span><span class="tT"> <givenName> should be used for parts of the name that are often</span><span class="tI"> </span><span class="tT"> shortened to a first initial, or are not used for ordering, and typically includes</span><span class="tI"> </span><span class="tT"> first and middle names.</span><span class="tI"> </span><span class="tT"> The <surName> field is intended to be used for the part of the name that</span><span class="tI"> </span><span class="tT"> is generally displayed in its entirety and/or is alphabetized or otherwise ordered</span><span class="tI"> </span><span class="tT"> when appropriate. Note that only one</span><span class="tI"> </span><span class="tT"> <surName> is allowed, and is required, while <givenName>s are</span><span class="tI"> </span><span class="tT"> optional and unbounded. </span><span class="tI"> </span><span class="tT"> The arrangement and content of the sub-elements is entirely</span><span class="tI"> </span><span class="tT"> up to the EML document's author, who presumably has first-hand knowledge of</span><span class="tI"> </span><span class="tT"> how the names are to be constructed. For example, if element position is important</span><span class="tI"> </span><span class="tT"> (e.g., the list of a book's authors), then</span><span class="tI"> </span><span class="tT"> EML authors should put the creators in that order. If it is appropriate for a</span><span class="tI"> </span><span class="tT"> resource to have its creators sorted alphabetically, then the EML author</span><span class="tI"> </span><span class="tT"> should construct the name parts so that the<surName> field may be used for</span><span class="tI"> </span><span class="tT"> this purpose. At this time, EML is not able to express cultural</span><span class="tI"> </span><span class="tT"> conventions so that authors may indicate the correct order for</span><span class="tI"> </span><span class="tT"> <givenName>s and <surName> when the whole name is expressed.</span><span class="tI"> </span><span class="tT"> However support for international names</span><span class="tI"> </span><span class="tT"> is under consideration for a future version of</span><span class="tI"> </span><span class="tT"> EML, along with other internationalization features.</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">example: Please see the examples within each</span><span class="tI"> </span><span class="tT"> subfield.</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_Person" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Person');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Person" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Complex_Type_Person.png" usemap="#eml-party_xsd_Complex_Type_Person" /><map name="eml-party_xsd_Complex_Type_Person" id="eml-party_xsd_Complex_Type_Person"> <area alt="eml-party_xsd.tmp#Person_salutation" href="eml-party_xsd.html#Person_salutation" coords="232,0,316,24" /> <area alt="eml-party_xsd.tmp#Person_givenName" href="eml-party_xsd.html#Person_givenName" coords="232,90,322,114" /> <area alt="eml-party_xsd.tmp#Person_surName" href="eml-party_xsd.html#Person_surName" coords="232,180,311,204" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Person" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Person');" class="control" /></div> </td> <td> <div id="model_Person" style="display:block"><b><a href="eml-party_xsd.html#Person_salutation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">salutation*</a></b> , <b><a href="eml-party_xsd.html#Person_givenName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">givenName*</a></b> , <b><a href="eml-party_xsd.html#Person_surName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">surName</a></b></div> </td> </tr> <tr> <td class="firstColumn"><b>Children</b></td> <td><b><a href="eml-party_xsd.html#Person_givenName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">givenName</a></b>, <b><a href="eml-party_xsd.html#Person_salutation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">salutation</a></b>, <b><a href="eml-party_xsd.html#Person_surName" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">surName</a></b></td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Address"></a><div class="componentTitle">Complex Type <span class="qname">Address</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/party-2.2.0</td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Annotations</b></div> <div class="floatRight"><input id="button_annotations_Address" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_Address');" class="control" /></div> </td> <td> <div id="annotations_Address" 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: Address</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The full address of the resposible party.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The address field is provides detailed information for</span><span class="tI"> </span><span class="tT"> communicating with a party contact via electronic mail or postal mail,</span><span class="tI"> </span><span class="tT"> including the physical delivery location.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: Please see the examples for each subfield</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_Address" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_Address');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_Address" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Complex_Type_Address.png" usemap="#eml-party_xsd_Complex_Type_Address" /><map name="eml-party_xsd_Complex_Type_Address" id="eml-party_xsd_Complex_Type_Address"> <area alt="eml-party_xsd.tmp#Address_id" href="eml-party_xsd.html#Address_id" coords="162,38,230,62" /> <area alt="eml-party_xsd.tmp#Address_system" href="eml-party_xsd.html#Address_system" coords="162,72,248,96" /> <area alt="eml-party_xsd.tmp#Address_scope" href="eml-party_xsd.html#Address_scope" coords="162,106,242,130" /> <area alt="eml-party_xsd.tmp#Address_deliveryPoint" href="eml-party_xsd.html#Address_deliveryPoint" coords="311,147,411,171" /> <area alt="eml-party_xsd.tmp#Address_city" href="eml-party_xsd.html#Address_city" coords="311,237,362,261" /> <area alt="eml-party_xsd.tmp#Address_administrativeArea" href="eml-party_xsd.html#Address_administrativeArea" coords="311,327,443,351" /> <area alt="eml-party_xsd.tmp#Address_postalCode" href="eml-party_xsd.html#Address_postalCode" coords="311,404,403,428" /> <area alt="eml-party_xsd.tmp#Address_country" href="eml-party_xsd.html#Address_country" coords="311,494,384,518" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup_references" href="eml-resource_xsd.html#ReferencesGroup_references" coords="304,632,392,656" /> <area alt="eml-resource_xsd.tmp#ReferencesGroup" href="eml-resource_xsd.html#ReferencesGroup" coords="222,587,390,613" /></map></div> </td> </tr> <tr> <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_Address" type="image" src="img/btM.gif" value="-" onclick="switchState('model_Address');" class="control" /></div> </td> <td> <div id="model_Address" style="display:block">(<b><a href="eml-party_xsd.html#Address_deliveryPoint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">deliveryPoint*</a></b> , <b><a href="eml-party_xsd.html#Address_city" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">city{0,1}</a></b> , <b><a href="eml-party_xsd.html#Address_administrativeArea" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">administrativeArea{0,1}</a></b> , <b><a href="eml-party_xsd.html#Address_postalCode" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">postalCode{0,1}</a></b> , <b><a href="eml-party_xsd.html#Address_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">country{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-party_xsd.html#Address_administrativeArea" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">administrativeArea</a></b>, <b><a href="eml-party_xsd.html#Address_city" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">city</a></b>, <b><a href="eml-party_xsd.html#Address_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">country</a></b>, <b><a href="eml-party_xsd.html#Address_deliveryPoint" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">deliveryPoint</a></b>, <b><a href="eml-party_xsd.html#Address_postalCode" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">postalCode</a></b>, <b><a href="eml-resource_xsd.html#ReferencesGroup_references" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-resource.xsd')">references</a></b></td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Attributes</b></div> <div class="floatRight"><input id="button_attributes_Address" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_Address');" class="control" /></div> </td> <td> <div id="attributes_Address" 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-party_xsd.html#Address_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#Address_scope" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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-party_xsd.html#Address_system" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.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="RoleType"></a><div class="componentTitle">Simple Type <span class="qname">RoleType</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/party-2.2.0</td> </tr> <tr> <td class="firstColumn"> <div class="floatLeft"><b>Annotations</b></div> <div class="floatRight"><input id="button_annotations_RoleType" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_RoleType');" class="control" /></div> </td> <td> <div id="annotations_RoleType" 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: Role</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The classification of the associated person or</span><span class="tI"> </span><span class="tT"> organization.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: The role code field provides information on how a</span><span class="tI"> </span><span class="tT"> person or organization is related to a resource. There may be many</span><span class="tI"> </span><span class="tT"> people associated, including an 'originator' of a dataset, an 'author',</span><span class="tI"> </span><span class="tT"> 'editor', or 'publisher' of a literature resource, or an organization</span><span class="tI"> </span><span class="tT"> that is a 'distributor'. the full list of choices is included in the</span><span class="tI"> </span><span class="tT"> example.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: author, contentProvider, custodianSteward, distributor,</span><span class="tI"> </span><span class="tT"> editor, metadataProvider, originator, pointOfContact,</span><span class="tI"> </span><span class="tT"> principalInvestigator, processor, publisher, or user.</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_RoleType" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_RoleType');" class="control" /></div> </td> <td class="diagram"> <div id="diagram_RoleType" style="display:block"><img alt="Diagram" border="0" src="img/eml-party_xsd_Simple_Type_RoleType.png" /></div> </td> </tr> <tr> <td class="firstColumn"><b>Type</b></td> <td>union of(restriction of <b>xs:string</b>, <b>xs:string</b>) </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="Address_id"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</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_Address_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_id');" class="control" /></div> </td> <td> <div id="properties_Address_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="Address_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</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_Address_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_system');" class="control" /></div> </td> <td> <div id="properties_Address_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="Address_scope"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#Address" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">Address</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_Address_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_Address_scope');" class="control" /></div> </td> <td> <div id="properties_Address_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_Address_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_Address_scope');" class="control" /></div> </td> <td> <div id="facets_Address_scope" style="display:block"> <table class="facetsTable"> <tr> <td class="firstColumn">enumeration</td> <td width="30%"><b>system</b></td> <td> <div class="annotation"></div> </td> </tr> <tr> <td class="firstColumn">enumeration</td> <td width="30%"><b>document</b></td> <td> <div class="annotation"></div> </td> </tr> </table> </div> </td> </tr> </tbody> </table> </td> <td class="rt_lineRight"></td> </tr> <tr> <td class="rt_cornerBottomLeft"></td> <td class="rt_lineBottom"></td> <td class="rt_cornerBottomRight"></td> </tr> </table><a id="ResponsibleParty_ResponsibleParty_phone_phonetype"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / <b><a href="eml-party_xsd.html#ResponsibleParty_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">phone</a></b> / @phonetype</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_ResponsibleParty_ResponsibleParty_phone_phonetype" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_ResponsibleParty_phone_phonetype');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_ResponsibleParty_phone_phonetype" 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: Phone type</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The type of the phone to which this number</span><span class="tI"> </span><span class="tT"> applies</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: This attribute gives the type of phone</span><span class="tI"> </span><span class="tT"> to which this number applies. By default, this is assumed</span><span class="tI"> </span><span class="tT"> to be of type "voice", but other possibilities include</span><span class="tI"> </span><span class="tT"> "facsimile" and "tdd".</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_ResponsibleParty_ResponsibleParty_phone_phonetype" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_ResponsibleParty_phone_phonetype');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_ResponsibleParty_phone_phonetype" 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>voice</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="ResponsibleParty_ResponsibleParty_userId_directory"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</a></b> / <b><a href="eml-party_xsd.html#ResponsibleParty_userId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">userId</a></b> / @directory</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_ResponsibleParty_ResponsibleParty_userId_directory" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_ResponsibleParty_ResponsibleParty_userId_directory');" class="control" /></div> </td> <td> <div id="annotations_ResponsibleParty_ResponsibleParty_userId_directory" 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: Directory</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">summary: The directory system within which the</span><span class="tI"> </span><span class="tT"> directoryId can be retrieved.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">description: This attribute names the directory system</span><span class="tI"> </span><span class="tT"> to which this userId applies. This will generally</span><span class="tI"> </span><span class="tT"> be a URL that shows how to look up information, for</span><span class="tI"> </span><span class="tT"> example an LDAP URL. However, it could also be a</span><span class="tI"> </span><span class="tT"> non-parsable description of the directory system if</span><span class="tI"> </span><span class="tT"> that is all that is available.</span><span class="tI"> </span><span class="tT"></span><span class="tI"> </span><span class="tT">example: https://orcid.org</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/dc=ecoinformatics,dc=org</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_ResponsibleParty_ResponsibleParty_userId_directory" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_ResponsibleParty_userId_directory');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_ResponsibleParty_userId_directory" 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="ResponsibleParty_id"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</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_ResponsibleParty_id" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_id');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_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="ResponsibleParty_system"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</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_ResponsibleParty_system" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_system');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_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="ResponsibleParty_scope"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="eml-party_xsd.html#ResponsibleParty" target="mainFrame" title="https://eml.ecoinformatics.org/party-2.2.0" onclick="updatePageTitle('Schema documentation for eml-party.xsd')">ResponsibleParty</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_ResponsibleParty_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_ResponsibleParty_scope');" class="control" /></div> </td> <td> <div id="properties_ResponsibleParty_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_ResponsibleParty_scope" type="image" src="img/btM.gif" value="-" onclick="switchState('facets_ResponsibleParty_scope');" class="control" /></div> </td> <td> <div id="facets_ResponsibleParty_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"><</span>o<span class="redX">X</span>ygen<span class="redX">/></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>