DELETED_RELATIONSHIP

Used in

RESPONSE  

Servers

Metadata (Browse)  

Parent elements

METADATA 

Syntax

<DELETED_RELATIONSHIPAttribute Description Table
     (r)fromdocid="string"
     (r)todocid="string"
     (r)type="child | sibling"
>

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

Description

Describes a relationship between a source metadata document and a child or sibling metadata document that no longer exists the metadata repository.

Notes


Attribute Descriptions for DELETED_RELATIONSHIP

AttributeUsage
fromdocidString used to uniquely identify the parent 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.
todocidString used to uniquely identify the child or sibling document. The characteristics of the string are the same as for fromdocid.
typeThe type of relationship that was deleted:
  • "child": A parent-child relationship. The document todocid was a child of the parent document fromdocid. The parent Metadata Service or folder no longer contains the child document.
  • "sibling": A sibling relationship. The document todocid was a sibling of the parent document fromdocid. When looking at the Details page in Metadata Explorer for the parent document, a link to the sibling document no longer appears under the heading "Related Documents".
Back to top 

Examples for DELETED_RELATIONSHIP

<?xml version="1.0" encoding="UTF8" ?>
<ARCXML version="1.1">
  <RESPONSE>
    <METADATA>
      <DELETED_RELATIONSHIP fromdocid="{6F33BA75-BBA0-4AE2-98D1-43233D8D3187}" todocid="{690796BF-CCAB-4787-98AB-FDF0FCBC1E3D}" type="child"/>
      <DELETED_RELATIONSHIP fromdocid="{90DE76FF-6467-4C0C-99FD-BAD39EE58343}" todocid="{690796BF-CCAB-4787-98AB-FDF0FCBC1E3D}" type="sibling" />
    </METADATA>
  </RESPONSE>
</ARCXML>

Back to top