-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenlicensing.ttl
432 lines (367 loc) · 16.7 KB
/
openlicensing.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# -----------------------------------------------------------------------
# WARNING: THIS FILE IS AUTOMATICALLY GENERATED - DO NOT EDIT DIRECTLY
# -----------------------------------------------------------------------
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3c.org/2008/skos/> .
@prefix id: <http://openpermissions.org/ns/id/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix geonames: <http://www.geonames.org/ontology#> .
@prefix gn: <http://www.geonames.org/ontology#> .
@prefix iso4217a: <http://cvx.iptc.org/iso4217a/> .
@prefix op: <http://openpermissions.org/ns/op/1.1/> .
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix odrlcc: <https://www.w3.org/community/odrl/work/cc/> .
<http://openpermissions.org/ns/op/1.1/> a owl:Ontology ;
dc:creator "Digital Catapult Software Engineering Team"^^xsd:string;
dc:description "OpenPermissions Extension (ODRL2.1/ OpenPermissions Profile)."^^xsd:string ;
dct:modified "2015-02-22T10:56:00Z"^^xsd:dateTime ;
dct:rights "(C) Digital Catapult Limited 2016"^^xsd:string ;
owl:versionIRI <http://openpermissions.org/ns/op/1.1/> ;
owl:versionInfo "1.1.0"^^xsd:string .
# -----------------------------------------------------------------------
# asset.ttl
# -----------------------------------------------------------------------
op:alsoIdentifiedBy a owl:ObjectProperty ;
dc:description """An Asset may have different identifiers assigned to it.
The identities are not necessarily equivalent even though they have been assigned to the same Asset.
Each identity has a type, such as ISBN or EIDR and the type is semantically defined.
Identities that alsoIdentifiedBy refer to MUST be for the whole Asset and not for part of the Asset.
For example if the Asset is a book, the alsoIdentifiedBy ids will be for the book and NOT for pictures in the book."""@en ;
rdfs:domain op:Asset ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range op:Id .
op:title a owl:DatatypeProperty,
owl:FunctionalProperty ;
dc:description """Title of the Asset for the purpose of presentation to a Licensee."""@en ;
rdfs:domain op:Asset ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:title .
op:Asset a [ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:title ],
[ a owl:Restriction ;
owl:allValuesFrom op:Id ;
owl:onProperty op:alsoIdentifiedBy ],
owl:Class ;
rdfs:label "Asset"^^xsd:string ;
dc:description """An Asset in ODRL is any object referred by a policy.
Here the Asset generally represents the intellectual work.
Only metadata about the Asset that is required for the licensing of the Asset should be defined here."""@en ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:subClassOf odrl:Asset .
# -----------------------------------------------------------------------
# components.ttl
# -----------------------------------------------------------------------
# -----------------------------------------------------------------------
# WARNING: THIS FILE IS AUTOMATICALLY GENERATED - DO NOT EDIT DIRECTLY
# -----------------------------------------------------------------------
# -----------------------------------------------------------------------
# ids.ttl
# -----------------------------------------------------------------------
op:id_type a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:Id ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range op:IdType .
op:value a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:Id ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string .
op:Id a [ a owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty op:value ],
[ a owl:Restriction ;
owl:allValuesFrom op:IdType ;
owl:cardinality 1 ;
owl:onProperty op:id_type ],
owl:Class ;
rdfs:label "Id"^^xsd:string ;
dc:description """
Identifier for an Asset.
"""@en ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> .
op:id_types a skos:ConceptScheme ;
skos:hasTopConcept op:topIdType .
op:topIdType a op:IdType,
skos:Concept ;
skos:inScheme op:id_types ;
skos:name "topIdType"@en .
op:IdType a owl:Class ;
rdfs:label "IdType"^^xsd:string ;
dc:description """
Represents a class of identifiers
"""@en ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> .
# -----------------------------------------------------------------------
# party.ttl
# -----------------------------------------------------------------------
op:name a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:Party ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:name .
op:provider a owl:DatatypeProperty,
owl:FunctionalProperty ;
dc:description """
origanisation_id of the organisation representing the party.
if no value is provider the party is the organisation itself
"""@en ;
rdfs:domain op:Party ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string .
op:reference a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:Party ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:source ;
dc:description """An reference id used by the provider to actually identify the party"""@en .
op:Party a [ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:reference ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:provider ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:name ],
owl:Class ;
rdfs:label "Party"^^xsd:string ;
dc:description """
A party represent:
1. a legal person having duties and permissions as part of agreements.
2. a person known by an organisation (not necessarily providing its real name)
"""@en ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:subClassOf op:Asset,
odrl:Party .
# -----------------------------------------------------------------------
# policy.ttl
# -----------------------------------------------------------------------
op:policyText a owl:DatatypeProperty ;
rdfs:domain op:Policy ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string ;
dc:description """A human readable (natural language) representation of the Policy."""@en .
op:defaultAssignee a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:Policy ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range op:Party ;
dc:description """Implicit default assignee of a rule."""@en .
op:digitalPolicyAuthor a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:Policy ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string ;
dc:description """A field to allow the author of the digital policy - if available this person may be eventually be contacted to obtain information about the policy."""@en .
op:expires a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:Policy ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:dateTime ;
dc:description """Optional expiry date of the policy. The policy is not considered valid after this date."""@en .
op:policyDescription a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:Policy ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:description ;
dc:description """A short description of the policy - usable to give a user rapidly information about the policy."""@en .
op:sharedDuties a owl:ObjectProperty ;
dc:description """Duties that are shared by all Permissions in this policy."""@en ;
rdfs:domain op:Policy ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range odrl:Duty .
op:Policy a [ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:policyDescription ],
[ a owl:Restriction ;
owl:allValuesFrom odrl:Duty ;
owl:onProperty odrl:duty ],
[ a owl:Restriction ;
owl:allValuesFrom op:Party ;
owl:maxCardinality 1 ;
owl:onProperty odrl:assignee ],
[ a owl:Restriction ;
owl:allValuesFrom op:Asset ;
owl:maxCardinality 1 ;
owl:onProperty odrl:target ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:expires ],
[ a owl:Restriction ;
owl:maxCardinality 1 ;
owl:onProperty op:digitalPolicyAuthor ],
[ a owl:Restriction ;
owl:allValuesFrom op:Party ;
owl:maxCardinality 1 ;
owl:onProperty odrl:assigner ],
owl:Class ;
rdfs:label "Policy"^^xsd:string ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:subClassOf odrl:Policy ;
dc:description """An ODRL policy representing an agreement or a potential agreement.
Policy is the central entity that holds an ODRL policy together.
In its encoded form, e.g. in an XML document, it makes the policy addressable from the outside word via its uid attribute.
Policy can refer to Permissions and Prohibitions."""@en .
# -----------------------------------------------------------------------
# set.ttl
# -----------------------------------------------------------------------
op:chosenSequentially a op:AssetSetSamplePolicy,
skos:Concept ;
skos:inScheme op:AssetSetSamplePolicies ;
skos:name "chosenSequentially"@en ;
skos:narrowerThan op:anySamplePolicy ;
dc:description "chosen according to a predefined order"@en .
op:pointingFrom a op:AssetSetEdgeDirection,
skos:Concept ;
skos:inScheme op:AssetSetEdgeDirections ;
skos:name "pointingFrom"@en ;
skos:narrowerThan op:anyEdgeDirection ;
dc:description "Point from the element to the target_object"@en .
op:pointingTo a op:AssetSetEdgeDirection,
skos:Concept ;
skos:inScheme op:AssetSetEdgeDirections ;
skos:name "pointingTo"@en ;
skos:narrowerThan op:anyEdgeDirection ;
dc:description "Point from the target_object to the element"@en .
op:randomlyChosen a op:AssetSetSamplePolicy,
skos:Concept ;
skos:inScheme op:AssetSetSamplePolicies ;
skos:name "randomlyChosen"@en ;
skos:narrowerThan op:anySamplePolicy ;
dc:description "chosen in an arbitrary manner not controller by assignee or assigner"@en .
op:selectedByAssignee a op:AssetSetSamplePolicy,
skos:Concept ;
skos:inScheme op:AssetSetSamplePolicies ;
skos:name "selectedByAssignee"@en ;
skos:narrowerThan op:anySamplePolicy ;
dc:description "chosen by the assignee party"@en .
op:selectedByAssigner a op:AssetSetSamplePolicy,
skos:Concept ;
skos:inScheme op:AssetSetSamplePolicies ;
skos:name "selectedByAssigner"@en ;
skos:narrowerThan op:anySamplePolicy ;
dc:description "chosen by the assigner party"@en .
op:count a owl:DatatypeProperty,
owl:FunctionalProperty ;
dc:description """
Default value is 1.
"""@en ;
rdfs:domain op:AssetSelector ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:integer .
op:edgeDirection a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:AssetSet ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range op:AssetSetEdgeDirection ;
dc:description """Indicates in which direction the predicate is used to connect elements to the set target_object.
Default is op:pointingTo."""@en .
op:fromSet a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:AssetSelector ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range op:AssetSet ;
dc:description """The set asset can be picked from."""@en .
op:hasElement a owl:ObjectProperty ;
rdfs:domain op:AssetSet ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range owl:Thing .
op:predicate a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:AssetSet ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range owl:ObjectProperty ;
dc:description """Indicates which predicate is used to Indicate that element belong to a set."""@en .
op:samplePolicy a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:AssetSelector ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range op:AssetSetSamplePolicy ;
dc:description """The way asset are selected. Default is selected_by_assignee."""@en .
op:selectRequired a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:domain op:AssetSelector ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range xsd:boolean ;
dc:description """True if it is required to select an element on agreement of the policy."""@en .
op:targetObject a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:domain op:AssetSet ;
rdfs:isDefinedBy <http://openpermissions.org/ns/op/1.1/> ;
rdfs:range owl:Thing ;
dc:description """Indicates the entity that the elements must connect to through the predicate in order to be part of the set.
Default is the AssetSet instance itself."""@en .
op:AssetSetEdgeDirections a skos:ConceptScheme ;
skos:hasTopConcept op:anyEdgeDirection .
op:anyEdgeDirection a op:AssetSetEdgeDirection,
skos:Concept ;
skos:inScheme op:AssetSetEdgeDirections ;
skos:name "anyEdgeDirection"@en .
op:AssetSelector a [ a owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty op:selectRequired ],
[ a owl:Restriction ;
owl:allValuesFrom op:AssetSetSamplePolicy ;
owl:cardinality 1 ;
owl:onProperty op:samplePolicy ],
[ a owl:Restriction ;
owl:cardinality 1 ;
owl:onProperty op:count ],
[ a owl:Restriction ;
owl:allValuesFrom op:AssetSet ;
owl:cardinality 1 ;
owl:onProperty op:fromSet ],
owl:Class ;
rdfs:label "AssetSelector"^^xsd:string ;
rdfs:isDefinedBy <http://openlicensing.org/ns/ol/1.1/> ;
rdfs:subClassOf op:Asset ;
dc:description """An asset that is actually sampled from a set.
An AssetSetSample must indicate the set asset must be selected from, may contain a sample policy, and may contain the number of assets that should be sampled."""@en .
op:AssetSetEdgeDirection a owl:Class ;
rdfs:label "AssetSetEdgeDirection"^^xsd:string ;
rdfs:isDefinedBy <http://openlicensing.org/ns/ol/1.1/> ;
dc:description """Indicates if the predicate used to connect the set to its elements, are "pointing to" the elements or "pointing from" the elements """@en .
op:AssetSetSamplePolicies a skos:ConceptScheme ;
skos:hasTopConcept op:anySamplePolicy .
op:anySamplePolicy a op:AssetSetSamplePolicy,
skos:Concept ;
skos:inScheme op:AssetSetSamplePolicies ;
skos:name "anySamplePolicy"@en .
op:AssetSet a [ a owl:Restriction ;
owl:allValuesFrom owl:Thing ;
owl:maxCardinality 1 ;
owl:onProperty op:targetObject ],
[ a owl:Restriction ;
owl:allValuesFrom op:AssetSetEdgeDirection ;
owl:maxCardinality 1 ;
owl:onProperty op:edgeDirection ],
[ a owl:Restriction ;
owl:allValuesFrom owl:Thing ;
owl:onProperty op:hasElement ],
[ a owl:Restriction ;
owl:allValuesFrom owl:ObjectProperty ;
owl:maxCardinality 1 ;
owl:onProperty op:predicate ],
owl:Class ;
rdfs:label "AssetSet"^^xsd:string ;
dc:description """A set defined as the set of element pointing to a target object via a certain predicate."""@en,
"""A set or collection of elements of type elementType"""@en ;
rdfs:isDefinedBy <http://openlicensing.org/ns/ol/1.1/> ;
rdfs:subClassOf op:Asset,
op:AssetSet .
op:AssetSetSamplePolicy a owl:Class ;
rdfs:label "AssetSetSamplePolicy"^^xsd:string ;
rdfs:isDefinedBy <http://openlicensing.org/ns/ol/1.1/> ;
dc:description """Indicates the way sampling from a set is done. """@en .