METADATA_DATASET | Examples |
<METADATA_DATASET | Attribute
Description Table |
children ="true | false" docid ="string" folder ="true | false" index_status ="indexed | not indexed | indexing error" name ="string" owner ="string" private ="true | false" refcount ="integer" siblings ="true | false" timestamp ="string" content ="liveData | downloadableData | offlineData | staticMapImage | document | application | geographicService | clearinghouse | unknown" gnd ="string" onlink ="string" server ="string" service ="string" servicetype ="metadata | image | feature | wms" thumbnail ="string" updated ="string" url ="string" > <ENVELOPE... /> </METADATA_DATASET > | |
Bold: Attribute or child element is
required. |
Attribute | Usage | Back to Top |
---|---|---|
children | 1 Set to "true" if the dataset has children. | |
content | 2 Metadata document content type. | |
docid | 3 String used to uniquely identify a
document. The client used to publish the metadata is responsible for
creating the document ID. This ID is automatically assigned when using
ArcCatalog. If another client is used, GET_UUID can be used to
request a valid ID. The format for an ID is the
following: {HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH} where H is a hexadecimal digit (0-9,a-f,A-F). The ID is limited to 38 characters. | |
folder | 4 Set to "true" if the document represents a folder. | |
gnd | 5 URL of a GND file on the server pointing to an ArcIMS service referenced by the metadata document. | |
index_status | 6 Determines whether a document is indexed for text searches. If an error has occurred while indexing, "indexing error" is returned. | |
name | 7 Name that identifies the dataset corresponding to the document. | |
onlink | 8 A string identifying the location of the dataset corresponding to the document. | |
owner | 9 Name identifying the owner of the metadata document. | |
private | 10 Set to "false" if the document is viewable by all users. Set to "true" if viewable only by the owner. | |
refcount | 11 Number of times the document is referenced in the hierarchy. | |
server | 12 The URL of the Web server containing data or metadata associated with the document, for example, http://mymachine.domain.com. | |
service | 13 The name of the ArcIMS service containing data or metadata associated with the document. | |
servicetype | 14 Type of ArcIMS service. | |
siblings | 15 Set to "true" if the dataset has siblings. | |
thumbnail | 16 URL of the thumbnail image. | |
timestamp | 17 Date and time of last insertion or update into the metadata repository. | |
updated | 18 Last date metadata record was updated. Format is YYYY-MM-DD hh:mm:ss. | |
url | 19 URL of the XML document being retrieved. |
Example 1: Includes the "custom attribute" called Approved | Back to Top |
<?xml version="1.0"
encoding="UTF8" ?> <ARCXML version="1.1"> <RESPONSE> <METADATA numresults="1" startresult="0" total="1"> <METADATA_DATASET name="metadata" owner="author" docid="{CD4AEFEF-896E-45EC-9A7E-EEBA823370C5}" content="unknown" url="http://mymachine.domain.com/output/OracleMetadata_P375_T437_D18.xml" children="true" siblings="false" private="false" folder="true" index_status="indexed" refcount="1" updated="2002-02-11 14:51:14" Approved="Y" > <ENVELOPE minx="-141.001235918609" miny="41.3912889520516" maxx="-71.2933350698463" maxy="68.6637039277661" /> </METADATA_DATASET> </METADATA> </RESPONSE> </ARCXML> |