Element name |
Relation |
---|---|
DCMI definition |
The reference to a related resource. |
Usage |
Optional |
Usage instruction |
Recommended best practice is to reference the resource by means of a string or number conforming to a formal identification system. The DC element 'relation' can be used to indicate different kinds of relations between several metadata records. If relations between metadata records are made visible by using metadata the following holds for the distinction between versions (author version and publisher version, preprint, postprint, etc.):
|
Do not confuse with |
dc:identifier and dc:source. |
Examples |
<dc:relation>http://hdl.handle.net/10 </dc:relation> <!-- The value of dc:relation is the identifer of the other document. --> <!-- Linking two documents: The submittedVersion and the acceptedVersion of an article are related to each other. The submittedVersion has identifier "http://hdl.handle.net/10" The acceptedVersion has identifier "http://hdl.handle.net/20" Both are related by the dc:relation element --> <!-- Document A: --> <dc:type>info:eu-repo/semantics/submittedVersion</dc:type> <dc:identifier>http://hdl.handle.net/10</dc:identifier> <dc:relation>http://hdl.handle.net/20</dc:relation> <!-- Document B: --> <dc:type>info:eu-repo/semantics/acceptedVersion</dc:type> <dc:identifier>http://hdl.handle.net/20</dc:identifier> <dc:relation>http://hdl.handle.net/10</dc:relation> |