TAGTEXT  Examples

Used in:  REQUEST  
Servers:  Metadata (Browse)  
Parent elements:  SEARCH_METADATA  

<TAGTEXT Attribute Description Table

     tag ="string"
     word ="string"
     zcode ="string"
     attribute ="string"
>

     No Child Elements
</TAGTEXT >
Bold: Attribute or child element is required.


Description:


Restrictions:


Notes:


Attribute Descriptions for TAGTEXT:

Attribute Usage Back to Top
attribute Name of an attribute for searching.
tag Defines the location of an element inside an XML tree. For example, the element "title" might be inside an XML structure such as

<idinfo>
  <citation>
    <citeinfo>
      <title>...</title>
    </citeinfo>
  </citation>
</idinfo>

To define "title", the string value for this attribute would be "idinfo/citation/citeinfo/title".
word List of one or more keywords. Words are separated by a space.
zcode Numeric code defining semantics from the GEO Attribute Set.
 

Examples for TAGTEXT:

Example 1: Back to Top
<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_METADATA>
      <SEARCH_METADATA operator="and">
        <ENVELOPE minx="-176.98" miny="18.93" maxx="-66.97" maxy="71.35" spatialoperator="within" />
        <TAGVALUE tag="metadata/dataqual/lineage/srcinfo/srccite/citeinfo/pubdate" greaterthan="1990" />
        <FULLTEXT word="cities"/>
        <SEARCH_METADATA operator="or">
          <TAGTEXT tag="metadata/idinfo/citation/citeinfo/geoform" word="data"/>
          <TAGTEXT tag="metadata/idinfo/citation/citeinfo/geoform" word="digital"/>
        </SEARCH_METADATA>
      </SEARCH_METADATA>
    </GET_METADATA>
  </REQUEST>
</ARCXML>