forked from Rel-incode/ric-ontology
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ric.ttl
executable file
·391 lines (223 loc) · 16.8 KB
/
ric.ttl
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
@prefix : <https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix cop: <https://github.com/Rel-incode/cop/blob/master/cop.owl#> .
@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 prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@base <https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#> .
<https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#> rdf:type owl:Ontology ;
dct:license <http://creativecommons.org/licenses/by/4.0/> ;
dct:creator "Cristiana Santos" ;
dct:date "2016-08-31" ;
owl:versionInfo "1.0.3" ;
dct:rights "This ontology is distributed under a Creative Commons CC-BY 4.0 license - https://creativecommons.org/licenses/by/4.0/" ;
dct:contributor "Victor Rodriguez" ;
dct:language "en" ;
rdfs:comment "This ontology is a framework for representing relevant, legal information in a domain-neutral manner" ;
dct:contributor "Pompeu Casanovas" ;
dc:description "This ontology is a framework for representing relevant, legal information in a domain-neutral manner..." ;
vann:preferredNamespacePrefix "ric" ;
dct:title "Ontology of Relevant Legal Information in Consumer Disputes"@en ;
vann:preferredNamespaceUri "https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#" ;
dct:created "2016-01-28" .
#################################################################
#
# Annotation properties
#
#################################################################
### http://www.w3.org/2004/02/skos/core#closeMatch
skos:closeMatch rdf:type owl:AnnotationProperty .
#################################################################
#
# Object Properties
#
#################################################################
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#hasConstraint
:hasConstraint rdf:type owl:ObjectProperty ;
rdfs:domain :Right ;
rdfs:range :Constraint .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#hasEnforcementProcedure
:hasEnforcementProcedure rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Obligation
:Prohibition
:Right
)
] ;
rdfs:range :EnforcementProcedure .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#hasException
:hasException rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Right ;
rdfs:range :Exception .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#hasLegalSource
:hasLegalSource rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :EnforcementProcedure
:Exception
:FurtherInterpretation
:Obligation
:Prohibition
:Requisite
:Right
)
] ;
rdfs:range :LegalSource ;
rdfs:label "has legal source" ;
skos:closeMatch dct:source .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#hasRequisite
:hasRequisite rdf:type owl:ObjectProperty ;
rdfs:domain :Right ;
rdfs:range :Requisite .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#hasTypeOfIncident
:hasTypeOfIncident rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Incident ;
rdfs:label "has type of incident" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#isTriggeredBy
:isTriggeredBy rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Obligation
:Prohibition
:Right
)
] ;
rdfs:range :Incident ;
rdfs:label "is triggered by" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#reportedIn
:reportedIn rdf:type owl:ObjectProperty ;
rdfs:domain :Incident ;
rdfs:range <http://github.com/Rel-incode/cop/blob/master/cop.owl#Complaint> ;
rdfs:label "is reported in" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#subjectTo
:subjectTo rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Obligation
:Prohibition
:Right
)
] ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Constraint
:Exception
:FurtherInterpretation
)
] ;
rdfs:label "subject to" .
#################################################################
#
# Classes
#
#################################################################
### http://github.com/Rel-incode/cop/blob/master/cop.owl#Complaint
<http://github.com/Rel-incode/cop/blob/master/cop.owl#Complaint> rdf:type owl:Class .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Constraint
:Constraint rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
] ;
rdfs:comment "Limitations to the exercise of the legal right, conveyed in hard or soft law" ;
rdfs:label "Constraint" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#EnforcementProcedure
:EnforcementProcedure rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
] ;
rdfs:comment "Consist in procedures to enforce the legal rights, such as handling complaint procedures and filling a claim in court procedures" ;
rdfs:label "Enforcement Procedure" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Exception
:Exception rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
] ;
rdfs:comment "Excluding facts or norms to the entitlement of the right" ;
rdfs:label "Exception" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#FurtherInterpretation
:FurtherInterpretation rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
] ;
rdfs:comment "Additional relevant information related to the legal right" ;
rdfs:label "Further Interpretation" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Incident
:Incident rdf:type owl:Class ;
rdfs:comment """Incidents are events, wich are \"certain useful and relevant patterns of world changes\", An Ontology for Describing Security Events, H Fani, E Bagheri
Mapped to Event Ontology""" ;
rdfs:label "Incident" ;
skos:closeMatch prov:Activity .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#LegalSource
:LegalSource rdf:type owl:Class ;
rdfs:comment "Any fact that embeds normative propositions and makes them legally valid by virtue of such an embedment. SARTOR, Giovanni, Fundamental Legal Concepts: A Formal and Teleological Characterisation, European University Institute,EUI LAW; 2006/11" ;
rdfs:label "Legal Source" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Obligation
:Obligation rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
]
[ rdf:type owl:Restriction ;
owl:onProperty :hasRequisite ;
owl:someValuesFrom :Requisite
]
[ rdf:type owl:Restriction ;
owl:onProperty :isTriggeredBy ;
owl:someValuesFrom :Incident
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "’The proposition expressing the obligation to perform a certain action is true whenever optimal practical cognition would lead one to have the intention of accomplishing that action" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Prohibition
:Prohibition rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
]
[ rdf:type owl:Restriction ;
owl:onProperty :hasRequisite ;
owl:someValuesFrom :Requisite
]
[ rdf:type owl:Restriction ;
owl:onProperty :isTriggeredBy ;
owl:someValuesFrom :Incident
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "A legal restriction against the use of something or against certain conduct, described in a legal norm" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Requisite
:Requisite rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
] ;
rdfs:comment "Legal requirements for the rights to be entitled" ;
rdfs:label "Requisite" .
### https://raw.githubusercontent.com/Rel-incode/ric-ontology/master/ric.owl#Right
:Right rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :hasLegalSource ;
owl:someValuesFrom :LegalSource
]
[ rdf:type owl:Restriction ;
owl:onProperty :hasRequisite ;
owl:someValuesFrom :Requisite
]
) ;
rdf:type owl:Class
] ;
rdfs:comment """\"A legal position by which an Agent is entitled to obtain something from another Agent , under specified circumstances, through an enforcement explicited either in a Law, Contract , etc.\", http://www.loa-cnr.it/ontologies/CLO/CoreLegal.owl
Rights \"are a social advantage (Bentham), a free choice (Hart), or a protected interest (MacCormick); it justifies the imposition of duties, the entitlement of claims and privileges, the transfer of powers. In this wide sense, it includes subjective rights. In the strict sense, it is, according to the Hofheldian definition, correlative of Duty and better expressed by Claim, which is a subclass of Legal Right\"
A. Gangemi, M.-T. Sagri, and D. Tiscornia, A Constructive Framework for Legal Ontologies, Law and the Semantic Web, Volume 3369 of the series Lecture Notes in Computer Science pp 97-124. p. 112.""" ;
rdfs:label "Right" .
### Generated by the OWL API (version 4.2.1.20160306-0033) https://github.com/owlcs/owlapi