-
Notifications
You must be signed in to change notification settings - Fork 4
/
case-0.7.1.ttl
16977 lines (15778 loc) · 479 KB
/
case-0.7.1.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
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
# imports: https://ontology.caseontology.org/case/investigation/0.7.1
# imports: https://ontology.caseontology.org/case/vocabulary/0.7.1
# imports: https://ontology.unifiedcyberontology.org/uco/action/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/core/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/identity/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/location/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/marking/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/observable/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/pattern/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/role/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/time/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/tool/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/types/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/uco/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/victim/0.9.1
# imports: https://ontology.unifiedcyberontology.org/uco/vocabulary/0.9.1
@prefix action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix investigation: <https://ontology.caseontology.org/case/investigation/> .
@prefix location: <https://ontology.unifiedcyberontology.org/uco/location/> .
@prefix marking: <https://ontology.unifiedcyberontology.org/uco/marking/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pattern: <https://ontology.unifiedcyberontology.org/uco/pattern/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix role: <https://ontology.unifiedcyberontology.org/uco/role/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix time: <https://ontology.unifiedcyberontology.org/uco/time/> .
@prefix tool: <https://ontology.unifiedcyberontology.org/uco/tool/> .
@prefix types: <https://ontology.unifiedcyberontology.org/uco/types/> .
@prefix victim: <https://ontology.unifiedcyberontology.org/uco/victim/> .
@prefix vocab: <https://ontology.caseontology.org/case/vocabulary/> .
@prefix vocabulary: <https://ontology.unifiedcyberontology.org/uco/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://ontology.caseontology.org/case/case>
a owl:Ontology ;
rdfs:label "case-master"@en ;
rdfs:comment "The Cyber-investigation Analysis Standard Expression (CASE) ontology is a community-developed standard that defines concepts used in a broad range of cyber-investigation domains, including digital forensic science, incident response, counter-terrorism, criminal justice, forensic intelligence, and situational awareness. CASE includes all aspects of the digital forensic process, from evidence-gathering and chain of custody, to generating a final report. The goal is to increase sharing and interoperability of cyber-investigation information among organizations and between forensic analytic tools. CASE aligns with and extends the Unified Cyber Ontology (UCO). The preferred namespace abbreviation for this ontology is: case-master."@en ;
dct:title "Cyber-investigation Analysis Standard Expression (CASE)"@en ;
owl:imports
investigation:0.7.1 ,
vocab:0.7.1 ,
<https://ontology.unifiedcyberontology.org/uco/uco/0.9.1>
;
owl:ontologyIRI <https://ontology.caseontology.org/case/case> ;
owl:versionIRI <https://ontology.caseontology.org/case/case/0.7.1> ;
owl:versionInfo "0.7.1" ;
.
<https://ontology.caseontology.org/case/investigation>
a owl:Ontology ;
rdfs:label "investigation"@en ;
rdfs:comment "This ontology defines key concepts, and their associated properties and relationships, for characterizing cyber-investigations in the broadest range of contexts, including security incidents, criminal investigations, civil and regulatory matters, intelligence operations, international disputes, accident inquiries, policy violations, and others." ;
owl:imports
vocab:0.7.1 ,
action:0.9.1 ,
role:0.9.1
;
owl:ontologyIRI <https://ontology.caseontology.org/case/investigation> ;
owl:versionIRI investigation:0.7.1 ;
.
<https://ontology.caseontology.org/case/vocabulary>
a owl:Ontology ;
rdfs:label "vocabularies"@en ;
owl:ontologyIRI <https://ontology.caseontology.org/case/vocabulary> ;
owl:versionIRI vocab:0.7.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/action>
a owl:Ontology ;
rdfs:label "uco-action"@en ;
rdfs:comment "This ontology defines classes and properties for characterizing actions."@en-US ;
owl:imports
core:0.9.1 ,
location:0.9.1 ,
pattern:0.9.1 ,
types:0.9.1 ,
vocabulary:0.9.1
;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/action> ;
owl:versionIRI action:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/core>
a owl:Ontology ;
rdfs:label "uco-core"@en ;
rdfs:comment "This ontology defines classes and properties that are shared across the various UCO ontologies. At a high-level, the UCO core ontology provides base classes, relationship-oriented classes, content-aggregation classes, and shared classes."@en ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/core> ;
owl:versionIRI core:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/identity>
a owl:Ontology ;
rdfs:label "uco-identity"@en ;
owl:imports
core:0.9.1 ,
location:0.9.1
;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/identity> ;
owl:versionIRI identity:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/location>
a owl:Ontology ;
rdfs:label "uco-location"@en ;
owl:imports core:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/location> ;
owl:versionIRI location:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/marking>
a owl:Ontology ;
rdfs:label "uco-marking"@en ;
rdfs:comment "Data markings represent restrictions, permissions, and other guidance for how data can be used and shared."@en ;
owl:imports core:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/marking> ;
owl:versionIRI marking:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/observable>
a owl:Ontology ;
rdfs:label "uco-observable"@en ;
owl:imports
action:0.9.1 ,
core:0.9.1 ,
identity:0.9.1 ,
location:0.9.1 ,
types:0.9.1 ,
vocabulary:0.9.1
;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/observable> ;
owl:versionIRI observable:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/pattern>
a owl:Ontology ;
rdfs:label "uco-pattern"@en ;
owl:imports core:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/pattern> ;
owl:versionIRI pattern:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/role>
a owl:Ontology ;
rdfs:label "uco-role"@en ;
owl:imports core:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/role> ;
owl:versionIRI role:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/time>
a owl:Ontology ;
rdfs:label "uco-time"@en ;
owl:imports core:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/time> ;
owl:versionIRI time:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/tool>
a owl:Ontology ;
rdfs:label "uco-tool"@en ;
owl:imports core:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/tool> ;
owl:versionIRI tool:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/types>
a owl:Ontology ;
rdfs:label "uco-types"@en ;
owl:imports
core:0.9.1 ,
vocabulary:0.9.1
;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/types> ;
owl:versionIRI types:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/uco>
a owl:Ontology ;
rdfs:label "uco-master"@en ;
owl:imports
action:0.9.1 ,
core:0.9.1 ,
identity:0.9.1 ,
location:0.9.1 ,
marking:0.9.1 ,
observable:0.9.1 ,
pattern:0.9.1 ,
role:0.9.1 ,
time:0.9.1 ,
tool:0.9.1 ,
types:0.9.1 ,
victim:0.9.1 ,
vocabulary:0.9.1
;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/uco> ;
owl:versionIRI <https://ontology.unifiedcyberontology.org/uco/uco/0.9.1> ;
owl:versionInfo "0.9.1" ;
.
<https://ontology.unifiedcyberontology.org/uco/victim>
a owl:Ontology ;
rdfs:label "uco-victim"@en ;
owl:imports role:0.9.1 ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/victim> ;
owl:versionIRI victim:0.9.1 ;
.
<https://ontology.unifiedcyberontology.org/uco/vocabulary>
a owl:Ontology ;
rdfs:label "uco-vocabularies"@en ;
owl:ontologyIRI <https://ontology.unifiedcyberontology.org/uco/vocabulary> ;
owl:versionIRI vocabulary:0.9.1 ;
.
investigation:Attorney
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf role:Role ;
rdfs:label "Attorney"@en ;
rdfs:comment "Attorney is a role involved in preparing, interpreting, and applying law."@en ;
sh:targetClass investigation:Attorney ;
.
investigation:Authorization
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:UcoObject ;
rdfs:label "Authorization"@en ;
rdfs:comment "An authorization is a grouping of characteristics unique to some form of authoritative permission identified for investigative action."@en ;
sh:property
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path core:endTime ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path core:startTime ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path investigation:authorizationType ;
] ,
[
sh:datatype xsd:string ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path investigation:authorizationIdentifier ;
]
;
sh:targetClass investigation:Authorization ;
.
investigation:Examiner
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf role:Role ;
rdfs:label "Examiner"@en ;
rdfs:comment "Examiner is a role involved in providing scientific evaluations of evidence that are used to aid law enforcement investigations and court cases."@en ;
sh:targetClass investigation:Examiner ;
.
investigation:ExaminerActionLifecycle
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf action:ActionLifecycle ;
rdfs:label "ExaminerActionLifecycle"@en ;
rdfs:comment "An examiner action lifecycle is an action pattern consisting of an ordered set of actions or subordinate action-lifecycles performed by an entity acting in a role involved in providing scientific evaluations of evidence that is used to aid law enforcement investigations and court cases."@en ;
sh:targetClass investigation:ExaminerActionLifecylce ;
.
investigation:Investigation
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:ContextualCompilation ;
rdfs:label "Investigation"@en ;
rdfs:comment "An investigation is a grouping of characteristics unique to an exploration of the facts involved in a cyber-relevant set of suspicious activity."@en ;
sh:property
[
sh:class investigation:Authorization ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path investigation:relevantAuthorization ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path core:endTime ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path core:startTime ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path investigation:investigationStatus ;
] ,
[
sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path investigation:focus ;
] ,
[
sh:datatype vocab:InvestigationFormVocab ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path investigation:investigationForm ;
]
;
sh:targetClass investigation:Investigation ;
.
investigation:InvestigativeAction
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf action:Action ;
rdfs:label "InvestigativeAction"@en ;
rdfs:comment "An investigative action is something that may be done or performed within the context of an investigation, typically to examine or analyze evidence or other data."@en ;
sh:property [
sh:class investigation:InvestigativeAction ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path investigation:wasInformedBy ;
] ;
sh:targetClass investigation:InvestigativeAction ;
.
investigation:Investigator
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf role:Role ;
rdfs:label "Investigator"@en ;
rdfs:comment "Investigator is a role involved in coordinating an investigation."@en ;
sh:targetClass investigation:Investigator ;
.
investigation:ProvenanceRecord
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:ContextualCompilation ;
rdfs:label "ProvenanceRecord"@en ;
rdfs:comment "A provenance record is a grouping of characteristics unique to the provenantial (chronology of the ownership, custody or location) connection between an investigative action and a set of observations (items and/or actions) or interpretations that result from it."@en ;
sh:property
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path investigation:exhibitNumber ;
] ,
[
sh:datatype xsd:string ;
sh:minCount "0"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path investigation:rootExhibitNumber ;
]
;
sh:targetClass investigation:ProvenanceRecord ;
.
investigation:Subject
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf role:Role ;
rdfs:label "Subject"@en ;
rdfs:comment "Subject is a role whose conduct is within the scope of an investigation."@en ;
sh:targetClass investigation:Subject ;
.
investigation:SubjectActionLifecycle
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf action:ActionLifecycle ;
rdfs:label "SubjectActionLifecycle"@en ;
rdfs:comment "A subject action lifecycle is an action pattern consisting of an ordered set of multiple actions or subordinate action-lifecycles performed by an entity acting in a role whose conduct may be within the scope of an investigation."@en ;
sh:targetClass investigation:SubjectActionLifecycle ;
.
investigation:VictimActionLifecycle
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf action:ActionLifecycle ;
rdfs:label "VictimActionLifecycle"@en ;
rdfs:comment "A victim action lifecycle is an action pattern consisting of an ordered set of multiple actions or subordinate action-lifecycles performed by an entity acting in a role characterized by its potential to be harmed as a result of a crime, accident, or other event or action."@en ;
sh:targetClass investigation:VictimActionLifecycle ;
.
investigation:authorizationIdentifier
a owl:DatatypeProperty ;
rdfs:label "authorizationIdentifier"@en ;
rdfs:comment "The identifier for a particular authorization (e.g. warrant number)"@en ;
rdfs:range xsd:string ;
.
investigation:authorizationType
a owl:DatatypeProperty ;
rdfs:label "authorizationType"@en ;
rdfs:comment "A label categorizing a type of authorization (e.g. warrant)"@en ;
rdfs:range xsd:string ;
.
investigation:exhibitNumber
a owl:DatatypeProperty ;
rdfs:label "exhibitNumber"@en ;
rdfs:comment "The exhibit number specifies an identifier assigned to a set of objects, unique within the scope of an investigation."@en ;
rdfs:range xsd:string ;
.
investigation:focus
a owl:DatatypeProperty ;
rdfs:label "focus"@en ;
rdfs:comment "Specifies the topical focus of an investigation."@en ;
rdfs:range xsd:string ;
.
investigation:investigationForm
a owl:DatatypeProperty ;
rdfs:label "investigationForm"@en ;
rdfs:comment "A label categorizing a type of investigation (case, incident, suspicious-activity, etc.)"@en ;
rdfs:range vocab:InvestigationFormVocab ;
.
investigation:investigationStatus
a owl:DatatypeProperty ;
rdfs:label "investigationStatus"@en ;
rdfs:comment "A label characterizing the status of an investigation (open, closed, etc.)."@en ;
rdfs:range xsd:string ;
.
investigation:relevantAuthorization
a owl:ObjectProperty ;
rdfs:label "relevantAuthorization"@en ;
rdfs:comment "Specifies an authorization relevant to a particular investigation."@en ;
rdfs:range investigation:Authorization ;
.
investigation:rootExhibitNumber
a owl:DatatypeProperty ;
rdfs:label "rootExhibitNumber"@en ;
rdfs:comment "The root exhibit number specifies a unique identifier assigned to a set of objects at the start of their treatment as part of an investigation. When found on a provenance record that comes after initial investigative treatment, the root exhibit number is a reference to the initial provenance record."@en ;
rdfs:range xsd:string ;
.
investigation:wasDerivedFrom
a owl:ObjectProperty ;
rdfs:label "wasDerivedFrom"@en ;
rdfs:comment "A re-implementation of the wasDerivedFrom property in W3C PROV-O. The definition of this property is '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.' [Ref: https://www.w3.org/TR/prov-o/#wasDerivedFrom]"@en ;
rdfs:domain core:UcoObject ;
rdfs:range core:UcoObject ;
.
investigation:wasInformedBy
a owl:ObjectProperty ;
rdfs:label "wasInformedBy"@en ;
rdfs:comment "A re-implementation of the wasInformedBy property in W3C PROV-O, where an entity is exchanged by two activities, 'one activity using the entity generated by the other'. [Ref: https://www.w3.org/TR/prov-o/#wasInformedBy]"@en ;
rdfs:domain investigation:InvestigativeAction ;
rdfs:range investigation:InvestigativeAction ;
.
vocab:InvestigationFormVocab
a rdfs:Datatype ;
rdfs:subClassOf rdfs:Resource ;
rdfs:label "Investigation Form Vocabulary"@en-US ;
rdfs:comment "Defines an open-vocabulary of investigation forms."@en-US ;
owl:oneOf (
"case"^^vocab:InvestigationFormVocab
"incident"^^vocab:InvestigationFormVocab
"suspicious-activity"^^vocab:InvestigationFormVocab
) ;
.
action:Action
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:UcoObject ;
rdfs:label "Action"@en ;
rdfs:comment "An action is something that may be done or performed."@en ;
sh:property
[
sh:class action:Action ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:subaction ;
] ,
[
sh:class core:UcoObject ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:environment ;
] ,
[
sh:class core:UcoObject ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:performer ;
] ,
[
sh:class core:UcoObject ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:error ;
] ,
[
sh:class core:UcoObject ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:instrument ;
] ,
[
sh:class core:UcoObject ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:object ;
] ,
[
sh:class core:UcoObject ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:participant ;
] ,
[
sh:class core:UcoObject ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:result ;
] ,
[
sh:class location:Location ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:location ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:endTime ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:startTime ;
] ,
[
sh:datatype xsd:nonNegativeInteger ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:actionCount ;
] ,
[
sh:datatype vocabulary:ActionStatusTypeVocab ;
sh:message "Value is outside the default vocabulary ActionStatusTypeVocab." ;
sh:path action:actionStatus ;
sh:severity sh:Info ;
] ,
[
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:or (
[
sh:datatype vocabulary:ActionStatusTypeVocab ;
]
[
sh:datatype xsd:string ;
]
) ;
sh:path action:actionStatus ;
] ,
[
sh:message "Value is not member of the vocabulary ActionStatusTypeVocab." ;
sh:or (
[
sh:datatype vocabulary:ActionStatusTypeVocab ;
sh:in vocabulary:ActionStatusTypeVocab-members ;
]
[
sh:datatype xsd:string ;
]
) ;
sh:path action:actionStatus ;
]
;
sh:targetClass action:Action ;
.
action:ActionArgumentFacet
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:Facet ;
rdfs:label "ActionArgumentFacet"@en ;
rdfs:comment "An action argument facet is a grouping of characteristics unique to a single parameter of an action."@en ;
sh:property
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:argumentName ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:value ;
]
;
sh:targetClass action:ActionArgumentFacet ;
.
action:ActionEstimationFacet
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:Facet ;
rdfs:label "ActionEstimationFacet"@en ;
rdfs:comment "An action estimation facet is a grouping of characteristics unique to decision-focused approximation aspects for an action that may potentially be performed."@en ;
sh:property
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:estimatedCost ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:estimatedEfficacy ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:estimatedImpact ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:objective ;
]
;
sh:targetClass action:ActionEstimationFacet ;
.
action:ActionFrequencyFacet
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf core:Facet ;
rdfs:label "ActionFrequencyFacet"@en ;
rdfs:comment "An action frequency facet is a grouping of characteristics unique to the frequency of occurrence for an action."@en ;
sh:property
[
sh:datatype xsd:decimal ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:rate ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:scale ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:units ;
] ,
[
sh:datatype vocabulary:TrendVocab ;
sh:message "Value is outside the default vocabulary TrendVocab." ;
sh:path action:trend ;
sh:severity sh:Info ;
] ,
[
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:or (
[
sh:datatype vocabulary:TrendVocab ;
]
[
sh:datatype xsd:string ;
]
) ;
sh:path action:trend ;
] ,
[
sh:message "Value is not member of the vocabulary TrendVocab." ;
sh:or (
[
sh:datatype vocabulary:TrendVocab ;
sh:in vocabulary:TrendVocab-members ;
]
[
sh:datatype xsd:string ;
]
) ;
sh:path action:trend ;
]
;
sh:targetClass action:ActionFrequencyFacet ;
.
action:ActionLifecycle
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf action:Action ;
rdfs:label "ActionLifecycle"@en ;
rdfs:comment "An action lifecycle is an action pattern consisting of an ordered set of multiple actions or subordinate action lifecycles."@en ;
sh:property
[
sh:class action:ArrayOfAction ;
sh:maxCount "1"^^xsd:integer ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:phase ;
] ,
[
sh:class core:UcoObject ;
sh:maxCount "0"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:error ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "0"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:endTime ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "0"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:startTime ;
] ,
[
sh:datatype xsd:nonNegativeInteger ;
sh:maxCount "0"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:actionCount ;
] ,
[
sh:datatype vocabulary:ActionStatusTypeVocab ;
sh:maxCount "0"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path action:actionStatus ;
]
;
sh:targetClass action:ActionLifecycle ;
.
action:ActionPattern
a
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf
action:Action ,
pattern:Pattern
;
rdfs:label "ActionPattern"@en ;
rdfs:comment "An action pattern is a grouping of characteristics unique to a combination of actions forming a consistent or characteristic arrangement."@en ;
sh:targetClass action:ActionPattern ;
.
action:ArrayOfAction
a
owl:Class ,
sh:NodeShape
;
rdfs:label "ArrayOfAction"@en ;
rdfs:comment "An array of action is an ordered list of references to things that may be done or performed."@en ;
sh:property [
sh:class action:Action ;
sh:minCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path action:action ;
] ;
sh:targetClass action:ArrayOfAction ;
.
action:action
a owl:ObjectProperty ;
rdfs:label "action"@en ;
rdfs:comment "A characterization of a single action."@en ;
rdfs:range action:Action ;
.
action:actionCount
a owl:DatatypeProperty ;
rdfs:label "actionCount"@en ;
rdfs:comment "The number of times that the action was performed."@en ;
rdfs:range xsd:nonNegativeInteger ;
.
action:actionStatus
a owl:DatatypeProperty ;
rdfs:label "actionStatus"@en ;
rdfs:comment "The current state of the action."@en ;
rdfs:range [
a rdfs:Datatype ;
owl:unionOf (
vocabulary:ActionStatusTypeVocab
xsd:string
) ;
] ;
.
action:argumentName
a owl:DatatypeProperty ;
rdfs:label "argumentName"@en ;
rdfs:comment "The identifying label of an argument."@en ;
rdfs:range xsd:string ;
.
action:endTime
a owl:DatatypeProperty ;
rdfs:label "endTime"@en ;
rdfs:comment "The time at which performance of the action ended."@en ;
rdfs:range xsd:dateTime ;
.
action:environment
a owl:ObjectProperty ;
rdfs:label "environment"@en ;
rdfs:comment "The environment wherein an action occurs."@en ;
rdfs:range core:UcoObject ;
.
action:error
a owl:ObjectProperty ;
rdfs:label "error"@en ;
rdfs:comment "A characterization of the differences between the expected and the actual performance of the action."@en ;
rdfs:range core:UcoObject ;
.
action:estimatedCost
a owl:DatatypeProperty ;
rdfs:label "estimatedCost"@en ;
rdfs:comment "An estimation of the cost if the action is performed."@en ;
rdfs:range xsd:string ;
.
action:estimatedEfficacy
a owl:DatatypeProperty ;
rdfs:label "estimatedEfficacy"@en ;
rdfs:comment "An estimation of the effectiveness of the action at achieving its objective if the action is performed."@en ;
rdfs:range xsd:string ;
.
action:estimatedImpact
a owl:DatatypeProperty ;
rdfs:label "estimatedImpact"@en ;
rdfs:comment "An estimation of the impact if the action is performed."@en ;
rdfs:range xsd:string ;
.
action:instrument
a owl:ObjectProperty ;
rdfs:label "instrument"@en ;
rdfs:comment "The things used to perform an action."@en ;
rdfs:range core:UcoObject ;
.
action:location
a owl:ObjectProperty ;
rdfs:label "location"@en ;
rdfs:comment "The locations where an action occurs."@en ;
rdfs:range location:Location ;
.
action:object
a owl:ObjectProperty ;
rdfs:label "object"@en ;
rdfs:comment "The things that the action is performed on/against."@en ;
rdfs:range core:UcoObject ;
.
action:objective
a owl:DatatypeProperty ;
rdfs:label "objective"@en ;
rdfs:comment "The intended purpose for performing the action."@en ;
rdfs:range xsd:string ;
.
action:participant
a owl:ObjectProperty ;
rdfs:label "participant"@en ;
rdfs:comment "The supporting (non-primary) performers of an action."@en ;
rdfs:range core:UcoObject ;
.
action:performer
a owl:ObjectProperty ;
rdfs:label "performer"@en ;
rdfs:comment "The primary performer of an action."@en ;
rdfs:range core:UcoObject ;
.
action:phase
a owl:ObjectProperty ;
rdfs:subPropertyOf action:subaction ;
rdfs:label "phase"@en ;
rdfs:comment "The ordered set of actions or sub action-lifecycles that represent the action lifecycle."@en ;
rdfs:range action:ArrayOfAction ;
.
action:rate
a owl:DatatypeProperty ;
rdfs:label "rate"@en ;
rdfs:comment "The frequency rate for the occurence of an action."@en ;
rdfs:range xsd:decimal ;
.
action:result
a owl:ObjectProperty ;
rdfs:label "result"@en ;
rdfs:comment "The things resulting from performing an action."@en ;
rdfs:range core:UcoObject ;
.
action:scale
a owl:DatatypeProperty ;
rdfs:label "scale"@en ;
rdfs:comment "The time scale utilized for the frequency rate count for the occurence of an action."@en ;
rdfs:range xsd:string ;
.
action:startTime
a owl:DatatypeProperty ;
rdfs:label "startTime"@en ;
rdfs:comment "The time at which performance of the action began."@en ;
rdfs:range xsd:dateTime ;
.
action:subaction
a owl:ObjectProperty ;
rdfs:label "subaction"@en ;
rdfs:comment "References to other actions that make up part of a larger more complex action."@en ;
rdfs:range action:Action ;
.
action:trend
a owl:DatatypeProperty ;
rdfs:label "trend"@en ;
rdfs:comment "A characterization of the frequency trend for the occurence of an action."@en ;
rdfs:range [
a rdfs:Datatype ;
owl:unionOf (
vocabulary:TrendVocab
xsd:string