<METADATA_RELATIONSHIP | Attribute Description Table |
(r)fromdocid="string" (r)todocid="string" (r)type="child | sibling | descendant" > No Child Elements </METADATA_RELATIONSHIP > | |
(r): Attribute or child element is required. |
Attribute | Usage |
---|---|
fromdocid | String 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. |
todocid | String used to uniquely identify the child, sibling, or descendant document. The characteristics of the string are the same as for fromdocid. |
type | The type of relationship that exists between the documents:
|
<?xml version="1.0" encoding="UTF8" ?> <ARCXML version="1.1"> <RESPONSE> <METADATA> <METADATA_RELATIONSHIP fromdocid="{6F33BA75-BBA0-4AE2-98D1-43233D8D3187}" todocid="{E5050E25-7026-4861-A507-A8F334B704FF}" type="child" /> <METADATA_RELATIONSHIP fromdocid="{12D367C6-DC74-484D-96FC-B7B1F4CFF290}" todocid="{90DE76FF-6467-4C0C-99FD-BAD39EE58343}" type="sibling" /> <METADATA_RELATIONSHIP fromdocid="{6F33BA75-BBA0-4AE2-98D1-43233D8D3187}" todocid="{90DE76FF-6467-4C0C-99FD-BAD39EE58343}" type="descendant" /> </METADATA> </RESPONSE> </ARCXML> |