ADD_RELEVANCE_FEEDBACK

Used in

REQUEST  

Servers

Metadata (Publish)  

Parent elements

PUBLISH_METADATA 

Syntax

<ADD_RELEVANCE_FEEDBACKAttribute Description Table
     (r)docid="string"
     (r)relevance="1 - 10"
>

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

Description

Increments the relevance value of a metadata document.

Restrictions


Notes


Attribute Descriptions for ADD_RELEVANCE_FEEDBACK

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.
relevanceValue between 1 and 10 indicating the relative relevance of the document to the client. The value is added to the existing value for a new relevance total.
Back to top 

Examples for ADD_RELEVANCE_FEEDBACK

<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <PUBLISH_METADATA>
      <ADD_RELEVANCE_FEEDBACK docid="{7D99B65C-3F47-49AC-9E78-652B76943BDF}" relevance="3"/>
    </PUBLISH_METADATA>
  </REQUEST>
</ARCXML>

Back to top