1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified"
|
3
|
xmlns:dri="http://www.driver-repository.eu/namespace/dri" xmlns="http://namespace.openaire.eu/oaf"
|
4
|
targetNamespace="http://namespace.openaire.eu/oaf">
|
5
|
|
6
|
<xs:annotation>
|
7
|
<xs:documentation>This schema describes the OpenAIRE+ entities.</xs:documentation>
|
8
|
</xs:annotation>
|
9
|
|
10
|
<xs:include schemaLocation="oaf-result-0.1.xsd"/>
|
11
|
<xs:include schemaLocation="oaf-person-0.1.xsd"/>
|
12
|
<xs:include schemaLocation="oaf-org-0.1.xsd"/>
|
13
|
<xs:include schemaLocation="oaf-datasource-0.1.xsd"/>
|
14
|
<xs:include schemaLocation="oaf-project-0.1.xsd"/>
|
15
|
|
16
|
<xs:element name="entity">
|
17
|
<xs:complexType>
|
18
|
<xs:choice>
|
19
|
<xs:element ref="result">
|
20
|
<xs:annotation>
|
21
|
<xs:documentation>Entity of type result are publications and datasets</xs:documentation>
|
22
|
</xs:annotation>
|
23
|
</xs:element>
|
24
|
<xs:element ref="person"/>
|
25
|
<xs:element ref="organization"/>
|
26
|
<xs:element ref="datasource"/>
|
27
|
<xs:element ref="project"/>
|
28
|
</xs:choice>
|
29
|
</xs:complexType>
|
30
|
</xs:element>
|
31
|
|
32
|
</xs:schema>
|