| 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" content ="liveData | downloadableData | offlineData | staticMapImage | document | application | geographicService | clearinghouse | mapFiles | geographicActivities | 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 | Set to "true" if the dataset has children. | |
| content | Metadata document content type. | |
| docid | 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 | Set to "true" if the document represents a folder. | |
| gnd | URL of a GND file on the server pointing to an ArcIMS service referenced by the metadata document. | |
| index_status | Determines whether a document is indexed for text searches. If an error has occurred while indexing, "indexing error" is returned. | |
| name | Name that identifies the dataset corresponding to the document. | |
| onlink | A string identifying the location of the dataset corresponding to the document. | |
| owner | Name identifying the owner of the metadata document. | |
| private | Set to "false" if the document is viewable by all users. Set to "true" if viewable only by the owner. | |
| refcount | Number of times the document is referenced in the hierarchy. | |
| server | The URL of the Web server containing data or metadata associated with the document, for example, http://mymachine.domain.com. | |
| service | The name of the ArcIMS service containing data or metadata associated with the document. | |
| servicetype | Type of ArcIMS service. | |
| siblings | Set to "true" if the dataset has siblings. | |
| thumbnail | URL of the thumbnail image. | |
| updated | Last date metadata record was updated. Format is YYYY-MM-DD hh:mm:ss. | |
| url | 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> | |