-
Notifications
You must be signed in to change notification settings - Fork 5
/
umlToXsdDataTypes.xml
48 lines (44 loc) · 1.22 KB
/
umlToXsdDataTypes.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<mappings xmlns="http://publications.europa.eu/ns/">
<!-- epo prefixed datatypes -->
<mapping>
<from qname="epo:Indicator"/>
<to qname="xsd:boolean"/>
</mapping>
<mapping>
<from qname="epo:Date"/>
<to qname="xsd:date"/>
</mapping>
<mapping>
<from qname="epo:DateTime"/>
<to qname="xsd:dateTime"/>
</mapping>
<mapping>
<from qname="epo:Numeric"/>
<to qname="xsd:decimal"/>
</mapping>
<mapping>
<from qname="epo:Text"/>
<to qname="rdfs:Literal"/>
</mapping>
<mapping>
<from qname="epo:Time"/>
<to qname="xsd:time"/>
</mapping>
<mapping>
<from qname="epo:URI"/>
<to qname="xsd:anyURI"/>
</mapping>
<mapping>
<from qname="epo:Integer"/>
<to qname="xsd:integer"/>
</mapping>
<mapping>
<from qname="epo:Code"/>
<to qname="skos:Concept"/>
</mapping>
<!-- end of section -->
<!-- XSD datatypes -->
<!-- no mapping necessary as they are already defined in xsdAndRdfDataTypes.xml as the valid set of OWL2 datatypes in -->
<!-- end of section -->
</mappings>