An IDREF type attribute is a reference to some other element with a type identifier attribute.
An attribute of type IDREFS is a list of links to elements with identifier attributes, separated by spaces.
Example:
You create a family tree. Each person has 2 parents, a mother and a father. This is indicated by IDREFS as follows:
<person person_id="e10001" parent_id="e10002 e10003">
from
<!ATTLIST person person_id ID #REQUIRED parent_id IDREFS #IMPLIED>
source share