I am changing my OAI Data Provider from jOAI to DSpace. My expectation was that I could easily import the metadata, which is available as XML, into DSpace. But this seems not to be the case. I always get the error message
Unknown metadata schema in heading
My XML File looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<olac:olac xmlns:olac="http://www.language-archives.org/OLAC/1.1/"
           xmlns="http://purl.org/dc/elements/1.1/"
           xmlns:dcterms="http://purl.org/dc/terms/"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.language-archives.org/OLAC/1.1/
                http://www.language-archives.org/OLAC/1.1/olac.xsd">
  <title>My Title</title>
  <creator>Project</creator>
  <subject>My Subject</subject>
  <language xsi:type="olac:language" olac:code="de">German</language>
  <description>A lot of text</description>
  <publisher>Pub</publisher>
  <format>XML/TEI</format>
  <date>2016-10-07</date>
  <coverage></coverage>
  <identifier>https://github.com/MyProject/identifier>
  <type>Text</type>
  <rights>The original documents are in the public domain. XML/TEI documents are available for non-commercial users (CLARIN PUB+ID+BY+NC+LRT+NORED+ND+DEP+SA)</rights>
</olac:olac>
This worked for me in the past. Unfortunately I can not find any good description how the files should be structured.
Any help?
Regards SimGeh