forked from IDLabResearch/montolo-voc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlovcube.owl
227 lines (165 loc) · 9.65 KB
/
lovcube.owl
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
@prefix : <https://w3id.org/lovcube/ns/lovcube#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@base <https://w3id.org/lovcube/ns/lovcube> .
<https://w3id.org/lovcube/ns/lovcube#> rdf:type owl:Ontology ;
vann:preferredNamespacePrefix "lovc" ;
vann:preferredNamespaceUri "https://w3id.org/lovcube/ns/lovcube#" ;
rdfs:label "LOVCube vocabulary"@en ;
dct:title "LOVCube vocabulary"@en ;
dct:description "The LOVCube vocabulary"@en ;
rdfs:comment """-Version 0.2.0: added expression and human-readable documentation
-Version 0.1.0: creation."""@en ;
owl:versionIRI <https://w3id.org/lovcube/ns/lovcube/v0.2.0> ;
owl:priorVersion <https://w3id.org/lovcube/ns/lovcube/v0.1.0> ;
owl:versionInfo "0.2.0" ;
rdfs:seeAlso <https://w3id.org/lovcube> ;
dct:modified "2019-04-12"^^xsd:date ;
dct:issued "2019-04-12"^^xsd:date ;
dct:created "2018-12-10"^^xsd:date ;
dct:rights "Copyright © Ghent University – imec – IDLab"@en ;
cc:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
foaf:primaryTopic <https://w3id.org/lovcube> ;
dct:creator <https://sven-lieber.org/profile#me> ;
dct:contributor <http://ben.de-meester.org/#me> ;
dct:contributor [ foaf:name "Anastasia Dimou"@en ;
rdf:type foaf:Person ;
foaf:mbox "mailto:[email protected]"
] ;
.
<https://sven-lieber.org/profile#me> rdf:type foaf:Person ;
foaf:mbox "mailto:[email protected]" ;
foaf:name "Sven Lieber"@en .
<https://ben.de-meester.org/#me> rdf:type foaf:Person ;
foaf:mbox "mailto:[email protected]" ;
foaf:name "Ben De Meester"@en .
#################################################################
# Annotation properties
#################################################################
### http://xmlns.com/foaf/0.1/mbox
foaf:mbox rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/name
foaf:name rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/lovcube/ns/lovcube#detectsRestrictionTypeExpression
:detectsRestrictionTypeExpression rdf:type owl:ObjectProperty ;
rdfs:domain :RestrictionTypeDetector ;
rdfs:range :RestrictionTypeExpression .
### https://w3id.org/lovcube/ns/lovcube#hasRestrictionTypeDefinition
:hasRestrictionTypeDefinition rdf:type owl:ObjectProperty ;
rdfs:domain :RestrictionType ;
rdfs:range :RestrictionTypeDefinitionVersion .
#################################################################
# Classes
#################################################################
### http://purl.org/linked-data/cube#DataSet
qb:DataSet rdf:type owl:Class .
### http://purl.org/linked-data/cube#DimensionProperty
qb:DimensionProperty rdf:type owl:Class .
### http://purl.org/linked-data/cube#MeasureProperty
qb:MeasureProperty rdf:type owl:Class .
### http://purl.org/linked-data/cube#Observation
qb:Observation rdf:type owl:Class .
### http://purl.org/vocab/frbr/core#Expression
frbr:Expression rdf:type owl:Class .
### http://purl.org/vocab/frbr/core#Work
frbr:Work rdf:type owl:Class .
### http://purl.org/vocommons/voaf#Vocabulary
voaf:Vocabulary rdf:type owl:Class .
### http://www.w3.org/ns/prov#Entity
prov:Entity rdf:type owl:Class .
### http://xmlns.com/foaf/0.1/Person
foaf:Person rdf:type owl:Class .
### https://w3id.org/lovcube/ns/lovcube#Dataset
:Dataset rdf:type owl:Class ;
rdfs:subClassOf qb:DataSet ,
prov:Entity .
### https://w3id.org/lovcube/ns/lovcube#RestrictionType
:RestrictionType rdf:type owl:Class ;
rdfs:subClassOf frbr:Work ,
prov:Entity ;
rdfs:comment "A certain type of restriction, which can be an axiom or a constraint. One example is the restriction type 'disjoint classes'."@en ;
rdfs:label "" ,
"Restriction Type"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeDefinition
:RestrictionTypeDefinition rdf:type owl:Class ;
rdfs:subClassOf frbr:Work ,
prov:Entity ;
rdfs:label "Restriction Type Definition"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeDefinitionVersion
:RestrictionTypeDefinitionVersion rdf:type owl:Class ;
rdfs:label "Restriction Type Definition Version"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeDetector
:RestrictionTypeDetector rdf:type owl:Class ;
rdfs:label "Restriction Type Detector"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeExpression
:RestrictionTypeExpression rdf:type owl:Class ;
rdfs:subClassOf qb:DimensionProperty ,
frbr:Expression ,
prov:Entity ;
rdfs:comment "One possible expression of a restriction type. One example might be the expression 'owl:disjointWith' for the restriction type 'disjoint classes'."@en ;
rdfs:label "Restriction Type Expression"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeExpressionDetector
:RestrictionTypeExpressionDetector rdf:type owl:Class ;
rdfs:subClassOf frbr:Work ,
prov:Entity ;
rdfs:comment "A piece of software which is able to detect a certain restriction type expression."@en ;
rdfs:label "Restriction Type Expression Detector"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeExpressionDetectorVersion
:RestrictionTypeExpressionDetectorVersion rdf:type owl:Class ;
rdfs:subClassOf qb:MeasureProperty ,
frbr:Expression ,
prov:Entity ;
rdfs:comment "A concrete version of a restriction type expression detector."@en ;
rdfs:label "Restriction Type Expression Detector Version"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeMeasure
:RestrictionTypeMeasure rdf:type owl:Class ;
rdfs:subClassOf qb:MeasureProperty ,
prov:Entity ;
rdfs:label "Restriction Type Measure"@en .
### https://w3id.org/lovcube/ns/lovcube#RestrictionTypeStatistic
:RestrictionTypeStatistic rdf:type owl:Class ;
rdfs:subClassOf qb:Observation ,
prov:Entity ;
rdfs:label "Restriction Type Statistic"@en .
#################################################################
# Individuals
#################################################################
### https://w3id.org/lovcube/ns/lovcube
<https://w3id.org/lovcube/ns/lovcube> rdf:type owl:NamedIndividual ,
voaf:Vocabulary .
[ rdf:type foaf:Person ;
foaf:mbox "mailto:[email protected]" ;
foaf:name "Anastasia Dimou"@en
] .
[ rdf:type foaf:Person ;
foaf:mbox "mailto:[email protected]" ;
foaf:name "Anastasia Dimou"@en
] .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointClasses ;
owl:members ( :RestrictionType
:RestrictionTypeDefinition
:RestrictionTypeExpression
:RestrictionTypeExpressionDetector
:RestrictionTypeExpressionDetectorVersion
:RestrictionTypeMeasure
:RestrictionTypeStatistic
)
] .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi