Custom named elements can be used anywhere in the XML. These can be used to provide structure to the metadata in the indexed document.
The following elements generally expect child elements and can include custom elements:
DOCUMENT
_TO_RELATIONSHIP
_FROM_RELATIONSHIP
_RELATIONSHIP
_TO_OBJECT
_FROM_OBJECT
_OBJECT
All other elements ignore all child elements unless explicitly included by _INCLUDE
or _INCLUDE_CHILDREN
, or required by a _JPO
element.
Custom elements can also be used as an alternative to the node_name
attribute. For example:
<_ATTRS node_name="attributes"/>
is equivalent to:
<attributes></ATTRS></attributes>
Note that:
<_TO_RELATIONSHIP node_name="relation" ...>...</_TO_RELATIONSHIP>
is equivalent to:
<_TO_RELATIONSHIP ...><relation>...</relation></_TO_RELATIONSHIP>
Also note that:
<_OBJECT myfield="value" ...>...</_OBJECT>
is equivalent to:
<_OBJECT ...><myfield>value</myfield>...</OBJECT>
|