Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To load OpenAIRE Entities model you must firstly run the following:

Code Block
titleitem-submission.xmlloading openaire entity-relationships model
[/dspace]/bin/dspace initialize-entities -f [/dspace]/config/registries/openaire4-relationships.xml

...

 and load the required fields

Code Block
titleitem-submission.xmlloading openaire registries
[/dspace]/bin/dspace registry-loader -metadata [/dspace]/config/registries/openaire4-types.xml 
[/dspace]/bin/dspace registry-loader -metadata [/dspace]/config/registries/datacite-types.xml

...


This additional virtual metadata will enable to represent something like this in this XML in the oai_openaire metadata format, where you have, for instance, author identifiers:

Code Block
titleitem-submission.xmloai datacite:creators example
<datacite:creators>
 <datacite:creator>
   <datacite:creatorName>Evans, R.J.</datacite:creatorName>
   <datacite:affiliation>Institute of Science and Technology</datacite:affiliation>
   <datacite:nameIdentifier nameIdentifierScheme="ORCID" schemeURI="http://orcid.org"> 1234-1234-1234-1234 </datacite:nameIdentifier>
 </datacite:creator> 
</datacite:creators>

...