Versions Compared

Key

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

...

OpenAIRE4 features depends on Configurable Entities the entities feature on DSpace 7 and it's based on a set of feature and its default configurations. In order to have your repository compliant with OpenAIRE4 guidelines you need to follow some steps:

...

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/registriesentities/openaire4-relationships.xml


 and load  and load the required metadata fields

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

After those steps your repository will have the required fields and entities for the compliancy.

...


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>

...