The _SELECTS
element is used to extract selectable attributes of an object or relationship, and insert the values of the attributes into the document metadata. The attributes to select are specified by populating the element with a comma separated list of attribute names (see Example).
Attribute | Description |
---|---|
node_name
|
The name of the metadata field to contain the attribute values. If When If |
name_attr
|
The name of the XML metadata attribute to contain the selected attribute name. |
The following XML can be used in the DocumentsXML
file:
<DOCUMENT ...> <selectables> <_SELECTS node_name="select" name_attr="name"/>id,description</SELECTS> </selectables> </DOCUMENT>
Result
The following XML is created in the indexed document:
<selectables> <select name="id">14.70.369.258</select> <select name="description">something</select> </selectables>
|