METADATA_SOURCE

Used in

REQUEST  

Servers

Metadata (Publish)  

Parent elements

DELETE_METADATA_RELATIONSHIP  PUT_METADATA_RELATIONSHIP 

Syntax

<METADATA_SOURCEAttribute Description Table
     (r)docid="string"
>

     No Child Elements
</METADATA_SOURCE >
(r): Attribute or child element is required.

Description

Identifies the source, or "from", document in the relationship.

Notes


Attribute Descriptions for METADATA_SOURCE

AttributeUsage
docidString 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.
Back to top 

Examples for METADATA_SOURCE

<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <PUBLISH_METADATA>
      <PUT_METADATA_RELATIONSHIP>
        <METADATA_SOURCE docid="{C64D8F38-82B4-11D5-99C2-000086460FA0}" />
        <METADATA_CHILD docid="{F99A8C01-76B3-62E5-12G4-056786460CA0}" />
      </PUT_METADATA_RELATIONSHIP>
    </PUBLISH_METADATA>
  </REQUEST>
</ARCXML>

Back to top