-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase.ttl
3612 lines (2515 loc) · 113 KB
/
case.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
@prefix : <http://case.example.org/core#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix olo: <http://purl.org/ontology/olo/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix exif: <http://www.kanzaki.com/ns/exif#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://case.example.org/core> .
<http://case.example.org/core> rdf:type owl:Ontology ;
owl:versionInfo "version_info" ;
owl:priorVersion 0.0 ;
owl:versionInfo "0.1"^^xsd:string ;
dc:title "Cyber-investigation Analysis Schema Expression (CASE)"^^xsd:string .
#################################################################
# Annotation properties
#################################################################
### http://case.example.org/core#item
:item rdf:type owl:AnnotationProperty ;
rdfs:range :Item .
### http://purl.org/dc/terms/source
<http://purl.org/dc/terms/source> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#maxQualifiedCardinality
owl:maxQualifiedCardinality rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#duration
xsd:duration rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://case.example.org/core#accessedDirectory
:accessedDirectory rdf:type owl:ObjectProperty ;
rdfs:domain :WindowsPrefetch ;
rdfs:range :Trace .
### http://case.example.org/core#accessedFile
:accessedFile rdf:type owl:ObjectProperty ;
rdfs:domain :WindowsPrefetch ;
rdfs:range :Trace .
### http://case.example.org/core#actionLifecyclePhase
:actionLifecyclePhase rdf:type owl:ObjectProperty ;
rdfs:domain :Action ;
rdfs:range :ActionLifecyclePattern .
### http://case.example.org/core#application
:application rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :ApplicationAccount ;
rdfs:range :Trace ;
rdfs:comment "Defines the application-like item used by this account." .
### http://case.example.org/core#associatedAccount
:associatedAccount rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Identity ;
rdfs:range :Object ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( :Account
:DigitalAccount
:EmailAccount
:PhoneAccount
:UserAccount
:WindowsAccount
)
]
] ;
rdfs:comment "References objects with an account type property bundle." .
### http://case.example.org/core#bcc
:bcc rdf:type owl:ObjectProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#binary
:binary rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Process ;
rdfs:range :Trace .
### http://case.example.org/core#bodyMultipart
:bodyMultipart rdf:type owl:ObjectProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :MimePartType .
### http://case.example.org/core#bodyRaw
:bodyRaw rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#byteOrder
:byteOrder rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :ContentData ;
rdfs:range :ByteOrder .
### http://case.example.org/core#cc
:cc rdf:type owl:ObjectProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#compressionMethod
:compressionMethod rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Compression
:EWFImage
)
] ;
rdfs:range :CompressionMethod .
### http://case.example.org/core#content
:content rdf:type owl:ObjectProperty ;
rdfs:domain :DataContainer ;
rdfs:range :Trace .
### http://case.example.org/core#creator
:creator rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsRegistryKey ;
rdfs:range :Trace .
### http://case.example.org/core#creatorUser
:creatorUser rdf:type owl:ObjectProperty ;
rdfs:domain :Process ;
rdfs:range :Trace .
### http://case.example.org/core#currentWorkingDirectory
:currentWorkingDirectory rdf:type owl:ObjectProperty ;
rdfs:domain :Process ;
rdfs:range :FilePath .
### http://case.example.org/core#dataContainerType
:dataContainerType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :DataContainer ;
rdfs:range :DataContainerType .
### http://case.example.org/core#dataPath
:dataPath rdf:type owl:ObjectProperty ;
rdfs:domain :Package ;
rdfs:range :Trace ;
rdfs:comment "Path designated by the OS to be used by that package application." .
### http://case.example.org/core#dataType
:dataType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsRegistryValue ;
rdfs:range :DataType .
### http://case.example.org/core#destination
:destination rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :NetworkConnection
:Relationship
)
] ;
rdfs:range :Object .
### http://case.example.org/core#documentInformation
:documentInformation rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :PDFFile .
### http://case.example.org/core#encodingMethod
:encodingMethod rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Encoding
:ExtractedString
)
] ;
rdfs:range :EncodingMethod .
### http://case.example.org/core#encryptionMethod
:encryptionMethod rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Encryption ;
rdfs:range :EncryptionMethod .
### http://case.example.org/core#encryptionMode
:encryptionMode rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Encryption ;
rdfs:range :EncryptionMode .
### http://case.example.org/core#endAction
:endAction rdf:type owl:ObjectProperty ;
rdfs:domain :Investigation ;
rdfs:range :Action .
### http://case.example.org/core#environment
:environment rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Object ;
rdfs:comment "Defines the environment of an Action. This can point to things like the descriptions of the area the action was performed or information about the computer that was used." .
### http://case.example.org/core#environmentVariable
:environmentVariable rdf:type owl:ObjectProperty ;
rdfs:domain :Process ;
rdfs:range :DictionaryItem .
### http://case.example.org/core#errorType
:errorType rdf:type owl:ObjectProperty .
### http://case.example.org/core#exifData
:exifData rdf:type owl:ObjectProperty ;
rdfs:domain :EXIF ;
rdfs:range :DictionaryItem .
### http://case.example.org/core#extractedCodeSnippet
:extractedCodeSnippet rdf:type owl:ObjectProperty ;
rdfs:domain :ExtractedFeatures ;
rdfs:range :Trace ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:someValuesFrom :ExtractedString
] .
### http://case.example.org/core#extractedImport
:extractedImport rdf:type owl:ObjectProperty ;
rdfs:domain :ExtractedFeatures ;
rdfs:range :Trace ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:someValuesFrom :ExtractedString
] .
### http://case.example.org/core#extractedString
:extractedString rdf:type owl:ObjectProperty ;
rdfs:domain :ExtractedFeatures ;
rdfs:range :Trace ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:someValuesFrom :ExtractedString
] .
### http://case.example.org/core#fileHeader
:fileHeader rdf:type owl:ObjectProperty ;
rdfs:domain :WindowsPEBinaryFile ;
rdfs:range :WindowsPEFileHeader .
### http://case.example.org/core#filePath
:filePath rdf:type owl:ObjectProperty ;
rdfs:domain :DataContainer ;
rdfs:range :FilePath .
### http://case.example.org/core#filePathSegments
:filePathSegments rdf:type owl:ObjectProperty ;
rdfs:domain :FilePath ;
rdfs:range olo:OrderedList .
[ rdf:type owl:Axiom ;
owl:annotatedSource :filePathSegments ;
owl:annotatedProperty rdfs:range ;
owl:annotatedTarget olo:OrderedList ;
rdfs:comment "TODO: This should point to an array of strings."
] .
### http://case.example.org/core#forensicActions
:forensicActions rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Investigation ;
rdfs:range olo:OrderedList ,
[ rdf:type owl:Restriction ;
owl:onProperty olo:slot ;
owl:allValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty olo:item ;
owl:allValuesFrom :ForensicAction
]
] .
### http://case.example.org/core#fragments
:fragments rdf:type owl:ObjectProperty ;
rdfs:domain :Fragments .
### http://case.example.org/core#globalFlagList
:globalFlagList rdf:type owl:ObjectProperty ;
rdfs:domain :WindowsComputerSpecification ;
rdfs:range :GlobalFlagType .
### http://case.example.org/core#hash
:hash rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :ExtractedString
:WindowsPEFileHeader
:WindowsPEOptionalHeader
:WindowsPESection
:X509Certificate
)
] ;
rdfs:range :Hash ;
rdfs:comment "TODO: Remove this use of this property in exchange for using the Hash property bundle." .
### http://case.example.org/core#hashMethod
:hashMethod rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Hash ;
rdfs:range :HashMethod .
### http://case.example.org/core#headerRaw
:headerRaw rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#homeDirectory
:homeDirectory rdf:type owl:ObjectProperty ;
rdfs:domain :UserAccount ;
rdfs:range :FilePath .
### http://case.example.org/core#imageCompressionMethod
:imageCompressionMethod rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :RasterPicture ;
rdfs:range :ImageCompressionMethod .
### http://case.example.org/core#inReplyTo
:inReplyTo rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#instrument
:instrument rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Action ;
rdfs:range :Object ;
rdfs:comment "The instrument the acutator used to perform the action. (This is usually an item that contains a tool property bundle.)" .
### http://case.example.org/core#investigator
:investigator rdf:type owl:ObjectProperty ;
rdfs:domain :Investigation ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Identity
:Role
)
] .
### http://case.example.org/core#language
:language rdf:type owl:ObjectProperty ;
rdfs:domain :ExtractedString ;
rdfs:range :Language .
### http://case.example.org/core#lifecycle
:lifecycle rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:range :ActionLifecyclePattern .
### http://case.example.org/core#location
:location rdf:type owl:ObjectProperty ;
rdfs:domain :Object ;
rdfs:range :Location .
### http://case.example.org/core#messageID
:messageID rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#messages
:messages rdf:type owl:ObjectProperty ;
rdfs:domain :MessageThread ;
rdfs:range olo:OrderedList ,
[ rdf:type owl:Restriction ;
owl:onProperty olo:slot ;
owl:allValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty olo:item ;
owl:allValuesFrom [ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:someValuesFrom :Message
]
]
] .
### http://case.example.org/core#mimeType
:mimeType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Attachment
:File
)
] ;
rdfs:range :MimeType .
### http://case.example.org/core#mismatchType
:mismatchType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :FileMetadataMismatch ;
rdfs:range :FileMismatchType .
### http://case.example.org/core#object
:object rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Annotation
:Attachment
:ProvenanceRecord
:Role
)
] ;
rdfs:range :Object .
### http://case.example.org/core#operatingSystem
:operatingSystem rdf:type owl:ObjectProperty ;
rdfs:domain :Application ;
rdfs:range :Trace ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:someValuesFrom :OperatingSystem
] .
### http://case.example.org/core#optionalHeader
:optionalHeader rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPEFileHeader ;
rdfs:range :WindowsPEOptionalHeader .
### http://case.example.org/core#otherHeader
:otherHeader rdf:type owl:ObjectProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :DictionaryItem .
### http://case.example.org/core#parentDataContainer
:parentDataContainer rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :DataContainer ;
rdfs:range :Trace ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :DataContainer
] ;
rdfs:comment "The parent property must point to an Item type that has at exactly one dfvfs property within it." .
### http://case.example.org/core#parentProcess
:parentProcess rdf:type owl:ObjectProperty ;
rdfs:domain :Process ;
rdfs:range :Trace ,
[ rdf:type owl:Restriction ;
owl:onProperty :propertyBundle ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Process
] .
### http://case.example.org/core#participant
:participant rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Message
:PhoneCall
)
] .
### http://case.example.org/core#peType
:peType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPEBinaryFile ;
rdfs:range :PEType .
### http://case.example.org/core#performer
:performer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :Action ;
rdfs:range :Object ;
rdfs:comment "Defines the person, action, or thing that caused this action." .
### http://case.example.org/core#propertyBundle
:propertyBundle rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Object ;
rdfs:range :PropertyBundle .
### http://case.example.org/core#protocols
:protocols rdf:type owl:ObjectProperty ;
rdfs:domain :NetworkConnection .
### http://case.example.org/core#received
:received rdf:type owl:ObjectProperty ;
rdfs:domain :Message ;
rdfs:range :ReceivedEvent .
### http://case.example.org/core#receiver
:receiver rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :ReceivedEvent ;
rdfs:range :Trace .
### http://case.example.org/core#reference
:reference rdf:type owl:ObjectProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://case.example.org/core#registeredOrganization
:registeredOrganization rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsComputerSpecification ;
rdfs:range :Identity .
### http://case.example.org/core#registeredOwner
:registeredOwner rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsComputerSpecification ;
rdfs:range :Identity .
### http://case.example.org/core#registryValue
:registryValue rdf:type owl:ObjectProperty ;
rdfs:domain :WindowsRegistryKey ;
rdfs:range :WindowsRegistryValue .
### http://case.example.org/core#result
:result rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Action ;
rdfs:range :Object .
### http://case.example.org/core#sections
:sections rdf:type owl:ObjectProperty ;
rdfs:domain :WindowsPEBinaryFile ;
rdfs:range :WindowsPESection .
### http://case.example.org/core#sender
:sender rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Message
:PhoneCall
)
] .
### http://case.example.org/core#serviceStatus
:serviceStatus rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsService ;
rdfs:range :ServiceStatus .
### http://case.example.org/core#serviceType
:serviceType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsService ;
rdfs:range :Servicetype .
### http://case.example.org/core#source
:source rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Action
:NetworkConnection
:Relationship
)
] ;
rdfs:range :Object .
### http://case.example.org/core#startAction
:startAction rdf:type owl:ObjectProperty ;
rdfs:domain :Investigation ;
rdfs:range :Action .
### http://case.example.org/core#startType
:startType rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsService ;
rdfs:range :StartType .
### http://case.example.org/core#startupInfo
:startupInfo rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsProcess .
### http://case.example.org/core#subject
:subject rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Investigation ,
:X509Certificate ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Identity
:Role
)
] .
### http://case.example.org/core#victim
:victim rdf:type owl:ObjectProperty ;
rdfs:domain :Investigation ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Identity
:Role
)
] .
### http://case.example.org/core#visibility
:visibility rdf:type owl:ObjectProperty ;
rdfs:domain :MessageThread ;
rdfs:range :VisibilityType .
### http://case.example.org/core#volume
:volume rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPrefetch ;
rdfs:range :Trace .
### http://case.example.org/core#windowsDirectory
:windowsDirectory rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsComputerSpecification ;
rdfs:range :Trace .
### http://case.example.org/core#windowsSystemDirectory
:windowsSystemDirectory rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsComputerSpecification ;
rdfs:range :Trace .
### http://case.example.org/core#windowsTempDirectory
:windowsTempDirectory rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsComputerSpecification ;
rdfs:range :Trace .
### http://case.example.org/core#x509V3Extensions
:x509V3Extensions rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :X509Certificate ;
rdfs:range :X509V3Extensions .
### http://case.example.org/core#xOriginatingIP
:xOriginatingIP rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range :Trace .
### http://purl.org/ontology/olo/core#item
olo:item rdf:type owl:ObjectProperty .
### http://purl.org/ontology/olo/core#next
olo:next rdf:type owl:ObjectProperty .
### http://purl.org/ontology/olo/core#ordered_list
olo:ordered_list rdf:type owl:ObjectProperty .
### http://purl.org/ontology/olo/core#previous
olo:previous rdf:type owl:ObjectProperty .
### http://purl.org/ontology/olo/core#slot
olo:slot rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### http://case.example.org/core#accessedTime
:accessedTime rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :DataContainer ;
rdfs:range xsd:dateTimeStamp .
### http://case.example.org/core#accountIssuer
:accountIssuer rdf:type owl:DatatypeProperty ;
rdfs:domain :Account ;
rdfs:range xsd:string .
### http://case.example.org/core#accountLogin
:accountLogin rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalAccount ;
rdfs:range xsd:string .
### http://case.example.org/core#acquiryDate
:acquiryDate rdf:type owl:DatatypeProperty ;
rdfs:domain :EWFImage ;
rdfs:range xsd:dateTimeStamp .
### http://case.example.org/core#addressOfEntryPoint
:addressOfEntryPoint rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPEOptionalHeader ;
rdfs:range xsd:hexBinary .
### http://case.example.org/core#alternateDataStream
:alternateDataStream rdf:type owl:DatatypeProperty ;
rdfs:domain :NTFS ;
rdfs:range xsd:string .
### http://case.example.org/core#applicationFileName
:applicationFileName rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain :WindowsPrefetch ;
rdfs:range xsd:string .
### http://case.example.org/core#applicationName
:applicationName rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Package ;
rdfs:range xsd:string ;
rdfs:comment "The name of the application (friendly name)" .
### http://case.example.org/core#arguments
:arguments rdf:type owl:DatatypeProperty ;
rdfs:domain :Process ;
rdfs:range xsd:string .
### http://case.example.org/core#aslrEnabled
:aslrEnabled rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsProcess ;
rdfs:range xsd:boolean .
### http://case.example.org/core#authorityKeyIdentifier
:authorityKeyIdentifier rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :X509V3Extensions ;
rdfs:range xsd:string .
### http://case.example.org/core#baseOfCode
:baseOfCode rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPEOptionalHeader ;
rdfs:range xsd:hexBinary .
### http://case.example.org/core#basicContraints
:basicContraints rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :X509V3Extensions ;
rdfs:range xsd:string .
### http://case.example.org/core#bidirectional
:bidirectional rdf:type owl:DatatypeProperty ;
rdfs:domain :Relationship ;
rdfs:range xsd:boolean .
### http://case.example.org/core#bios
:bios rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :ComputerSpecifications ;
rdfs:range xsd:string .
### http://case.example.org/core#birthday
:birthday rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :IdentityO ;
rdfs:range xsd:dateTimeStamp .
### http://case.example.org/core#bitsPerPixel
:bitsPerPixel rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :RasterPicture ;
rdfs:range xsd:integer .
### http://case.example.org/core#body
:body rdf:type owl:DatatypeProperty ;
rdfs:domain :Message ;
rdfs:range xsd:string .
### http://case.example.org/core#byteStringValue
:byteStringValue rdf:type owl:DatatypeProperty ;
rdfs:domain :ExtractedString ;
rdfs:range xsd:base64Binary .
### http://case.example.org/core#callType
:callType rdf:type owl:DatatypeProperty ;
rdfs:domain :PhoneCall ;
rdfs:range xsd:string .
### http://case.example.org/core#canEscalatePrivs
:canEscalatePrivs rdf:type owl:DatatypeProperty ;
rdfs:domain :UserAccount ;
rdfs:range xsd:boolean .
### http://case.example.org/core#caseNumber
:caseNumber rdf:type owl:DatatypeProperty ;
rdfs:domain :EWFImage ;
rdfs:range xsd:integer .
### http://case.example.org/core#category
:category rdf:type owl:DatatypeProperty ;
rdfs:domain :EmailMessage ;
rdfs:range xsd:string .
### http://case.example.org/core#certificatePolicies
:certificatePolicies rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :X509V3Extensions ;
rdfs:range xsd:string .
### http://case.example.org/core#characteristics
:characteristics rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPEFileHeader ;
rdfs:range xsd:hexBinary .
### http://case.example.org/core#checksum
:checksum rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :WindowsPEOptionalHeader ;
rdfs:range xsd:hexBinary .
### http://case.example.org/core#code
:code rdf:type owl:DatatypeProperty ;
rdfs:domain :ICMPConnection ;
rdfs:range xsd:string .
### http://case.example.org/core#columnName
:columnName rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :SQLiteBlob ;
rdfs:range xsd:string .
### http://case.example.org/core#comment
:comment rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :ArchiveFile ;
rdfs:range xsd:string .
### http://case.example.org/core#contentDisposition
:contentDisposition rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range xsd:string .
### http://case.example.org/core#contentType
:contentType rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmailMessage ;
rdfs:range xsd:string .
### http://case.example.org/core#country
:country rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:range xsd:string .
### http://case.example.org/core#cpu
:cpu rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :ComputerSpecifications ;
rdfs:range xsd:string .
### http://case.example.org/core#createdTime
:createdTime rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Account
:DataContainer
:Process
)
] ;
rdfs:range xsd:dateTimeStamp .
### http://case.example.org/core#crlDistributionPoints
:crlDistributionPoints rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :X509V3Extensions ;
rdfs:range xsd:string .
### http://case.example.org/core#data