-
Notifications
You must be signed in to change notification settings - Fork 4
/
dio.owl
1816 lines (1346 loc) · 105 KB
/
dio.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
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?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://www.w3.org/ns/prov#"
xml:base="http://www.w3.org/ns/prov"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://www.w3.org/ns/prov-o#">
<rdfs:label xml:lang="en">W3C PROVenance Interchange Ontology (PROV-O)</rdfs:label>
<owl:versionInfo xml:lang="en">Recommendation version 2013-04-30</owl:versionInfo>
<rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page).
If you wish to make comments regarding this document, please send them to [email protected] (subscribe [email protected], archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome.</rdfs:comment>
<rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-o/"/>
<rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov"/>
<owl:versionIRI rdf:resource="http://www.w3.org/ns/prov-o-20130430"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="&rdfs;comment">
<rdfs:comment xml:lang="en"></rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#isDefinedBy -->
<owl:AnnotationProperty rdf:about="&rdfs;isDefinedBy"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="&rdfs;label">
<rdfs:comment xml:lang="en"></rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#seeAlso -->
<owl:AnnotationProperty rdf:about="&rdfs;seeAlso">
<rdfs:comment xml:lang="en"></rdfs:comment>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2002/07/owl#versionInfo -->
<owl:AnnotationProperty rdf:about="&owl;versionInfo"/>
<!-- http://www.w3.org/ns/prov#aq -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#aq">
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#category -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#category">
<rdfs:comment xml:lang="en">Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#component -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#component">
<rdfs:comment xml:lang="en">Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#constraints -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#constraints">
<rdfs:comment xml:lang="en">A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#definition">
<rdfs:comment xml:lang="en">A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#dm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#dm">
<rdfs:comment xml:lang="en">A reference to the principal section of the PROV-DM document that describes this concept.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#editorialNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorialNote">
<rdfs:comment xml:lang="en">A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#editorsDefinition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorsDefinition">
<rdfs:comment xml:lang="en">When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#definition"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#inverse -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#inverse">
<rdfs:comment xml:lang="en">PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used.</rdfs:comment>
<rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-o/#names-of-inverse-properties"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#n -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#n">
<rdfs:comment xml:lang="en">A reference to the principal section of the PROV-DM document that describes this concept.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#order -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#order">
<rdfs:comment xml:lang="en">The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#qualifiedForm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#qualifiedForm">
<rdfs:comment xml:lang="en">This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it.
Example annotation:
prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .
Then this unqualified assertion:
:entity1 prov:wasGeneratedBy :activity1 .
can be qualified by adding:
:entity1 prov:qualifiedGeneration :entity1Gen .
:entity1Gen
a prov:Generation, prov:Influence;
prov:activity :activity1;
:customValue 1337 .
Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#sharesDefinitionWith -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#sharesDefinitionWith">
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#specializationOf -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#specializationOf"/>
<!-- http://www.w3.org/ns/prov#todo -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#todo"/>
<!-- http://www.w3.org/ns/prov#unqualifiedForm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#unqualifiedForm">
<rdfs:comment xml:lang="en">Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/prov#wasRevisionOf -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#wasRevisionOf"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/ns/prov#actedOnBehalfOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#actedOnBehalfOf">
<rdfs:label>actedOnBehalfOf</rdfs:label>
<component>agents-responsibility</component>
<category>starting-point</category>
<inverse>hadDelegate</inverse>
<rdfs:comment xml:lang="en">An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. </rdfs:comment>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Delegation"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedDelegation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedDelegation"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#agent"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#activity -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#activity">
<rdfs:label>activity</rdfs:label>
<editorsDefinition>The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.</editorsDefinition>
<editorialNote xml:lang="en">This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.</editorialNote>
<category>qualified</category>
<inverse>activityOfInfluence</inverse>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influencer"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#agent -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#agent">
<rdfs:label>agent</rdfs:label>
<category>qualified</category>
<editorsDefinition xml:lang="en">The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.</editorsDefinition>
<editorialNote xml:lang="en">This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.</editorialNote>
<inverse>agentOfInfluence</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influencer"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#alternateOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#alternateOf">
<rdfs:label>alternateOf</rdfs:label>
<constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
<dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate</dm>
<n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate</n>
<component>alternate</component>
<inverse>alternateOf</inverse>
<category>expanded</category>
<definition xml:lang="en">Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.</definition>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#specializationOf"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#atLocation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#atLocation">
<rdfs:label>atLocation</rdfs:label>
<category>expanded</category>
<rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.</rdfs:comment>
<inverse>locationOf</inverse>
<rdfs:comment xml:lang="en">The Location of any resource.</rdfs:comment>
<editorialNote xml:lang="en">The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.</editorialNote>
<editorialNote xml:lang="en">This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).</editorialNote>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Location"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Location"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#entity -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#entity">
<rdfs:label>entity</rdfs:label>
<editorialNote xml:lang="en">This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.</editorialNote>
<inverse>entityOfInfluence</inverse>
<editorsDefinition>The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.</editorsDefinition>
<category>qualified</category>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influencer"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#generated -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#generated">
<rdfs:label>generated</rdfs:label>
<category>expanded</category>
<component>entities-activities</component>
<editorialNote xml:lang="en">prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.</editorialNote>
<inverse>wasGeneratedBy</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influenced"/>
<owl:inverseOf rdf:resource="http://www.w3.org/ns/prov#wasGeneratedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#hadActivity -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadActivity">
<rdfs:label>hadActivity</rdfs:label>
<rdfs:comment xml:lang="en">The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).</rdfs:comment>
<editorialNote xml:lang="en">The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.</editorialNote>
<category>qualified</category>
<rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.</rdfs:comment>
<inverse>wasActivityOfInfluence</inverse>
<component>derivations</component>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Influence"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#Delegation"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#Derivation"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#End"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#Start"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#hadGeneration -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadGeneration">
<rdfs:label>hadGeneration</rdfs:label>
<category>qualified</category>
<component>derivations</component>
<rdfs:comment xml:lang="en">The _optional_ Generation involved in an Entity's Derivation.</rdfs:comment>
<inverse>generatedAsDerivation</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#hadMember -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadMember">
<rdfs:label>hadMember</rdfs:label>
<component>expanded</component>
<inverse>wasMemberOf</inverse>
<category>expanded</category>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Collection"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Collection"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<owl:Axiom>
<dm>http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection</dm>
<rdfs:comment xml:lang="en">A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.</rdfs:comment>
<owl:annotatedProperty rdf:resource="&rdfs;range"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#hadMember"/>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#hadPlan -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadPlan">
<rdfs:label>hadPlan</rdfs:label>
<rdfs:comment xml:lang="en">The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification.</rdfs:comment>
<component>agents-responsibility</component>
<inverse>wasPlanOf</inverse>
<category>qualified</category>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Association"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Plan"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Plan"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#hadPrimarySource -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadPrimarySource">
<rdfs:label>hadPrimarySource</rdfs:label>
<category>expanded</category>
<component>derivations</component>
<inverse>wasPrimarySourceOf</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#PrimarySource"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedPrimarySource"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedPrimarySource"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<owl:Axiom>
<rdfs:comment>hadPrimarySource property is a particular case of wasDerivedFrom (see http://www.w3.org/TR/prov-dm/#term-original-source) that aims to give credit to the source that originated some information.</rdfs:comment>
<owl:annotatedProperty rdf:resource="&rdfs;subPropertyOf"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#hadPrimarySource"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#hadRole -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadRole">
<rdfs:label>hadRole</rdfs:label>
<rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.</rdfs:comment>
<category>qualified</category>
<component>agents-responsibility</component>
<rdfs:comment xml:lang="en">The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].</rdfs:comment>
<inverse>wasRoleIn</inverse>
<editorsDefinition xml:lang="en">prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.</editorsDefinition>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Influence"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Role"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Role"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#Association"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#hadUsage -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadUsage">
<rdfs:label>hadUsage</rdfs:label>
<category>qualified</category>
<rdfs:comment xml:lang="en">The _optional_ Usage involved in an Entity's Derivation.</rdfs:comment>
<component>derivations</component>
<inverse>wasUsedInDerivation</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Usage"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Usage"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#influenced -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#influenced">
<rdfs:label>influenced</rdfs:label>
<inverse>wasInfluencedBy</inverse>
<component>agents-responsibility</component>
<category>expanded</category>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Influence"/>
<owl:inverseOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#influencer -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#influencer">
<rdfs:label>influencer</rdfs:label>
<dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence</dm>
<inverse>hadInfluence</inverse>
<category>qualified</category>
<rdfs:comment xml:lang="en">Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used.</rdfs:comment>
<editorialNote xml:lang="en">This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.</editorialNote>
<editorsDefinition xml:lang="en">This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.</editorsDefinition>
<rdfs:range rdf:resource="&owl;Thing"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Influence"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#invalidated -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#invalidated">
<rdfs:label>invalidated</rdfs:label>
<inverse>wasInvalidatedBy</inverse>
<category>expanded</category>
<component>entities-activities</component>
<editorialNote xml:lang="en">prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.</editorialNote>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influenced"/>
<owl:inverseOf rdf:resource="http://www.w3.org/ns/prov#wasInvalidatedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedAssociation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedAssociation">
<rdfs:label>qualifiedAssociation</rdfs:label>
<rdfs:comment xml:lang="en">If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ].</rdfs:comment>
<inverse>qualifiedAssociationOf</inverse>
<component>agents-responsibility</component>
<category>qualified</category>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Association"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Association"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasAssociatedWith"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedAttribution -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedAttribution">
<rdfs:label>qualifiedAttribution</rdfs:label>
<component>agents-responsibility</component>
<rdfs:comment xml:lang="en">If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ].</rdfs:comment>
<category>qualified</category>
<inverse>qualifiedAttributionOf</inverse>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasAttributedTo"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedCommunication -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedCommunication">
<rdfs:label>qualifiedCommunication</rdfs:label>
<inverse>qualifiedCommunicationOf</inverse>
<component>entities-activities</component>
<rdfs:comment xml:lang="en">If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ].</rdfs:comment>
<category>qualified</category>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Communication"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Communication"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Communication"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedDelegation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedDelegation">
<rdfs:label>qualifiedDelegation</rdfs:label>
<rdfs:comment xml:lang="en">If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ].</rdfs:comment>
<component>agents-responsibility</component>
<inverse>qualifiedDelegationOf</inverse>
<category>qualified</category>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Delegation"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Delegation"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#actedOnBehalfOf"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedDerivation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedDerivation">
<rdfs:label>qualifiedDerivation</rdfs:label>
<component>derivations</component>
<category>qualified</category>
<rdfs:comment xml:lang="en">If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ].</rdfs:comment>
<inverse>qualifiedDerivationOf</inverse>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedEnd -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedEnd">
<rdfs:label>qualifiedEnd</rdfs:label>
<category>qualified</category>
<rdfs:comment xml:lang="en">If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ].</rdfs:comment>
<inverse>qualifiedEndOf</inverse>
<component>entities-activities</component>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#End"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#End"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasEndedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedGeneration -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedGeneration">
<rdfs:label>qualifiedGeneration</rdfs:label>
<component>entities-activities</component>
<inverse>qualifiedGenerationOf</inverse>
<rdfs:comment xml:lang="en">If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ].</rdfs:comment>
<category>qualified</category>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasGeneratedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedInfluence -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedInfluence">
<rdfs:label>qualifiedInfluence</rdfs:label>
<category>qualified</category>
<inverse>qualifiedInfluenceOf</inverse>
<component>derivations</component>
<rdfs:comment xml:lang="en">Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable.</rdfs:comment>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Influence"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Influence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedInvalidation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedInvalidation">
<rdfs:label>qualifiedInvalidation</rdfs:label>
<category>qualified</category>
<inverse>qualifiedInvalidationOf</inverse>
<rdfs:comment xml:lang="en">If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ].</rdfs:comment>
<component>entities-activities</component>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInvalidatedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedPrimarySource -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedPrimarySource">
<rdfs:label>qualifiedPrimarySource</rdfs:label>
<component>derivations</component>
<category>qualified</category>
<rdfs:comment xml:lang="en">If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ].</rdfs:comment>
<inverse>qualifiedSourceOf</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#PrimarySource"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#PrimarySource"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#hadPrimarySource"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedQuotation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedQuotation">
<rdfs:label>qualifiedQuotation</rdfs:label>
<component>derivations</component>
<category>qualified</category>
<rdfs:comment xml:lang="en">If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ].</rdfs:comment>
<inverse>qualifiedQuotationOf</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Quotation"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Quotation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasQuotedFrom"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedRevision -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedRevision">
<rdfs:label>qualifiedRevision</rdfs:label>
<category>qualified</category>
<inverse>revisedEntity</inverse>
<rdfs:comment xml:lang="en">If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ].</rdfs:comment>
<component>derivations</component>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Revision"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Revision"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasRevisionOf"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedStart -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedStart">
<rdfs:label>qualifiedStart</rdfs:label>
<component>entities-activities</component>
<rdfs:comment xml:lang="en">If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ].</rdfs:comment>
<inverse>qualifiedStartOf</inverse>
<category>qualified</category>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Start"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Start"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasStartedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#qualifiedUsage -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedUsage">
<rdfs:label>qualifiedUsage</rdfs:label>
<rdfs:comment xml:lang="en">If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ].</rdfs:comment>
<category>qualified</category>
<component>entities-activities</component>
<inverse>qualifiedUsingActivity</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Usage"/>
<sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Usage"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
<unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#used"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#specializationOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#specializationOf">
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#alternateOf"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#used -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#used">
<rdfs:label>used</rdfs:label>
<category>starting-point</category>
<rdfs:comment xml:lang="en">A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .</rdfs:comment>
<component>entities-activities</component>
<inverse>wasUsedBy</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Usage"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedUsage"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedUsage"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasAssociatedWith -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAssociatedWith">
<rdfs:label>wasAssociatedWith</rdfs:label>
<component>agents-responsibility</component>
<category>starting-point</category>
<rdfs:comment xml:lang="en">An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.</rdfs:comment>
<inverse>wasAssociateFor</inverse>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Association"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedAssociation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedAssociation"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#agent"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasAttributedTo -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAttributedTo">
<rdfs:label>wasAttributedTo</rdfs:label>
<inverse>contributed</inverse>
<rdfs:comment xml:lang="en">Attribution is the ascribing of an entity to an agent.</rdfs:comment>
<category>starting-point</category>
<component>agents-responsibility</component>
<definition xml:lang="en">Attribution is the ascribing of an entity to an agent.</definition>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedAttribution"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedAttribution"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#agent"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<owl:Axiom>
<rdfs:comment>Attribution is a particular case of trace (see http://www.w3.org/TR/prov-dm/#concept-trace), in the sense that it links an entity to the agent that ascribed it.</rdfs:comment>
<definition>IF wasAttributedTo(e2,ag1,aAttr) holds, THEN wasInfluencedBy(e2,ag1) also holds. </definition>
<owl:annotatedProperty rdf:resource="&rdfs;subPropertyOf"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasAttributedTo"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#wasDerivedFrom -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom">
<rdfs:label>wasDerivedFrom</rdfs:label>
<inverse>hadDerivation</inverse>
<category>starting-point</category>
<definition xml:lang="en">A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.</definition>
<rdfs:comment xml:lang="en">The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable.</rdfs:comment>
<component>derivations</component>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedDerivation"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedDerivation"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<owl:Axiom>
<rdfs:comment>Derivation is a particular case of trace (see http://www.w3.org/TR/prov-dm/#term-trace), since it links an entity to another entity that contributed to its existence.</rdfs:comment>
<owl:annotatedProperty rdf:resource="&rdfs;subPropertyOf"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#wasEndedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasEndedBy">
<rdfs:label>wasEndedBy</rdfs:label>
<inverse>ended</inverse>
<category>expanded</category>
<component>entities-activities</component>
<rdfs:comment xml:lang="en">End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity.</rdfs:comment>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#End"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedEnd"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedEnd"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasGeneratedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasGeneratedBy">
<rdfs:label>wasGeneratedBy</rdfs:label>
<category>starting-point</category>
<inverse>generated</inverse>
<component>entities-activities</component>
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Generation"/>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedGeneration"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedGeneration"/>
<rdf:Description rdf:about="http://www.w3.org/ns/prov#activity"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasInfluencedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInfluencedBy">
<rdfs:label>wasInfluencedBy</rdfs:label>
<category>qualified</category>
<component>agents-responsibility</component>
<inverse>influenced</inverse>
<rdfs:comment xml:lang="en">Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.</rdfs:comment>
<editorialNote xml:lang="en">The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .
Subproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.
prov:wasInfluencedBy should not be used without also using one of its subproperties.
</editorialNote>
<rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href="#owl-profile">PROV-O OWL Profile</a>.</rdfs:comment>
<qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Influence"/>