SemanticAspects - renepickhardt/related-work.net GitHub Wiki

we should also use the review ontology http://vocab.org/review/terms.html#

Arxiv Metadata format:

We download all metadata as described in http://arxiv.org/help/oa/index in the oai_dc format.

The schema is defined in http://www.openarchives.org/OAI/2.0/oai_dc.xsd:


<schema targetNamespace="http://www.openarchives.org/OAI/2.0/oai_dc/" 
        xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" 
        xmlns:dc="http://purl.org/dc/elements/1.1/" 
        xmlns="http://www.w3.org/2001/XMLSchema" 
        elementFormDefault="qualified" attributeFormDefault="unqualified">
<annotation>
  <documentation> 
    XML Schema 2002-03-18 by Pete Johnston.
    Adjusted for usage in the OAI-PMH.
    Schema imports the Dublin Core elements from the DCMI schema for unqualified Dublin Core.
    2002-12-19 updated to use simpledc20021212.xsd (instead of simpledc20020312.xsd)
  </documentation>
</annotation>

<import namespace="http://purl.org/dc/elements/1.1/" 
        schemaLocation="http://dublincore.org/schemas/xmls/simpledc20021212.xsd"/>
	
<element name="dc" type="oai_dc:oai_dcType"/>

<complexType name="oai_dcType">
  <choice minOccurs="0" maxOccurs="unbounded">
    <element ref="dc:title"/>
    <element ref="dc:creator"/>
    <element ref="dc:subject"/>
    <element ref="dc:description"/>
    <element ref="dc:publisher"/>
    <element ref="dc:contributor"/>
    <element ref="dc:date"/>
    <element ref="dc:type"/>
    <element ref="dc:format"/>
    <element ref="dc:identifier"/>
    <element ref="dc:source"/>
    <element ref="dc:language"/>
    <element ref="dc:relation"/>
    <element ref="dc:coverage"/>
    <element ref="dc:rights"/>
  </choice>
</complexType>
</schema>

This roughly says the fields:

dc:title, dc:creator, ..., dc:rights

have to be set, and they are imported from the dc ontology.

The schema file for dc can be found at: http://dublincore.org/schemas/xmls/simpledc20021212.xsd

⚠️ **GitHub.com Fallback** ⚠️