-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathecrm_111122.owl
4376 lines (4158 loc) · 299 KB
/
ecrm_111122.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"?>
<rdf:RDF
xmlns:xsp="http://www.owl-ontologies.com/2005/08/07/xsp.owl#"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:ecrm="http://erlangen-crm.org/111122/"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xml:base="http://erlangen-crm.org/111122/">
<owl:Ontology rdf:about="">
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>ECRM 111122 / CIDOC-CRM 5.0.3</owl:versionInfo>
<rdfs:comment xml:lang="en">Erlangen CRM / OWL - An OWL DL 1.0 implementation of the CIDOC Conceptual Reference Model, based on: Nick Crofts, Martin Doerr, Tony Gill, Stephen Stead, Matthew Stiff (eds.): Definition of the CIDOC Conceptual Reference Model (http://cidoc-crm.org/).
This implementation has been originally created by Bernhard Schiemann, Martin Oischinger and Günther Görz at the Friedrich-Alexander-University of Erlangen-Nuremberg, Department of Computer Science, Chair of Computer Science 8 (Artificial Intelligence) in cooperation with the Department of Museum Informatics of the Germanisches Nationalmuseum Nuremberg and the Department of Biodiversity Informatics of the Zoologisches Forschungsmuseum Alexander Koenig Bonn.
The Erlangen CRM / OWL implementation of the CIDOC Conceptual Reference Model is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.</rdfs:comment>
<rdfs:comment xml:lang="en">Changelog: http://erlangen-crm.org/changelog#v111122</rdfs:comment>
<rdfs:label xml:lang="en">Erlangen CRM / OWL</rdfs:label>
</owl:Ontology>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E77_Persistent_Item">
<rdfs:comment xml:lang="en">Scope note:
This class comprises items that have a persistent identity, sometimes known as "endurants" in philosophy.
They can be repeatedly recognized within the duration of their existence by identity criteria rather than by continuity or observation. Persistent Items can be either physical entities, such as people, animals or things, or conceptual entities such as ideas, concepts, products of the imagination or common names.
The criteria that determine the identity of an item are often difficult to establish -; the decision depends largely on the judgement of the observer. For example, a building is regarded as no longer existing if it is dismantled and the materials reused in a different configuration. On the other hand, human beings go through radical and profound changes during their life-span, affecting both material composition and form, yet preserve their identity by other criteria. Similarly, inanimate objects may be subject to exchange of parts and matter. The class E77 Persistent Item does not take any position about the nature of the applicable identity criteria and if actual knowledge about identity of an instance of this class exists. There may be cases, where the identity of an E77 Persistent Item is not decidable by a certain state of knowledge.
The main classes of objects that fall outside the scope the E77 Persistent Item class are temporal objects such as periods, events and acts, and descriptive properties.
Examples:
- Leonardo da Vinci
- Stonehenge
- the hole in the ozone layer
- the First Law of Thermodynamics
- the Bermuda Triangle</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E1_CRM_Entity"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E79_Part_Addition">
<rdfs:comment xml:lang="en">Scope note:
This class comprises activities that result in an instance of E24 Physical Man-Made Thing being increased, enlarged or augmented by the addition of a part.
Typical scenarios include the attachment of an accessory, the integration of a component, the addition of an element to an aggregate object, or the accessioning of an object into a curated E78 Collection. Objects to which parts are added are, by definition, man-made, since the addition of a part implies a human activity. Following the addition of parts, the resulting man-made assemblages are treated objectively as single identifiable wholes, made up of constituent or component parts bound together either physically (for example the engine becoming a part of the car), or by sharing a common purpose (such as the 32 chess pieces that make up a chess set). This class of activities forms a basis for reasoning about the history and continuity of identity of objects that are integrated into other objects over time, such as precious gemstones being repeatedly incorporated into different items of jewellery, or cultural artifacts being added to different museum instances of E78 Collection over their lifespan.
Examples:
- the setting of the koh-i-noor diamond into the crown of Queen Elizabeth the Queen Mother
- the addition of the painting "Room in Brooklyn" by Edward Hopper to the collection of the Museum of Fine Arts, Boston</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E11_Modification"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E24_Physical_Man-Made_Thing"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P110_augmented"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E18_Physical_Thing"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P111_added"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E80_Part_Removal"/>
</owl:disjointWith>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E86_Leaving">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E7_Activity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P145_separated"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P146_separated_from"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the activities that result in an instance of E39 Actor to be disassociated from an instance of E74 Group. This class does not imply initiative by either party.
Typical scenarios include the termination of membership in a social organisation, ending the employment at a company, divorce, and the end of tenure of somebody in an official position.
Examples:
- the end of Sir Isaac Newton's duty as Member of Parliament for the University of Cambridge to the Convention Parliament in 1702
- George Washington's leaving office in 1797</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E75_Conceptual_Object_Appellation">
<rdfs:comment xml:lang="en">Scope note:
This class comprises all appellations specific to intellectual products or standardized patterns.
Examples:
- "ISBN 3-7913-1418-1"
- "ISO 2788-1986 (F)"</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E41_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E40_Legal_Body">
<rdfs:comment xml:lang="en">Scope note:
This class comprises institutions or groups of people that have obtained a legal recognition as a group and can act collectively as agents.
This means that they can perform actions, own property, create or destroy things and can be held collectively responsible for their actions like individual people. The term 'personne morale' is often used for this in French.
Examples:
- Greenpeace
- Paveprime Ltd
- the National Museum of Denmark</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E30_Right"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P75_possesses"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E74_Group"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E39_Actor">
<rdfs:comment xml:lang="en">Scope note:
This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.
The CRM does not attempt to model the inadvertent actions of such actors. Individual people should be documented as instances of E21 Person, whereas groups should be documented as instances of either E74 Group or its subclass E40 Legal Body.
Examples:
- London and Continental Railways (E40)
- the Governor of the Bank of England in 1975 (E21)
- Sir Ian McKellan (E21)</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/111122/E77_Persistent_Item"/>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E66_Formation">
<rdfs:comment xml:lang="en">Scope note:
This class comprises events that result in the formation of a formal or informal E74 Group of people, such as a club, society, association, corporation or nation.
E66 Formation does not include the arbitrary aggregation of people who do not act as a collective.
The formation of an instance of E74 Group does not mean that the group is populated with members at the time of formation. In order to express the joining of members at the time of formation, the respective activity should be simultaneously an instance of both E66 Formation and E85 Joining.
Examples:
- the formation of the CIDOC CRM Special Interest Group
- the formation of the Soviet Union
- the conspiring of the murderers of Caesar</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E63_Beginning_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P95_has_formed"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E74_Group"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E7_Activity"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E10_Transfer_of_Custody">
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E18_Physical_Thing"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P30_transferred_custody_of"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E7_Activity"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises transfers of physical custody of objects between instances of E39 Actor.
The recording of the donor and/or recipient is optional. It is possible that in an instance of E10 Transfer of Custody there is either no donor or no recipient. Depending on the circumstances it may describe:
1. the beginning of custody
2. the end of custody
3. the transfer of custody
4. the receipt of custody from an unknown source
5. the declared loss of an object
The distinction between the legal responsibility for custody and the actual physical possession of the object should be expressed using the property P2 has type (is type of). A specific case of transfer of custody is theft.
The interpretation of the museum notion of "accession" differs between institutions. The CRM therefore models legal ownership and physical custody separately. Institutions will then model their specific notions of accession and deaccession as combinations of these.
Examples:
- the delivery of the paintings by Secure Deliveries Inc. to the National Gallery
- the return of Picasso's "Guernica" to Madrid's Prado in 1981</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E32_Authority_Document">
<rdfs:comment xml:lang="en">Scope note:
This class comprises encyclopaedia, thesauri, authority lists and other documents that define terminology or conceptual systems for consistent use.
Examples:
- Webster's Dictionary
- Getty Art and Architecture Thesaurus
- CIDOC Conceptual Reference Model</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E31_Document"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E69_Death">
<rdfs:comment xml:lang="en">Scope note:
This class comprises the deaths of human beings.
If a person is killed, their death should be instantiated as E69 Death and as E7 Activity. The death or perishing of other living beings should be documented using E64 End of Existence.
Examples:
- the murder of Julius Caesar (E69,E7)
- the death of Senator Paul Wellstone</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E64_End_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E21_Person"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P100_was_death_of"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E3_Condition_State">
<rdfs:comment xml:lang="en">Scope note:
This class comprises the states of objects characterised by a certain condition over a time-span.
An instance of this class describes the prevailing physical condition of any material object or
feature during a specific E52 Time Span. In general, the time-span for which a certain
condition can be asserted may be shorter than the real time-span, for which this condition held.
The nature of that condition can be described using P2 has type. For example, the E3
Condition State "condition of the SS Great Britain between 22 September 1846 and 27 August
1847" can be characterized as E55 Type "wrecked".
Examples:
- the "Amber Room" in Tsarskoje Selo being completely reconstructed from summer 2003 until now
- the Peterhof Palace near Saint Petersburg being in ruins from 1944 – 1946
- the state of my turkey in the oven at 14:30 on 25 December, 2002 (P2 has type: E55 Type "still not cooked")</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E2_Temporal_Entity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P44i_is_condition_of"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E18_Physical_Thing"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P5i_forms_part_of"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E4_Period">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E2_Temporal_Entity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P9i_forms_part_of"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E53_Place"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P7_took_place_at"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises sets of coherent phenomena or cultural manifestations bounded in time and space.
It is the social or physical coherence of these phenomena that identify an E4 Period and not the associated spatio-temporal bounds. These bounds are a mere approximation of the actual process of growth, spread and retreat. Consequently, different periods can overlap and coexist in time and space, such as when a nomadic culture exists in the same area as a sedentary culture.
Typically this class is used to describe prehistoric or historic periods such as the "Neolithic Period", the "Ming Dynasty" or the "McCarthy Era". There are however no assumptions about the scale of the associated phenomena. In particular all events are seen as synthetic processes consisting of coherent phenomena. Therefore E4 Period is a superclass of E5 Event. For example, a modern clinical E67 Birth can be seen as both an atomic E5 Event and as an E4 Period that consists of multiple activities performed by multiple instances of E39 Actor.
There are two different conceptualisations of 'artistic style', defined either by physical features or by historical context. For example, "Impressionism" can be viewed as a period lasting from approximately 1870 to 1905 during which paintings with particular characteristics were produced by a group of artists that included (among others) Monet, Renoir, Pissarro, Sisley and Degas. Alternatively, it can be regarded as a style applicable to all paintings sharing the characteristics of the works produced by the Impressionist painters, regardless of historical context. The first interpretation is an E4 Period, and the second defines morphological object types that fall under E55 Type.
Another specific case of an E4 Period is the set of activities and phenomena associated with a settlement, such as the populated period of Nineveh.
Examples:
- Jurassic
- European Bronze Age
- Italian Renaissance
- Thirty Years War
- Sturm und Drang
- Cubism</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E14_Condition_Assessment">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E13_Attribute_Assignment"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P35_has_identified"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E18_Physical_Thing"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P34_concerned"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class describes the act of assessing the state of preservation of an object during a particular period.
The condition assessment may be carried out by inspection, measurement or through historical research. This class is used to document circumstances of the respective assessment that may be relevant to interpret its quality at a later stage, or to continue research on related documents.
Examples:
- last year's inspection of humidity damage to the frescos in the St. George chapel in our village</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E81_Transformation">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E63_Beginning_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E64_End_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P124_transformed"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/111122/E77_Persistent_Item"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P123_resulted_in"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/111122/E77_Persistent_Item"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the events that result in the simultaneous destruction of one or more than one E77 Persistent Item and the creation of one or more than one E77 Persistent Item that preserves recognizable substance from the first one(s) but has fundamentally different nature and identity.
Although the old and the new instances of E77 Persistent Item are treated as discrete entities having separate, unique identities, they are causally connected through the E81 Transformation; the destruction of the old E77 Persistent Item(s) directly causes the creation of the new one(s) using or preserving some relevant substance. Instances of E81 Transformation are therefore distinct from re-classifications (documented using E17 Type Assignment) or modifications (documented using E11 Modification) of objects that do not fundamentally change their nature or identity. Characteristic cases are reconstructions and repurposing of historical buildings or ruins, fires leaving buildings in ruins, taxidermy of specimen in natural history and the reorganization of a corporate body into a new one.
Examples:
- the death and mummification of Tut-Ankh-Amun (transformation of Tut-Ankh-Amun from a living person to a mummy) (E69,E81,E7)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E71_Man-Made_Thing">
<rdfs:comment xml:lang="en">Scope note:
This class comprises discrete, identifiable man-made items that are documented as single units.
These items are either intellectual products or man-made physical things, and are characterized by relative stability. They may for instance have a solid physical form, an electronic encoding, or they may be logical concepts or structures.
Examples:
- Beethoven's 5th Symphony (E73)
- Michelangelo's David
- Einstein's Theory of General Relativity (E73)
- the taxon 'Fringilla coelebs Linnaeus, 1758' (E55)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E70_Thing"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E58_Measurement_Unit">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E55_Type"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P91i_is_unit_of"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E54_Dimension"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class is a specialization of E55 Type and comprises the types of measurement units: feet, inches, centimetres, litres, lumens, etc.
This type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E58 Measurement Unit, e.g.: "instances of cm".
Système International (SI) units or internationally recognized non-SI terms should be used whenever possible. (ISO 1000:1992). Archaic Measurement Units used in historical records should be preserved.
Examples:
- cm [centrimetre]
- km [kilometre]
- m [meter]
- m/s [meters per second]
- A [Ampere]
- GRD [Greek Drachme]
- C° [degrees centigrade]</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E83_Type_Creation">
<rdfs:comment xml:lang="en">Scope note:
This class comprises activities formally defining new types of items.
It is typically a rigorous scholarly or scientific process that ensures a type is exhaustively described and appropriately named. In some cases, particularly in archaeology and the life sciences, E83 Type Creation requires the identification of an exemplary specimen and the publication of the type definition in an appropriate scholarly forum. The activity of E83 Type Creation is central to research in the life sciences, where a type would be referred to as a "taxon," the type description as a "protologue," and the exemplary specimens as "orgininal element" or "holotype".
Examples:
- creation of the taxon 'Penicillium brefeldianum B. O. Dodge' (1933)
- addition of class E84 Information Carrier to the CIDOC CRM</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E65_Creation"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E55_Type"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P135_created_type"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E55_Type">
<rdfs:comment xml:lang="en">Scope note:
This class comprises concepts denoted by terms from thesauri and controlled vocabularies used to characterize and classify instances of CRM classes. Instances of E55 Type represent concepts in contrast to instances of E41 Appellation which are used to name instances of CRM classes.
E55 Type is the CRM's interface to domain specific ontologies and thesauri. These can be represented in the CRM as subclasses of E55 Type, forming hierarchies of terms, i.e. instances of E55 Type linked via P127 has broader term (has narrower term). Such hierarchies may be extended with additional properties.
Examples:
- weight, length, depth [types of E54 Dimension]
- portrait, sketch, animation [types of E38 image]
- French, English, German [E56]
- excellent, good, poor [types of E3 Condition State]
- Ford Model T, chop stick [types of E22 Man-Made Object]
- cave, doline, scratch [types of E26 Physical Feature]
- poem, short story [types of E33 Linguistic Object]
- wedding, earthquake, skirmish [types of E5 Event]</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E28_Conceptual_Object"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P135i_was_created_by"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E22_Man-Made_Object">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E19_Physical_Object"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E24_Physical_Man-Made_Thing"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises physical objects purposely created by human activity.
No assumptions are made as to the extent of modification required to justify regarding an object as man-made. For example, an inscribed piece of rock or a preserved butterfly are both regarded as instances of E22 Man-Made Object.
Examples:
- Mallard (the World's fastest steam engine)
- the Portland Vase
- the Coliseum</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E52_Time-Span">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E1_CRM_Entity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P83_had_at_least_duration"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P84_had_at_most_duration"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P4i_is_time-span_of"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E2_Temporal_Entity"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E53_Place"/>
</owl:disjointWith>
<rdfs:comment xml:lang="en">Scope note:
This class comprises abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration.
Time Span has no other semantic connotations. Time-Spans are used to define the temporal extent of instances of E4 Period, E5 Event and any other phenomena valid for a certain time. An E52 Time-Span may be identified by one or more instances of E49 Time Appellation.
Since our knowledge of history is imperfect, instances of E52 Time-Span can best be considered as approximations of the actual Time-Spans of temporal entities. The properties of E52 Time-Span are intended to allow these approximations to be expressed precisely. An extreme case of approximation, might, for example, define an E52 Time-Span having unknown beginning, end and duration. Used as a common E52 Time-Span for two events, it would nevertheless define them as being simultaneous, even if nothing else was known.
Automatic processing and querying of instances of E52 Time-Span is facilitated if data can be parsed into an E61 Time Primitive.
Examples:
- 1961
- from 12-17-1993 to 12-8-1996
- 14h30 - 16h22 4th July 1945
- 9.30 am 1.1.1999 to 2.00 pm 1.1.1999
- duration of the Ming Dynasty</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E9_Move">
<rdfs:comment xml:lang="en">Scope note:
This class comprises changes of the physical location of the instances of E19 Physical Object.
Note, that the class E9 Move inherits the property P7 took place at (witnessed): E53 Place. This property should be used to describe the trajectory or a larger area within which a move takes place, whereas the properties P26 moved to (was destination of), P2 moved from (was origin of) describe the start and end points only. Moves may also be documented to consist of other moves (via P9 consists of (forms part of)), in order to describe intermediate stages on a trajectory. In that case, start and end points of the partial moves should match appropriately between each other and with the overall event.
Examples:
- the relocation of London Bridge from the UK to the USA
- the movement of the exhibition "Treasures of Tut-Ankh-Amun" 1976-1979</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E7_Activity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E53_Place"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P27_moved_from"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P26_moved_to"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E53_Place"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E19_Physical_Object"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P25_moved"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E33_Linguistic_Object">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P73i_is_translation_of"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P72_has_language"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E73_Information_Object"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises identifiable expressions in natural language or languages.
Instances of E33 Linguistic Object can be expressed in many ways: e.g. as written texts, recorded speech or sign language. However, the CRM treats instances of E33 Linguistic Object independently from the medium or method by which they are expressed. Expressions in formal languages, such as computer code or mathematical formulae, are not treated as instances of E33 Linguistic Object by the CRM. These should be modelled as instances of E73 Information Object.
The text of an instance of E33 Linguistic Object can be documented in a note by P3 has note: E62 String
Examples:
- the text of the Ellesmere Chaucer manuscript
- the lyrics of the song "Blue Suede Shoes"
- the text of the Jabberwocky by Lewis Carroll
- the text of "Doktoro Jekyll kaj Sinjoro Hyde" (an Esperanto translation of Dr Jekyll and Mr Hyde)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E35_Title">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/111122/E33_Linguistic_Object"/>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E41_Appellation"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the names assigned to works, such as texts, artworks or pieces of music.
Titles are proper noun phrases or verbal phrases, and should not be confused with generic object names such as "chair", "painting" or "book" (the latter are common nouns that stand for instances of E55 Type). Titles may be assigned by the creator of the work itself, or by a social group.
This class also comprises the translations of titles that are used as surrogates for the original titles in different social contexts.
Examples:
- "The Merchant of Venice"
- "Mona Lisa"
- "La Pie or The Magpie"
- "Lucy in the Sky with Diamonds"</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E67_Birth">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E63_Beginning_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E21_Person"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P97_from_father"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P96_by_mother"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E21_Person"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the births of human beings. E67 Birth is a biological event focussing on the context of people coming into life. (E63 Beginning of Existence comprises the coming into life of any living beings).
Twins, triplets etc. are brought into life by the same E67 Birth event. The introduction of the E67 Birth event as a documentation element allows the description of a range of family relationships in a simple model. Suitable extensions may describe more details and the complexity of motherhood with the intervention of modern medicine. In this model, the biological father is not seen as a necessary participant in the E67 Birth event.
Examples:
- the birth of Alexander the Great</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E38_Image">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E36_Visual_Item"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises distributions of form, tone and colour that may be found on surfaces such as photos, paintings, prints and sculptures or directly on electronic media.
The degree to which variations in the distribution of form and colour affect the identity of an instance of E38 Image depends on a given purpose. The original painting of the Mona Lisa in the Louvre may be said to bear the same instance of E38 Image as reproductions in the form of transparencies, postcards, posters or T-shirts, even though they may differ in size and carrier and may vary in tone and colour. The images in a "spot the difference" competition are not the same with respect to their context, however similar they may at first appear.
Examples:
- the front side of all 20 Frs notes
- the image depicted on all reproductions of the Mona Lisa</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E16_Measurement">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E13_Attribute_Assignment"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P40_observed_dimension"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E54_Dimension"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P39_measured"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises actions measuring physical properties and other values that can be determined by a systematic procedure.
Examples include measuring the monetary value of a collection of coins or the running time of a specific video cassette.
The E16 Measurement may use simple counting or tools, such as yardsticks or radiation detection devices. The interest is in the method and care applied, so that the reliability of the result may be judged at a later stage, or research continued on the associated documents. The date of the event is important for dimensions, which may change value over time, such as the length of an object subject to shrinkage. Details of methods and devices are best handled as free text, whereas basic techniques such as "carbon 14 dating" should be encoded using P2 has type (is type of:) E55 Type.
Examples:
- measurement of height of silver cup 232 on the 31st August 1997
- the carbon 14 dating of the "Schoeninger Speer II" in 1996 [an about 400.000 years old Palaeolithic complete wooden spear found in Schoeningen, Niedersachsen, Germany in 1995]</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E87_Curation_Activity">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E7_Activity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P147_curated"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E78_Collection"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the activities that result in the continuity of management and the preservation and evolution of instances of E78 Collection, following an implicit or explicit curation plan.
It specializes the notion of activity into the curation of a collection and allows the history of curation to be recorded.
Items are accumulated and organized following criteria like subject, chronological period, material type, style of art etc. and can be added or removed from an E78 Collection for a specific purpose and/or audience. The initial aggregation of items of a collection is regarded as an instance of E12 Production Event while the activity of evolving, preserving and promoting a collection is regarded as an instance of E87 Curation Activity.
Examples:
- the curation of Mikael Heggelund Foslie's coralline red algae Herbarium 1876 – 1909 (when Foslie died), now at Museum of Natural History and Archaeology, Norway</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E2_Temporal_Entity">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E1_CRM_Entity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P4_has_time-span"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="http://erlangen-crm.org/111122/E77_Persistent_Item"/>
<rdfs:comment xml:lang="en">Scope note:
This class comprises all phenomena, such as the instances of E4 Periods, E5 Events and states, which happen over a limited extent in time.
In some contexts, these are also called perdurants. This class is disjoint from E77 Persistent Item. This is an abstract class and has no direct instances. E2 Temporal Entity is specialized into E4 Period, which applies to a particular geographic area (defined with a greater or lesser degree of precision), and E3 Condition State, which applies to instances of E18 Physical Thing.
Examples:
- Bronze Age (E4)
- the earthquake in Lisbon 1755 (E5)
- the Peterhof Palace near Saint Petersburg being in ruins from 1944 – 1946 (E3)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E34_Inscription">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/111122/E33_Linguistic_Object"/>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E37_Mark"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises recognisable, short texts attached to instances of E24 Physical Man-Made Thing.
The transcription of the text can be documented in a note by P3 has note: E62 String. The alphabet used can be documented by P2 has type: E55 Type. This class does not intend to describe the idiosyncratic characteristics of an individual physical embodiment of an inscription, but the underlying prototype. The physical embodiment is modelled in the CRM as E24 Physical Man-Made Thing.
The relationship of a physical copy of a book to the text it contains is modelled using E84 Information Carrier. P128 carries (is carried by): E33 Linguistic Object.
Examples:
- "keep of the grass" on a sign stuck in the lawn of the quad of Balliol College
- Kilroy was here
- the text published in Corpus Inscriptionum LatinarumV 895</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E48_Place_Name">
<rdfs:comment xml:lang="en">Scope note:
This class comprises particular and common forms of E44 Place Appellation.
Place Names may change their application over time: the name of an E53 Place may change, and a name may be reused for a different E53 Place. Instances of E48 Place Name are typically subject to place name gazetteers.
Examples:
- "Greece"
- "Athens"
- "Geneva"
- "Lac Léman"</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E44_Place_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E54_Dimension">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E1_CRM_Entity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P91_has_unit"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises quantifiable properties that can be measured by some calibrated means and can be approximated by values, i.e. points or regions in a mathematical or conceptual space, such as natural or real numbers, RGB values etc.
An instance of E54 Dimension represents the true quantity, independent from its numerical approximation, e.g. in inches or in cm. The properties of the class E54 Dimension allow for expressing the numerical approximation of the values of an instance of E54 Dimension. If the true values belong to a non-discrete space, such as spatial distances, it is recommended to record them as approximations by intervals or regions of indeterminacy enclosing the assumed true values. For instance, a length of 5 cm may be recorded as 4.5-5.5 cm, according to the precision of the respective observation. Note, that interoperability of values described in different units depends critically on the representation as value regions.
Numerical approximations in archaic instances of E58 Measurement Unit used in historical records should be preserved. Equivalents corresponding to current knowledge should be recorded as additional instances of E54 Dimension as appropriate.
Examples:
- currency: £26.00
- length: 3.9-4.1 cm
- diameter: 26 mm
- weight: 150 lbs
- density: 0.85 gm/cc
- luminescence: 56 ISO lumens
- tin content: 0.46 %
- taille au garot: 5 hands
- calibrated C14 date: 2460-2720 years, etc</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E1_CRM_Entity">
<rdfs:comment xml:lang="en">Scope note:
This class comprises all things in the universe of discourse of the CIDOC Conceptual Reference Model. It is an abstract concept providing for three general properties:
1. Identification by name or appellation, and in particular by a preferred identifier
2. Classification by type, allowing further refinement of the specific subclass an instance belongs to
3. Attachment of free text for the expression of anything not captured by formal properties
With the exception of E59 Primitive Value, all other classes within the CRM are directly or indirectly specialisations of E1 CRM Entity.
Examples:
- the earthquake in Lisbon 1755 (E5)</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P48_has_preferred_identifier"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E36_Visual_Item">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E73_Information_Object"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the intellectual or conceptual aspects of recognisable marks and images.
This class does not intend to describe the idiosyncratic characteristics of an individual physical embodiment of a visual item, but the underlying prototype. For example, a mark such as the ICOM logo is generally considered to be the same logo when used on any number of publications. The size, orientation and colour may change, but the logo remains uniquely identifiable. The same is true of images that are reproduced many times. This means that visual items are independent of their physical support.
The class E36 Visual Item provides a means of identifying and linking together instances of E24 Physical Man-Made Thing that carry the same visual symbols, marks or images etc. The property P62 depicts (is depicted by) between E24 Physical Man-Made Thing and depicted subjects (E1 CRM Entity) can be regarded as a short-cut of the more fully developed path from E24 Physical Man-Made Thing through P6 shows visual item (is shown by), E36 Visual Item, P138 represents (has representation) to E1CRM Entity, which in addition captures the optical features of the depiction.
Examples:
- the visual appearance of Monet's "La Pie" (E38)
- the Coca-Cola logo (E34)
- the Chi-Rho (E37)
- the communist red star (E37)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E63_Beginning_of_Existence">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E5_Event"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P92_brought_into_existence"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/111122/E77_Persistent_Item"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises events that bring into existence any E77 Persistent Item.
It may be used for temporal reasoning about things (intellectual products, physical items, groups of people, living beings) beginning to exist; it serves as a hook for determination of a terminus post quem and ante quem.
Examples:
- the birth of my child
- the birth of Snoopy, my dog
- the calving of the iceberg that sank the Titanic
- the construction of the Eiffel Tower</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E64_End_of_Existence">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E5_Event"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P93_took_out_of_existence"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/111122/E77_Persistent_Item"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises events that end the existence of any E77 Persistent Item.
It may be used for temporal reasoning about things (physical items, groups of people, living beings) ceasing to exist; it serves as a hook for determination of a terminus postquem and antequem. In cases where substance from a Persistent Item continues to exist in a new form, the process would be documented by E81 Transformation.
Examples:
- the death of Snoopy, my dog
- the melting of the snowman
- the burning of the Temple of Artemis in Ephesos by Herostratos in 356BC</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E31_Document">
<rdfs:comment xml:lang="en">Scope note:
This class comprises identifiable immaterial items that make propositions about reality.
These propositions may be expressed in text, graphics, images, audiograms, videograms or by other similar means. Documentation databases are regarded as a special case of E31 Document. This class should not be confused with the term "document" in Information Technology, which is compatible with E73 Information Object.
Examples:
- the Encyclopaedia Britannica (E32)
- the photo of the Allied Leaders at Yalta published by the UPI, 1945
- the Doomsday Book</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P70_documents"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/111122/E1_CRM_Entity"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E73_Information_Object"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E27_Site">
<rdfs:comment xml:lang="en">Scope note:
This class comprises pieces of land or sea floor. In contrast to the purely geometric notion of E53 Place, this class describes constellations of matter on the surface of the Earth or other celestial body, which can be represented by photographs, paintings and maps. Instances of E27 Site are composed of relatively immobile material items and features in a particular configuration at a particular location.
Examples:
- the Amazon river basin
- Knossos
- the Apollo 11 landing site
- Heathrow Airport
- the submerged harbour of the Minoan settlement of Gournia, Crete</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E26_Physical_Feature"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E78_Collection">
<rdfs:comment xml:lang="en">Scope note:
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.
Examples:
- The John Clayton Herbarium
- the Wallace Collection
- Mikael Heggelund Foslie's coralline red algae Herbarium at Museum of Natural History
and Archaeology, Trondheim, Norway</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E24_Physical_Man-Made_Thing"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/111122/E39_Actor"/>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P109_has_current_or_former_curator"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E44_Place_Appellation">
<owl:disjointWith>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E49_Time_Appellation"/>
</owl:disjointWith>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E41_Appellation"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises any sort of identifier characteristically used to refer to an E53 Place.
Instances of E44 Place Appellation may vary in their degree of precision and their meaning may vary over time - the same instance of E44 Place Appellation may be used to refer to several places, either because of cultural shifts, or because objects used as reference points have moved around. Instances of E44 Place Appellation can be extremely varied in form: postal addresses, instances of E47 Spatial Coordinate, and parts of buildings can all be considered as instances of E44 Place Appellation.
Examples:
- "Vienna"
- "CH-1211, Genève"
- "Aquae Sulis Minerva"
- "Bath"
- "Cambridge"
- "the Other Place"
- "the City"</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E80_Part_Removal">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E11_Modification"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P112_diminished"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E24_Physical_Man-Made_Thing"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E18_Physical_Thing"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P113_removed"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the activities that result in an instance of E18 Physical Thing being decreased by the removal of a part.
Typical scenarios include the detachment of an accessory, the removal of a component or part of a composite object, or the deaccessioning of an object from a curated E78 Collection. If the E80 Part Removal results in the total decomposition of the original object into pieces, such that the whole ceases to exist, the activity should instead be modelled as an E81 Transformation, i.e. a simultaneous destruction and production. In cases where the part removed has no discernible identity prior to its removal but does have an identity subsequent to its removal, the activity should be regarded as both E80 Part Removal and E12 Production. This class of activities forms a basis for reasoning about the history, and continuity of identity over time, of objects that are removed from other objects, such as precious gemstones being extracted from different items of jewelry, or cultural artifacts being deaccessioned from different museum collections over their lifespan.
Examples:
- the removal of the engine from my car
- the disposal of object number 1976:234 from the collection</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/111122/E53_Place">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/111122/E1_CRM_Entity"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/111122/P59i_is_located_on_or_within"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises extents in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter.
The instances of E53 Place are usually determined by reference to the position of "immobile" objects such as buildings, cities, mountains, rivers, or dedicated geodetic marks. A Place can be determined by combining a frame of reference and a location with respect to this frame. It may be identified by one or more instances of E44 Place Appellation.