forked from VisualDataWeb/OWL2VOWL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarinetlo.owl
1784 lines (1212 loc) · 96.8 KB
/
marinetlo.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 dcterms "http://purl.org/dc/terms/" >
<!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY dc "http://purl.org/dc/elements/1.1/" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY vs "http://www.w3.org/2003/06/sw-vocab-status/ns#" >
<!ENTITY marinetlo "http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl" >
]>
<rdf:RDF xmlns="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
xml:base="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:marinetlo="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dcterms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl">
<dcterms:issued rdf:datatype="&xsd;date">2013-10-15</dcterms:issued>
<dcterms:modified rdf:datatype="&xsd;date">2014-04-22</dcterms:modified>
<owl:versionInfo rdf:datatype="&xsd;decimal">3.0</owl:versionInfo>
<dcterms:rights>Copyright © FORTH ICS</dcterms:rights>
<dcterms:creator> Chrysoula Bekiari </dcterms:creator>
<dcterms:contributor> Carlo Allocca </dcterms:contributor>
<dcterms:description>MarineTLO is a top-level ontology for the marine domain (also applicable to the terrestrial domain).</dcterms:description>
<dcterms:contributor> Chrysoula Bekiari </dcterms:contributor>
<dcterms:creator> Carlo Allocca </dcterms:creator>
<dcterms:contributor> Martin Doerr </dcterms:contributor>
<dcterms:contributor> Nikos Minadakis </dcterms:contributor>
<dcterms:creator> Martin Doerr </dcterms:creator>
<dcterms:creator> Nikos Minadakis </dcterms:creator>
<dcterms:contributor> Julien Barde </dcterms:contributor>
<dcterms:title>MarineTLO Ontology</dcterms:title>
<dcterms:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
<dcterms:creator rdf:resource="http://users.ics.forth.gr/~fafalios/"/>
<dcterms:contributor rdf:resource="http://users.ics.forth.gr/~fafalios/"/>
<dcterms:contributor rdf:resource="http://users.ics.forth.gr/~marketak/pages/aboutme.html"/>
<dcterms:creator rdf:resource="http://users.ics.forth.gr/~marketak/pages/aboutme.html"/>
<dcterms:creator rdf:resource="http://users.ics.forth.gr/~tzitzik/"/>
<dcterms:contributor rdf:resource="http://users.ics.forth.gr/~tzitzik/"/>
<dcterms:publisher rdf:resource="http://www.ics.forth.gr/isl"/>
<owl:versionIRI rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:AnnotationProperty rdf:about="&vs;term_status"/>
<owl:AnnotationProperty rdf:about="&dcterms;publisher"/>
<owl:AnnotationProperty rdf:about="&dcterms;modified"/>
<owl:AnnotationProperty rdf:about="&dcterms;title"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="&xsd;date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L11HadOutput -->
<owl:ObjectProperty rdf:about="&marinetlo;#L11HadOutput">
<rdfs:label>L11HadOutput</rdfs:label>
<rdfs:comment>This property associates an instance of BC56 Digital Measurement Event with an instance of BC23 Digital Object which is the output of the activity.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#DigitalMeasurementEvent"/>
<rdfs:range rdf:resource="&marinetlo;#DigitalObject"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L12FHappenedOnDevice -->
<owl:ObjectProperty rdf:about="&marinetlo;#L12FHappenedOnDevice">
<rdfs:label>L12FHappenedOnDevice</rdfs:label>
<rdfs:comment>This property associates an instance of BC56 Digital Measurement Event with the instance of BC58 Digital Device that had used.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#D10SoftwareExecution"/>
<rdfs:range rdf:resource="&marinetlo;#D8DigitalDevice"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L23UsedSoftware -->
<owl:ObjectProperty rdf:about="&marinetlo;#L23UsedSoftware">
<rdfs:label>L23UsedSoftware</rdfs:label>
<rdfs:comment>This property associates an instance of BC56 Digital Measurement Event with the instance of BC59 Software.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#D10SoftwareExecution"/>
<rdfs:range rdf:resource="&marinetlo;#Software"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC1isIdentifiedBy -->
<owl:ObjectProperty rdf:about="&marinetlo;#LC1isIdentifiedBy">
<rdfs:label>LC1isIdentifiedBy</rdfs:label>
<rdfs:comment>This property describes the naming or identification of any real world item by a name or any other identifier.
This property is intended for identifiers in general use, which form part of the world the model intends to describe, and not merely for internal database identifiers which are specific to a technical system, unless these latter also have a more general use outside the technical context. This property includes in particular identification by mathematical expressions such as coordinate systems used for the identification of instances of E53 Place. The property does not reveal anything about when, where and by whom this identifier was used. A more detailed representation can be made using the fully developed (i.e. indirect) path through E15 Identifier Assignment.
[Scope Note for P1 is identified by (identifies)CIDOC CRM version 5.1.2]
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Identifier"/>
<rdfs:domain rdf:resource="&marinetlo;#PersistentItem"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC2hasAppellation -->
<owl:ObjectProperty rdf:about="&marinetlo;#LC2hasAppellation">
<rdfs:label>LC2hasAppellation</rdfs:label>
<rdfs:comment>This property associates an instance of BC1 TLO Entity with an instance of BC30 Appellation
This property is intended for names in general use. The property does not reveal anything about when, where and by whom this name was used. A more detailed representation can be made using the fully developed (i.e. indirect) path through BC46 Identifier Assignment.
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Appellation"/>
<rdfs:domain rdf:resource="&marinetlo;#PersistentItem"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC4isReferredBy -->
<owl:ObjectProperty rdf:about="&marinetlo;#LC4isReferredBy">
<rdfs:label>LC4isReferredBy</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property documents that a BC18 Proposition makes a statement about an instance of BC1 TLO Entity.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#ConceptualObject"/>
<owl:inverseOf rdf:resource="&marinetlo;#LC4refersTo"/>
<rdfs:domain rdf:resource="&marinetlo;#PersistentItem"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC4refersTo -->
<owl:ObjectProperty rdf:about="&marinetlo;#LC4refersTo">
<rdfs:label>LC4refersTo</rdfs:label>
<rdfs:comment>This property documents that a BC18 Proposition makes a statement about an instance of BC1 TLO Entity.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#ConceptualObject"/>
<rdfs:range rdf:resource="&marinetlo;#PersistentItem"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LCproduces -->
<owl:ObjectProperty rdf:about="&marinetlo;#LCproduces">
<rdfs:label>LCproduces</rdfs:label>
<rdfs:comment>This property associates an instance of BC61 Capture Activity with the instance of BC57 Capture.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Capture"/>
<rdfs:domain rdf:resource="&marinetlo;#Capture_Activity"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LT2usuallyConsistsOf -->
<owl:ObjectProperty rdf:about="&marinetlo;#LT2usuallyConsistsOf">
<rdfs:label>LT2usuallyConsistsOf</rdfs:label>
<rdfs:comment>This property describes the types of components of an Temporal Phenomenon Type.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTbelongsTo -->
<owl:ObjectProperty rdf:about="&marinetlo;#LTbelongsTo">
<rdfs:label>LTbelongsTo</rdfs:label>
<rdfs:comment>This property associates a type of biotic element with the type of biotic element which is part of or member.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#BioticElementType"/>
<rdfs:domain rdf:resource="&marinetlo;#BioticElementType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyFeedingOn -->
<owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyFeedingOn">
<rdfs:label>LTusuallyFeedingOn</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#BioticElementType"/>
<rdfs:domain rdf:resource="&marinetlo;#BioticElementType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyIsPredatorOf -->
<owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyIsPredatorOf">
<rdfs:label>LTusuallyIsPredatorOf</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property connects the types of predators with their prey type.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:subPropertyOf rdf:resource="&marinetlo;#LTusuallyFeedingOn"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyIsPreyOf -->
<owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyIsPreyOf">
<rdfs:label>LTusuallyIsPreyOf</rdfs:label>
<rdfs:comment>This property connects the types of predators with their prey type.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:subPropertyOf rdf:resource="&marinetlo;#LTusuallyFeedingOn"/>
<owl:inverseOf rdf:resource="&marinetlo;#LTusuallyIsPredatorOf"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LX1isIdentifiedBy -->
<owl:ObjectProperty rdf:about="&marinetlo;#LX1isIdentifiedBy">
<rdfs:label>LX1isIdentifiedBy</rdfs:label>
<rdfs:comment>This property describes the types of identifiers, names or labels of any marineTLO item type.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Identifier"/>
<rdfs:domain rdf:resource="&marinetlo;#PersistentItemType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LX2hasAppellation -->
<owl:ObjectProperty rdf:about="&marinetlo;#LX2hasAppellation">
<rdfs:label>LX2hasAppellation</rdfs:label>
<rdfs:comment>This property associates an instance of BT1 TLO Entity Type with an instance of BC7 Appellation.</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Appellation"/>
<rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntityType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LX3isAboutConcept -->
<owl:ObjectProperty rdf:about="&marinetlo;#LX3isAboutConcept">
<rdfs:label>LX3isAboutConcept</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property documents that an instance of BC17 Conceptual Object is a subject of an instance of BT1 TLO Entity Type.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#ConceptualObject"/>
<rdfs:range rdf:resource="&marinetlo;#MarineTLOEntityType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXhasType -->
<owl:ObjectProperty rdf:about="&marinetlo;#LXhasType">
<rdfs:label>LXhasType</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property allows sub typing of MarineTLO entities - a form of specialisation – through the use of a terminological hierarchy, or thesaurus.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
<rdfs:range rdf:resource="&marinetlo;#MarineTLOEntityType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXusuallyIsBioticComponentOf -->
<owl:ObjectProperty rdf:about="&marinetlo;#LXusuallyIsBioticComponentOf">
<rdfs:label>LXusuallyIsBioticComponentOf</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#BioticElementType"/>
<rdfs:range rdf:resource="&marinetlo;#Ecosystem"/>
<rdfs:subPropertyOf rdf:resource="&marinetlo;#LXusuallyIsComponentOf"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXusuallyIsComponentOf -->
<owl:ObjectProperty rdf:about="&marinetlo;#LXusuallyIsComponentOf">
<rdfs:label>LXusuallyIsComponentOf</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#PersistentItemType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#O21Triggers -->
<owl:ObjectProperty rdf:about="&marinetlo;#O21Triggers">
<rdfs:label>O21Triggers</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#D10SoftwareExecution"/>
<rdfs:domain rdf:resource="&marinetlo;#DigitalMeasurementEvent"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P102HasTitle -->
<owl:ObjectProperty rdf:about="&marinetlo;#P102HasTitle">
<rdfs:label>P102HasTitle</rdfs:label>
<rdfs:comment>This property describes the E35 Title applied to an instance of E71 Man-Made Thing. The E55 Type of Title is assigned in a sub property.
The P102.1 has type property of the P102 has title (is title of) property enables the relationship between the Title and the thing to be further clarified, for example, if the Title was a given Title, a supplied Title etc.
It allows any man-made material or immaterial thing to be given a Title. It is possible to imagine a Title being created without a specific object in mind.
Examples:
1) the first book of the Old Testament (E33) has title “Genesis” (E35) has type translated (E55).
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
<rdfs:range rdf:resource="&marinetlo;#Title"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P105RightHeldBy -->
<owl:ObjectProperty rdf:about="&marinetlo;#P105RightHeldBy">
<rdfs:label>P105RightHeldBy</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property identifies the E39 Actor who holds the instances of E30 Right to an E72 Legal Object.
It is a superproperty of P52 has current owner (is current owner of) because ownership is a right that is held on the owned object.
P105 right held by (has right on) is a shortcut of the fully developed path from E72 Legal Object through P104 is subject to (applies to), E30 Right, P75 possesses (is possessed by) to E39 Actor.
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Actor"/>
<rdfs:domain rdf:resource="&marinetlo;#Software"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P125UsedObjectOfType -->
<owl:ObjectProperty rdf:about="&marinetlo;#P125UsedObjectOfType">
<rdfs:label>P125UsedObjectOfType</rdfs:label>
<rdfs:comment>This property defines the kind of objects used in an E7 Activity, when the specific instance is either unknown or not of interest, such as use of "a hammer".</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
<rdfs:range rdf:resource="&marinetlo;#PersistentItemType"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P141Assigned -->
<owl:ObjectProperty rdf:about="&marinetlo;#P141Assigned">
<rdfs:label>P141Assigned</rdfs:label>
<rdfs:comment>This property indicates the attribute that was assigned or the item that was related to the item denoted by a property P140 assigned attribute to in an Attribute assignment action.
Examples:
1) February 1997 Current Ownership Assessment of Martin Doerr’s silver cup (E13) assigned Martin Doerr (E21)
2) 01 June 1997 Identifier Assignment of the silver cup donated by Martin Doerr (E15) assigned object identifier 232
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#AttributeAssignment"/>
<rdfs:range rdf:resource="&marinetlo;#MarineTLOEntity"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P14CarriedOutBy -->
<owl:ObjectProperty rdf:about="&marinetlo;#P14CarriedOutBy">
<rdfs:label>P14CarriedOutBy</rdfs:label>
<rdfs:comment>This property describes the active participation of an E39 Actor in an E7 Activity.
It implies causal or legal responsibility. The P14.1 in the role of property of the property allows the nature of an Actor’s participation to be specified.
Examples:
1)the painting of the Sistine Chapel (E7) carried out by Michaelangelo Buonaroti (E21) in the role of master craftsman (E55)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Actor"/>
<rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P33UsedSpecificTechnique -->
<owl:ObjectProperty rdf:about="&marinetlo;#P33UsedSpecificTechnique">
<rdfs:label>P33UsedSpecificTechnique</rdfs:label>
<rdfs:comment>This property identifies a specific instance of E29 Design or Procedure in order to carry out an instance of E7 Activity or parts of it.
The property differs from P32 used general technique (was technique of) in that P33 refers to an instance of E29 Design or Procedure, which is a concrete information object in its own right rather than simply being a term or a method known by tradition.
Typical examples would include intervention plans for conservation or the construction plans of a building
Examples:
1) Ornamentation of silver cup 232 (E11) used specific technique ‘Instructions for golden chase work by A N Other’ (E29)
2) Rebuilding of Reichstag (E11) used specific technique Architectural plans by Foster and Partners (E29)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#DesignAndProcedure"/>
<rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P34Continued -->
<owl:ObjectProperty rdf:about="&marinetlo;#P34Continued">
<rdfs:label>P34Continued</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property identifies the E18 Physical Thing that was assessed during an E14 Condition Assessment activity.
Conditions may be assessed either by direct observation or using recorded evidence. In the latter case the E18 Physical Thing does not need to be present or extant.
Examples:
1) 1997 condition assessment of the silver collection (E14) concerned silver cup 232 (E22)
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
<rdfs:range rdf:resource="&marinetlo;#HumanActivity"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P39Measured -->
<owl:ObjectProperty rdf:about="&marinetlo;#P39Measured">
<rdfs:label>P39Measured</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property associates an instance of E16 Measurement with the instance of E1 CRM Entity to which it applied. An instance of E1 CRM Entity may be measured more than once. Material and immaterial things and processes may be measured, e.g. the number of words in a text, or the duration of an event.
Examples:
1) 31 August 1997 measurement of height of silver cup 232 (E16) measured silver cup 232 (E22).
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#MarineTLOEntity"/>
<rdfs:domain rdf:resource="&marinetlo;#Measurement"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P39WasMeasuredBy -->
<owl:ObjectProperty rdf:about="&marinetlo;#P39WasMeasuredBy">
<rdfs:label>P39Measured</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<owl:inverseOf rdf:resource="&marinetlo;#P39Measured"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P40ObservedDimension -->
<owl:ObjectProperty rdf:about="&marinetlo;#P40ObservedDimension">
<rdfs:label>P40ObservedDimension</rdfs:label>
<rdfs:comment>This property records the dimension that was observed in an E16 Measurement Event.
E54 Dimension can be any quantifiable aspect of E70 Thing. Weight, image colour depth and monetary value are dimensions in this sense. One measurement activity may determine more than one dimension of one object.
Dimensions may be determined either by direct observation or using recorded evidence. In the latter case the measured Thing does not need to be present or extant.
Even though knowledge of the value of a dimension requires measurement, the dimension may be an object of discourse prior to, or even without, any measurement being made.
Examples:
1) 31 August 1997 measurement of height of silver cup 232 (E16) observed dimension silver cup 232 height (E54) has unit mm (E58), has value 224 (E60)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Dimension"/>
<rdfs:domain rdf:resource="&marinetlo;#Measurement"/>
<rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P40WasObservedIn -->
<owl:ObjectProperty rdf:about="&marinetlo;#P40WasObservedIn">
<rdfs:label>P40WasObservedIn</rdfs:label>
<rdfs:comment>This property records the dimension that was observed in an E16 Measurement Event.
E54 Dimension can be any quantifiable aspect of E70 Thing. Weight, image colour depth and monetary value are dimensions in this sense. One measurement activity may determine more than one dimension of one object.
Dimensions may be determined either by direct observation or using recorded evidence. In the latter case the measured Thing does not need to be present or extant.
Even though knowledge of the value of a dimension requires measurement, the dimension may be an object of discourse prior to, or even without, any measurement being made.
Examples:
1) 31 August 1997 measurement of height of silver cup 232 (E16) observed dimension silver cup 232 height (E54) has unit mm (E58), has value 224 (E60)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<owl:inverseOf rdf:resource="&marinetlo;#P40ObservedDimension"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P4HasTime-Span -->
<owl:ObjectProperty rdf:about="&marinetlo;#P4HasTime-Span">
<rdfs:label>P4HasTime-Span</rdfs:label>
<rdfs:comment>This property describes the temporal confinement of an instance of an E2 Temporal Entity.
The related E52 Time-Span is understood as the real Time-Span during which the phenomena were active, which make up the temporal entity instance. It does not convey any other meaning than a positioning on the “time-line” of chronology. The Time-Span in turn is approximated by a set of dates (E61 Time Primitive). A temporal entity can have in reality only one Time-Span, but there may exist alternative opinions about it, which we would express by assigning multiple Time-Spans. Related temporal entities may share a Time-Span. Time-Spans may have completely unknown dates but other descriptions by which we can infer knowledge.
Examples:
1) the Yalta Conference (E7) has time-span Yalta Conference time-span (E52)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#TemporalPhenomenon"/>
<rdfs:range rdf:resource="&marinetlo;#Time-Span"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P7TookPlaceAt -->
<owl:ObjectProperty rdf:about="&marinetlo;#P7TookPlaceAt">
<rdfs:label>P7TookPlaceAt</rdfs:label>
<rdfs:comment>This property describes the spatial location of an instance of E4 Period.
The related E53 Place should be seen as an approximation of the geographical area within which the phenomena that characterise the period in question occurred. P7took place at (witnessed) does not convey any meaning other than spatial positioning (generally on the surface of the earth). For example, the period “Révolution française” can be said to have taken place in “France”, the “Victorian” period, may be said to have taken place in “Britain” and its colonies, as well as other parts of Europe and north America.
A period can take place at multiple locations.
Examples:
1) the period “Révolution française” (E4) took place at France (E53)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#Place"/>
<rdfs:domain rdf:resource="&marinetlo;#TemporalPhenomenon"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P90hasValue -->
<owl:ObjectProperty rdf:about="&marinetlo;#P90hasValue">
<rdfs:label>P90hasValue</rdfs:label>
<vs:term_status>testing</vs:term_status>
<rdfs:comment>This property allows an E54 Dimension to be approximated by an E60 Number primitive.
Examples:
1) height of silver cup 232 (E54) has value 226 (E60)
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:range rdf:resource="&marinetlo;#BC60Value"/>
<rdfs:domain rdf:resource="&marinetlo;#Dimension"/>
</owl:ObjectProperty>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P91HasUnit -->
<owl:ObjectProperty rdf:about="&marinetlo;#P91HasUnit">
<rdfs:label>P91HasUnit</rdfs:label>
<rdfs:comment>This property shows the type of unit an E54 Dimension was expressed in.
Examples:
1) height of silver cup 232 (E54) has unit mm (E58)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
<rdfs:domain rdf:resource="&marinetlo;#Dimension"/>
<rdfs:range rdf:resource="&marinetlo;#MeasurementUnit"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P3HasNote -->
<owl:DatatypeProperty rdf:about="&marinetlo;#P3HasNote">
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This property associates an entity to MarineTLO Environment with abstraction levels where it is defined. </rdfs:comment>
<rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AbioticElement -->
<owl:Class rdf:about="&marinetlo;#AbioticElement">
<rdfs:label>Abiotic Element</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class refers to the abiotic components of an ecosystem. This class comprises nonliving physical components of a system, for example: rocks, soil, etc. in an environment.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AbioticElementType -->
<owl:Class rdf:about="&marinetlo;#AbioticElementType">
<rdfs:label>Abiotic Element Type</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThingType"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This metaclass comprises types of abiotic components of a type of Ecosystem.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Actor -->
<owl:Class rdf:about="&marinetlo;#Actor">
<rdfs:label>Actor</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItem"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible. </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ActorType -->
<owl:Class rdf:about="&marinetlo;#ActorType">
<rdfs:label>Actor Type</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItemType"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises types of human agents either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Appellation -->
<owl:Class rdf:about="&marinetlo;#Appellation">
<rdfs:label>Appellation</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
<rdfs:comment xml:lang="en">This class comprises signs, either meaningful or not, or arrangements of signs following a specific syntax, that are used or can be used to refer to and identify a specific instance of some class or category within a certain context.
Specific subclasses of BC7 Appellation should be used when instances of BC7 Appellation of a characteristic form or format are used for particular objects
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AppellationType -->
<owl:Class rdf:about="&marinetlo;#AppellationType">
<rdfs:label>Appellation Type</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
<rdfs:comment xml:lang="en">This class comprises types of Appellation that are used or can be used to identify a specific instance of some class within a certain context. </rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AttributeAssignment -->
<owl:Class rdf:about="&marinetlo;#AttributeAssignment">
<rdfs:label>Attribute Assignment</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivity"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises the actions of making assertions about properties of an object or any relation between two items or concepts.
This class allows the documentation of how the respective assignment came about, and whose opinion it was. All the attributes or properties assigned in such an action can also be seen as directly attached to the respective item or concept, possibly as a collection of contradictory values. All cases of properties in this model that are also described indirectly through an action are characterised as "short cuts" of this action. This redundant modelling of two alternative views is preferred because many implementations may have good reasons to model either the action or the short cut, and the relation between both alternatives can be captured by simple rules.
In particular, the class describes the actions of people making propositions and statements during certain museum procedures, e.g. the person and date when a condition statement was made, an identifier was assigned, the museum object was measured, etc. Which kinds of such assignments and statements need to be documented explicitly in structures of a schema rather than free text, depends on if this information should be accessible by structured queries.
[Scope Note for E13 Attribute Assignment CIDOC CRM version 5.1.2]
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BC60Value -->
<owl:Class rdf:about="&marinetlo;#BC60Value">
<rdfs:label>BC60Value</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
<rdfs:comment xml:lang="en">This class comprises primitive values used as documentation elements, which are not further elaborated upon within the model.
As such they are not considered as elements within our universe of discourse. No specific implementation recommendations are made. It is recommended that the primitive value system from the implementation platform be used to substitute for this class and its subclasses.
Examples:
• ABCDEFG (E62)
• 3.14 (E60)
• 0
• 1921-01-01 (E61)
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BiologicalPart -->
<owl:Class rdf:about="&marinetlo;#BiologicalPart">
<rdfs:label>Biological Part</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#BioticElement"/>
<rdfs:comment xml:lang="en"> This metaclass comprises biological parts of a biological object</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BiologicalPartType -->
<owl:Class rdf:about="&marinetlo;#BiologicalPartType">
<rdfs:label>Biological Part Type</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#BioticElementType"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This metaclass comprises types of biological parts of a biological object.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BioticElement -->
<owl:Class rdf:about="&marinetlo;#BioticElement">
<rdfs:label>Biotic Element</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class refers to the biotic components of an ecosystem. This class compromises individual living things that can react to stimuli, reproduce, grow, and maintain homeostasis. It can be a virus, bacterium, protist, fungus, plant, an animal or a human being. [http://www.biology-online.org/]</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BioticElementType -->
<owl:Class rdf:about="&marinetlo;#BioticElementType">
<rdfs:label>Biotic Element Type</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThingType"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This metaclass comprises types of material nature items which live, have lived or are natural products of or from living organisms. Such types of material nature items includes types of plants, types of fauna(animals), types of bacteria, fungi etc.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ByCatch -->
<owl:Class rdf:about="&marinetlo;#ByCatch">
<rdfs:subClassOf rdf:resource="&marinetlo;#Capture"/>
<vs:term_status>testing</vs:term_status>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Capture -->
<owl:Class rdf:about="&marinetlo;#Capture">
<rdfs:label>Capture</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#Collection"/>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Capture_Activity -->
<owl:Class rdf:about="&marinetlo;#Capture_Activity">
<rdfs:label>Capture Activity</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivity"/>
<rdfs:comment xml:lang="en">This class compromises activities of BC45 Observation where an BC8 Actor encounters an instance of BC35 Physical Thing of a kind relevant for the mission of the observation or a biological activity such as fishing, etc. This observation produces knowledge about the existence of the respective thing at a particular place in or on surrounding matter. This knowledge may be new to the group of people the actor belongs to. In that case we would talk about a discovery. The observer may recognize or assign an individual identity of the thing encountered or regard only the type as noteworthy in the associated documentation or report.
Additional parameters may be recorded like the kind of ecosystem, if the biological individual survives the observation, what detection or catching devices have been used or if the capture activity have been supported the detection of a new biological kind (“taxon”).
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Catch -->
<owl:Class rdf:about="&marinetlo;#Catch">
<rdfs:subClassOf rdf:resource="&marinetlo;#Capture"/>
<vs:term_status>testing</vs:term_status>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Collection -->
<owl:Class rdf:about="&marinetlo;#Collection">
<rdfs:label>Collection</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
<rdfs:comment xml:lang="en">
This class comprises aggregations of instances of E18 Physical Thing that are assembled and maintained (“curated” and “preserved,” in museological terminology) by one or more instances of E39 Actor over time for a specific purpose and audience, and according to a particular collection development plan.
Items may be added or removed from an E78 Collection in pursuit of this plan. This class should not be confused with the E39 Actor maintaining the E78 Collection often referred to with the name of the E78 Collection (e.g. “The Wallace Collection decided…”).
Collective objects in the general sense, like a tomb full of gifts, a folder with stamps or a set of chessmen, should be documented as instances of E19 Physical Object, and not as instances of E78 Collection. This is because they form wholes either because they are physically bound together or because they are kept together for their functionality.
[Scope Note for E78 Collection CIDOC CRM version 5.1.2]
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ConceptualObject -->
<owl:Class rdf:about="&marinetlo;#ConceptualObject">
<rdfs:label>ConceptualObject</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ManMadeThings"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises non-material products of our minds and other human produced data that have become objects of a discourse. The production of such information may have been supported by the use of technical devices such as cameras or computers.
Characteristically, instances of this class are created, invented or thought by someone, and then may be documented or communicated between persons. Instances of BC3 Conceptual Object have the ability to exist on more than one particular carrier at the same time, such as paper, book, electronic signals, marks, audio media, paintings, photos, human memories, etc.
They cannot be destroyed. They exist as long as they can be found on at least one carrier or in at least one human memory. Their existence ends when the last carrier and the last memory are lost.
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ConceptualObjectType -->
<owl:Class rdf:about="&marinetlo;#ConceptualObjectType">
<rdfs:label>Conceptual Object Type</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItemType"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This metaclass comprises types of identifiable immaterial items, such as, types of data sets, images, texts, multimedia objects, procedural prescriptions, computer program code, algorithm or mathematical formulae, that have an objectively recognizable structure and are documented as single units.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D10SoftwareExecution -->
<owl:Class rdf:about="&marinetlo;#D10SoftwareExecution">
<rdfs:label>D10 Software Execution</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#D7DigitalMachineEvent"/>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D15RepositoryObject -->
<owl:Class rdf:about="&marinetlo;#D15RepositoryObject">
<rdfs:label>D15RepositoryObject</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#DigitalObject"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises data repositories of a set of integrated objects in computer science sense. These objects are modeled using structures defined in database schemas. Digital store includes not only data repositories like databases, it is a more general concept that includes also flat files that can store data.
A digital store may contain binary datasets: raw data, normalized data, intermediate data of processing steps, scenes composed from several datasets, presentation objects, 3D models, 2D-Images and any kind of digital document (text, multimedia). It comprises a notion of complex objects, having datasets as parts. The content of a digital store is responsible for holding information about where data-files and their replicas can be found
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D7DigitalMachineEvent -->
<owl:Class rdf:about="&marinetlo;#D7DigitalMachineEvent">
<rdfs:label>D7 Digital Machine Event</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#E65Creation"/>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D8DigitalDevice -->
<owl:Class rdf:about="&marinetlo;#D8DigitalDevice">
<rdfs:label>D8 Digital Device</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ManMadeThings"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises identifiable material items such as computers, scanners, cameras, etc. that have the capability to process or produce instances of BC51 Digital Object.
</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Database -->
<owl:Class rdf:about="&marinetlo;#Database">
<rdfs:label>Database</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises organized collections of data. The data are typically organized to model relevant aspects of reality , in a way that supports processes requiring this information. This organized collection maybe digitized or not.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Dataset -->
<owl:Class rdf:about="&marinetlo;#Dataset">
<rdfs:label>Dataset</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
<rdfs:comment xml:lang="en">This class comprises contents of a single database table, or a single statistical data matrix, where each column of the table represents a particular variable, and each row corresponds to a given member of the dataset in question. The dataset lists values for each of the variables, such as height and weight of an object, for each member of the dataset. Each value is known as a datum. The dataset may comprise data for one or more members, corresponding to the number of rows.
The term dataset may also be used more loosely, to refer to the data in a collection of closely related tables, corresponding to a particular experiment or event.
</rdfs:comment>
<vs:term_status>testing</vs:term_status>
<rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
</owl:Class>
<!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#DesignAndProcedure -->
<owl:Class rdf:about="&marinetlo;#DesignAndProcedure">
<rdfs:label>DesignAndProcedure</rdfs:label>
<rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
<vs:term_status>testing</vs:term_status>
<rdfs:comment xml:lang="en">This class comprises documented plans for the execution of actions in order to achieve a result of a specific quality, form or contents. In particular it comprises plans for deliberate human activities that may result in the modification or production of instances of E24 Physical Thing.
Instances of E29 Design or Procedure can be structured in parts and sequences or depend on others. This is modelled using P69 is associated with.
Designs or procedures can be seen as one of the following:
1. schema for the activities it describes
2. A schema of the products that result from their application.
3. An independent intellectual product that may have never been applied, such as Leonardo da Vinci's famous plans for flying machines.
4. Because designs or procedures may never be applied or only partially executed, the CRM models a loose relationship between the plan and the respective product.
[Scope Note for E29 Design or Procedure (CIDOC CRM)]
</rdfs:comment>