-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathldp-fedora-mapping.rdf
108 lines (64 loc) · 3.46 KB
/
ldp-fedora-mapping.rdf
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<rdf:RDF xmlns="http://fedora.info/definitions/v4/ldp#"
xml:base="http://fedora.info/definitions/v4/ldp"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<owl:Ontology rdf:about="http://fedora.info/definitions/v4/ldp">
<rdfs:label xml:lang="en">Mapping from Fedora's internal ontology to the Linked Data Platform.</rdfs:label>
<owl:imports rdf:resource="http://fedora.info/definitions/v4/repository#"/>
<owl:imports rdf:resource="http://www.w3.org/ns/ldp#"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://fedora.info/definitions/v4/ldp#hasContainerRepresentation -->
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/ldp#hasContainerRepresentation">
<rdfs:subPropertyOf rdf:resource="http://fedora.info/definitions/v4/ldp#hasRepresentation"/>
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#AnnotatedResource"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/ldp#CompositeContainer"/>
</owl:ObjectProperty>
<!-- http://fedora.info/definitions/v4/ldp#hasRepresentation -->
<owl:ObjectProperty rdf:about="http://fedora.info/definitions/v4/ldp#hasRepresentation">
<rdfs:label xml:lang="en">has representation</rdfs:label>
<rdfs:comment xml:lang="en">Indicates that the subject class is represented via HTTP as the object class.</rdfs:comment>
<rdfs:domain rdf:resource="http://fedora.info/definitions/v4/repository#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/ldp#Resource"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://fedora.info/definitions/v4/repository#Thing -->
<rdf:Description rdf:about="http://fedora.info/definitions/v4/repository#Thing">
<owl:disjointWith rdf:resource="http://www.w3.org/ns/ldp#Resource"/>
</rdf:Description>
<!-- http://www.w3.org/ns/ldp#Resource -->
<rdf:Description rdf:about="http://www.w3.org/ns/ldp#Resource"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://fedora.info/definitions/v4/ldp#hasChild -->
<owl:NamedIndividual rdf:about="http://fedora.info/definitions/v4/ldp#hasChild"/>
<!-- http://fedora.info/definitions/v4/repository#hasChild -->
<owl:NamedIndividual rdf:about="http://fedora.info/definitions/v4/repository#hasChild"/>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->