forked from DOREMUS-ANR/doremus-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crm.rdf
7166 lines (6443 loc) · 415 KB
/
crm.rdf
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:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:ecrm="http://erlangen-crm.org/current/"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:xsp="http://www.owl-ontologies.com/2005/08/07/xsp.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xml:base="http://erlangen-crm.org/current/">
<owl:Ontology rdf:about="">
<rdfs:label xml:lang="en">Erlangen CRM / OWL</rdfs:label>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>ECRM 160714 / CIDOC-CRM 6.2.1</owl:versionInfo>
<rdfs:comment xml:lang="en">Changelog: https://github.com/erlangen-crm/ecrm/commits/master</rdfs:comment>
<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>
</owl:Ontology>
<owl:Class rdf:about="http://erlangen-crm.org/current/E21_Person">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P152_has_parent"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
>2</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E39_Actor"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P98i_was_born"/>
</owl:onProperty>
<owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E20_Biological_Object"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E21</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This class comprises real persons who live or are assumed to have lived.
Legendary figures that may have existed, such as Ulysses and King Arthur, fall into this class if the documentation refers to them as historical figures. In cases where doubt exists as to whether several persons are in fact identical, multiple instances can be created and linked to indicate their relationship. The CRM does not propose a specific form to support reasoning about possible identity.
Examples:
- Tut-Ankh-Amun
- Nelson Mandela
In First Order Logic:
E21(x) ⊃ E20(x)
E21(x) ⊃ E39(x)</rdfs:comment>
<rdfs:label xml:lang="en">E21 Person</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E18_Physical_Thing">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E18</skos:notation>
<owl:disjointWith>
<owl:Class rdf:about="http://erlangen-crm.org/current/E28_Conceptual_Object"/>
</owl:disjointWith>
<rdfs:label xml:lang="en">E18 Physical Thing</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P45_consists_of"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E57_Material"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E72_Legal_Object"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises all persistent physical items with a relatively stable form, man-made or natural.
Depending on the existence of natural boundaries of such things, the CRM distinguishes the instances of E19 Physical Object from instances of E26 Physical Feature, such as holes, rivers, pieces of land etc. Most instances of E19 Physical Object can be moved (if not too heavy), whereas features are integral to the surrounding matter.
An instance of E18 Physical Thing occupies not only a particular geometric space, but in the course of its existence it also forms a trajectory through spacetime, which occupies a real, that is phenomenal, volume in spacetime. We include in the occupied space the space filled by the matter of the physical thing and all its inner spaces, such as the interior of a box. Physical things consisting of aggregations of physically unconnected objects, such as a set of chessmen, occupy a number of individually contiguous spacetime volumes equal to the number of unconnected objects that constitute the set.
We model E18 Physical Thing to be a subclass of E72 Legal Object and of E92 Spacetime volume. The latter is intended as a phenomenal spacetime volume as defined in CRMgeo (Doerr and Hiebel 2013). By virtue of this multiple inheritance we can discuss the physical extent of an E18 Physical Thing without representing each instance of it together with an instance of its associated spacetime volume. This model combines two quite different kinds of substance: an instance of E18 Physical Thing is matter while a spacetime volume is an aggregation of points in spacetime. However, the real spatiotemporal extent of an instance of E18 Physical Thing is regarded to be unique to it, due to all its details and fuzziness; its identity and existence depends uniquely on the identity of the instance of E18 Physical Thing. Therefore this multiple inheritance is unambiguous and effective and furthermore corresponds to the intuitions of natural language.
The CIDOC CRM is generally not concerned with amounts of matter in fluid or gaseous states.
Examples:
- the Cullinan Diamond (E19)
- the cave "Ideon Andron" in Crete (E26)
- the Mona Lisa (E22)
In First Order Logic:
E18(x) ⊃ E72(x)
E18(x) ⊃ E92(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P13i_was_destroyed_by"/>
</owl:onProperty>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E92_Spacetime_Volume"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E53_Place"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P53_has_former_or_current_location"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E82_Actor_Appellation">
<rdfs:comment xml:lang="en">Scope note:
This class comprises any sort of name, number, code or symbol characteristically used to identify an E39 Actor.
An E39 Actor will typically have more than one E82 Actor Appellation, and instances of E82 Actor Appellation in turn may have alternative representations. The distinction between corporate and personal names, which is particularly important in library applications, should be made by explicitly linking the E82 Actor Appellation to an instance of either E21 Person or E74 Group/E40 Legal Body. If this is not possible, the distinction can be made through the use of the P2 has type mechanism.
Examples:
- "John Doe"
- "Doe, J"
- "the U.S. Social Security Number 246-14-2304"
- "the Artist Formerly Known as Prince"
- "the Master of the Flemish Madonna"
- "Raphael's Workshop"
- "the Brontë Sisters"
- "ICOM"
- "International Council of Museums"
In First Order Logic:
E82(x) ⊃ E41(x)</rdfs:comment>
<rdfs:label xml:lang="en">E82 Actor Appellation</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E82</skos:notation>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E41_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E90_Symbolic_Object">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E90</skos:notation>
<rdfs:label xml:lang="en">E90 Symbolic Object</rdfs:label>
<rdfs:comment xml:lang="en">Scope note:
This class comprises identifiable symbols and any aggregation of symbols, such as characters, identifiers, traffic signs, emblems, texts, data sets, images, musical scores, multimedia objects, computer program code or mathematical formulae that have an objectively recognizable structure and that are documented as single units.
It includes sets of signs of any nature, which may serve to designate something, or to communicate some propositional content.
An instance of E90 Symbolic Object does not depend on a specific physical carrier, which can include human memory, and it can exist on one or more carriers simultaneously. An instance of E90 Symbolic Object may or may not have a specific meaning, for example an arbitrary character string.
In some cases, the content of an instance of E90 Symbolic Object may completely be represented by a serialized digital content model, such as a sequence of ASCII-encoded characters, an XML or HTML document, or a TIFF image. The property P3 has note allows for the description of this content model. In order to disambiguate which symbolic level is the carrier of the meaning, the property P3.1 has type can be used to specify the encoding (e.g. "bit", "Latin character", RGB pixel).
Examples:
- 'ecognizabl'
- The "no-smoking" sign (E36)
- "BM000038850.JPG" (E75)
- image BM000038850.JPG from the Clayton Herbarium in London (E38)
- The distribution of form, tone and colour found on Leonardo da Vinci's painting named "Mona Lisa" in daylight (E38)
- The Italian text of Dante's "Divina Commedia" as found in the authoritative critical edition La Commedia secondo l'antica vulgata a cura di Giorgio Petrocchi, Milano: Mondadori, 1966-67 (= Le Opere di Dante Alighieri, Edizione Nazionale a cura della Società Dantesca Italiana, VII, 1-4) (E33)
In First Order Logic:
E90(x) ⊃ E28(x)
E90(x) ⊃ E72(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:TransitiveProperty rdf:about="http://erlangen-crm.org/current/P106_is_composed_of"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/current/E90_Symbolic_Object"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E72_Legal_Object"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E28_Conceptual_Object"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E45_Address">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E45</skos:notation>
<rdfs:label xml:lang="en">E45 Address</rdfs:label>
<rdfs:comment xml:lang="en">Scope note:
This class comprises identifiers expressed in coding systems for places, such as postal addresses used for mailing.
An E45 Address can be considered both as the name of an E53 Place and as an E51 Contact Point for an E39 Actor. This dual aspect is reflected in the multiple inheritance. However, some forms of mailing addresses, such as a postal box, are only instances of E51 Contact Point, since they do not identify any particular Place. These should not be documented as instances of E45 Address.
Examples:
- "1-29-3 Otsuka, Bunkyo-ku, Tokyo, 121, Japan"
- "Rue David Dufour 5, CH-1211, Genève"
In First Order Logic:
E45(x) ⊃ E44(x)
E45(x) ⊃ E51(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E51_Contact_Point"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E44_Place_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E74_Group">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P107_has_current_or_former_member"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>2</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>0</owl:minCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P146i_lost_member_by"/>
</owl:onProperty>
</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/current/P95i_was_formed_by"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P144i_gained_member_by"/>
</owl:onProperty>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>2</owl:minCardinality>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E39_Actor"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E74</skos:notation>
<rdfs:label xml:lang="en">E74 Group</rdfs:label>
<rdfs:comment xml:lang="en">Scope note:
This class comprises any gatherings or organizations of E39 Actors that act collectively or in a similar way due to any form of unifying relationship. In the wider sense this class also comprises official positions which used to be regarded in certain contexts as one actor, independent of the current holder
of the office, such as the president of a country. In such cases, it may happen that the Group never had more than one member. A joint pseudonym (i.e., a name that seems indicative of an individual but that is actually used as a persona by two or more people) is a particular case of E74 Group..
A gathering of people becomes an E74 Group when it exhibits organizational characteristics usually typified by a set of ideas or beliefs held in common, or actions performed together. These might be communication, creating some common artifact, a common purpose such as study, worship, business, sports, etc. Nationality can be modelled as membership in an E74 Group (cf. HumanML markup). Married couples and other concepts of family are regarded as particular examples of E74 Group.
Examples:
- the impressionists
- the Navajo
- the Greeks
- the peace protestors in New York City on February 15 2003
- Exxon-Mobil
- King Solomon and his wives
- the President of the Swiss Confederation
- Nicolas Bourbaki
- Betty Crocker
- Ellery Queen
In First Order Logic:
E74(x) ⊃ E39(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E31_Document">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E31</skos:notation>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E73_Information_Object"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P70_documents"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E1_CRM_Entity"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">E31 Document</rdfs:label>
<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 image content of the photo of the Allied Leaders at Yalta published by UPI, 1945 (E38)
- the Doomsday Book
In First Order Logic:
E31(x) ⊃ E73(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E47_Spatial_Coordinates">
<rdfs:label xml:lang="en">E47 Spatial Coordinates</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E47</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the textual or numeric information required to locate specific instances of E53 Place within schemes of spatial identification.
Coordinates are a specific form of E44 Place Appellation, that is, a means of referring to a particular E53 Place. Coordinates are not restricted to longitude, latitude and altitude. Any regular system of reference that maps onto an E19 Physical Object can be used to generate coordinates.
Examples:
- "6°5'29"N 45°12'13"W"
- "Black queen's bishop 4" [chess coordinate].
In First Order Logic:
E47(x) ⊃ E44(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E44_Place_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E17_Type_Assignment">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E17</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This class comprises the actions of classifying items of whatever kind. Such items include objects, specimens, people, actions and concepts.
This class allows for the documentation of the context of classification acts in cases where the value of the classification depends on the personal opinion of the classifier, and the date that the classification was made. This class also encompasses the notion of "determination", i.e. the systematic and molecular identification of a specimen in biology.
Examples:
- the first classification of object GE34604 as Lament Cloth, October 2nd
- the determination of a cactus in Martin Doerr's garden as 'Cereus hildmannianus K.Schumann', July 2003
In First Order Logic:
E17(x) ⊃ E13(x)</rdfs:comment>
<rdfs:label xml:lang="en">E17 Type Assignment</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E55_Type"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P42_assigned"/>
</owl:onProperty>
</owl:Restriction>
</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/current/P41_classified"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E13_Attribute_Assignment"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E92_Spacetime_Volume">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E1_CRM_Entity"/>
</rdfs:subClassOf>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>Scope note:
This class comprises 4 dimensional point sets (volumes) in physical spacetime regardless its true geometric form. They may derive their identity from being the extent of a material phenomenon or from being the interpretation of an expression defining an extent in spacetime. Intersections of instances of E92 Spacetime Volume, Place and Timespan are also regarded as instances of E92 Spacetime Volume. An instance of E92 Spacetime Volume is either contiguous or composed of a finite number of contiguous subsets. Its boundaries may be fuzzy due to the properties of the phenomena it derives from or due to the limited precision up to which defining expression can be identified with a real extent in spacetime. The duration of existence of an instance of a spacetime volume is trivially its projection on time.
Examples:
- the spacetime Volume of the Event of Ceasars murder
- the spacetime Volume where and when the carbon 14 dating of the "Schoeninger Speer II" in 1996 took place
- the spatio‐temporal trajectory of the H.M.S. Victory from its building to its actual location
- the spacetime volume defined by a polygon approximating the Danube river flood in Austria between 6th and 9th of August 2002
In First Order Logic:
E92(x) ⊃ E1(x)</rdfs:comment>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E92</skos:notation>
<rdfs:label xml:lang="en">E92 Spacetime Volume</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E5_Event">
<rdfs:comment xml:lang="en">Scope note:
This class comprises changes of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena. Such changes of state will affect instances of E77 Persistent Item or its subclasses.
The distinction between an E5 Event and an E4 Period is partly a question of the scale of observation. Viewed at a coarse level of detail, an E5 Event is an 'instantaneous' change of state. At a fine level, the E5 Event can be analysed into its component phenomena within a space and time frame, and as such can be seen as an E4 Period. The reverse is not necessarily the case: not all instances of E4 Period give rise to a noteworthy change of state.
Examples:
- the birth of Cleopatra (E67)
- the destruction of Herculaneum by volcanic eruption in 79 AD (E6)
- World War II (E7)
- the Battle of Stalingrad (E7)
- the Yalta Conference (E7)
- my birthday celebration 28-6-1995 (E7)
- the falling of a tile from my roof last Sunday
- the CIDOC Conference 2003 (E7)
In First Order Logic:
E5(x) ⊃ E4(x)</rdfs:comment>
<rdfs:label xml:lang="en">E5 Event</rdfs:label>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E77_Persistent_Item"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P12_occurred_in_the_presence_of"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E4_Period"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E5</skos:notation>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E70_Thing">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E77_Persistent_Item"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E70</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This general class comprises discrete, identifiable, instances of E77 Persistent Item that are documented as single units, that either consist of matter or depend on being carried by matter and are characterized by relative stability.
They may be intellectual products or physical things. They may for instance have a solid physical form, an electronic encoding, or they may be a logical concept or structure.
Examples:
- my photograph collection (E78)
- the bottle of milk in my refrigerator (E22)
- the plan of the Strassburger Muenster (E29)
- the thing on the top of Otto Hahn's desk (E19)
- the form of the no-smoking sign (E36)
- the cave of Dirou, Mani, Greece (E27)
In First Order Logic:
E70(x) ⊃ E77(x)</rdfs:comment>
<rdfs:label xml:lang="en">E70 Thing</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E9_Move">
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E19_Physical_Object"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P25_moved"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P26_moved_to"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E53_Place"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:TransitiveProperty rdf:about="http://erlangen-crm.org/current/P27_moved_from"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E53_Place"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E7_Activity"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E9</skos:notation>
<rdfs:label xml:lang="en">E9 Move</rdfs:label>
<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), P27 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
In First Order Logic:
E9(x) ⊃ E7(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E49_Time_Appellation">
<rdfs:label xml:lang="en">E49 Time Appellation</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E49</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This class comprises all forms of names or codes, such as historical periods, and dates, which are characteristically used to refer to a specific E52 Time-Span.
The instances of E49 Time Appellation may vary in their degree of precision, and they may be relative to other time frames, "Before Christ" for example. Instances of E52 Time-Span are often defined by reference to a cultural period or an event e.g. 'the duration of the Ming Dynasty'.
Examples:
- "Meiji" [Japanese term for a specific time-span]
- "1st half of the XX century"
- "Quaternary"
- "1215 Hegira" [a date in the Islamic calendar]
- "Last century"
In First Order Logic:
E49(x) ⊃ E41(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E41_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E4_Period">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E92_Spacetime_Volume"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E53_Place"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P7_took_place_at"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E2_Temporal_Entity"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E4</skos:notation>
<rdfs:label xml:lang="en">E4 Period</rdfs:label>
<rdfs:comment xml:lang="en">Scope note:
This class comprises sets of coherent phenomena or cultural manifestations occurring in time and space.
It is the social or physical coherence of these phenomena that identify an E4 Period and not the associated spatiotemporal extent. This extent is only the “ground” or space in an abstract physical sense that the actual process of growth, spread and retreat has covered. Consequently, different periods can overlap and coexist in time and space, such as when a nomadic culture exists in the same area and time as a sedentary culture. This also means that overlapping land use rights, common among first nations, amounts to overlapping periods.
Often, this class is used to describe prehistoric or historic periods such as the “Neolithic Period”, the “Ming Dynasty” or the “McCarthy Era”, but also geopolitical units and activities of settlements are regarded as special cases of E4 Period. However, there are 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.
As the actual extent of an E4 Period in spacetime we regard the trajectories of the participating physical things during their participation in an instance of E4 Period. This includes the open spaces via which these things have interacted and the spaces by which they had the potential to interact during that period or event in the way defined by the type of the respective period or event. Examples include the air in a meeting room transferring the voices of the participants. Since these phenomena are fuzzy, we assume the spatiotemporal extent to be contiguous, except for cases of phenomena spreading out over islands or other separated areas, including geopolitical units distributed over disconnected areas such as islands or colonies.
Whether the trajectories necessary for participants to travel between these areas are regarded as part of the spatiotemporal extent or not has to be decided in each case based on a concrete analysis, taking use of the sea for other purposes than travel, such as fishing, into consideration. One may also argue that the activities to govern disconnected areas imply travelling through spaces connecting them and that these areas hence are spatially connected in a way, but it appears counterintuitive to consider for instance travel routes in international waters as extensions of geopolitical units.
Consequently, an instance of E4 Period may occupy a number of disjoint spacetime volumes, however there must not be a discontinuity in the timespan covered by these spacetime volumes. This means that an instance of E4 Period must be contiguous in time. If it has ended in all areas, it has ended as a whole. However it may end in one area before another, such as in the Polynesian migration, and it continues as long as it is ongoing in at least one area.
We model E4 Period as a subclass of E2 Temporal Entity and of E92 Spacetime volume. The latter is intended as a phenomenal spacetime volume as defined in CRMgeo (Doerr and Hiebel 2013). By virtue of this multiple inheritance we can discuss the physical extent of an E4 Period without representing each instance of it together with an instance of its associated spacetime volume. This model combines two quite different kinds of substance: an instance of E4 Period is a phenomena while a spacetime volume is an aggregation of points in spacetime. However, the real spatiotemporal extent of an instance of E4 Period is regarded to be unique to it due to all its details and fuzziness; its identity and existence depends uniquely on the identity of the instance of E4 Period. Therefore this multiple inheritance is unambiguous and effective and furthermore corresponds to the intuitions of natural language.
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 instance of 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
In First Order Logic:
E4(x) ⊃ E2(x)
E4(x) ⊃ E92(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E81_Transformation">
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E77_Persistent_Item"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P123_resulted_in"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E77_Persistent_Item"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P124_transformed"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E64_End_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E63_Beginning_of_Existence"/>
</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)
In First Order Logic:
E81(x) ⊃ E63(x)
E81(x) ⊃ E64(x)</rdfs:comment>
<rdfs:label xml:lang="en">E81 Transformation</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E81</skos:notation>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E86_Leaving">
<rdfs:label xml:lang="en">E86 Leaving</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E86</skos:notation>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P146_separated_from"/>
</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:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:cardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P145_separated"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E7_Activity"/>
</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. It may be the initiative of a third 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
- The implementation of the treaty regulating the termination of Greenland’s membership in EU between EU, Denmark and Greenland February 1. 1985
In First Order Logic:
E86(x) ⊃ E7(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E66_Formation">
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E7_Activity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/current/E74_Group"/>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P95_has_formed"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E63_Beginning_of_Existence"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E66</skos:notation>
<rdfs:label xml:lang="en">E66 Formation</rdfs:label>
<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 require 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
In First Order Logic:
E66(x) ⊃ E7(x)
E66(x) ⊃ E63(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E25_Man-Made_Feature">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E25</skos:notation>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E26_Physical_Feature"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E24_Physical_Man-Made_Thing"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises physical features that are purposely created by human activity, such as scratches, artificial caves, artificial water channels, etc.
No assumptions are made as to the extent of modification required to justify regarding a feature as man-made. For example, rock art or even "cup and ring" carvings on bedrock a regarded as types of E25 Man-Made Feature.
Examples:
- the Manchester Ship Canal
- Michael Jackson's nose following plastic surgery
In First Order Logic:
E25(x) ⊃ E26(x)
E25(x) ⊃ E24(x)</rdfs:comment>
<rdfs:label xml:lang="en">E25 Man-Made Feature</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E46_Section_Definition">
<rdfs:subClassOf>
<owl:Restriction>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P58i_defines_section"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E44_Place_Appellation"/>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Scope note:
This class comprises areas of objects referred to in terms specific to the general geometry or structure of its kind.
The 'prow' of the boat, the 'frame' of the picture, the 'front' of the building are all instances of E46 Section Definition. The class highlights the fact that parts of objects can be treated as locations. This holds in particular for features without natural boundaries, such as the "head" of a marble statue made out of one block (cf. E53 Place). In answer to the question 'where is the signature?' one might reply 'on the lower left corner'. (Section Definition is closely related to the term "segment" in Gerstl, P.& Pribbenow, S, 1996 " A conceptual theory of part – whole relations and its applications", Data & Knowledge Engineering 20 305-322, North Holland- Elsevier).
Examples:
- "the entrance lobby to the Ripley Center"
- "the poop deck of H.M.S Victory"
- "the Venus de Milo's left buttock"
- "left inner side of my box"
In First Order Logic:
E46(x) ⊃ E44(x)</rdfs:comment>
<rdfs:label xml:lang="en">E46 Section Definition</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E46</skos:notation>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E64_End_of_Existence">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E64</skos:notation>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E77_Persistent_Item"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P93_took_out_of_existence"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E5_Event"/>
<rdfs:label xml:lang="en">E64 End of Existence</rdfs:label>
<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
In First Order Logic:
E64(x) ⊃ E5(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E42_Identifier">
<rdfs:comment xml:lang="en">Scope note:
This class comprises strings or codes assigned to instances of E1 CRM Entity in order to identify them uniquely and permanently within the context of one or more organisations. Such codes are often known as inventory numbers, registration codes, etc. and are typically composed of alphanumeric sequences. The class E42 Identifier is not normally used for machine-generated identifiers used for automated processing unless these are also used by human agents.
Examples:
- "MM.GE.195"
- "13.45.1976"
- "OXCMS: 1997.4.1"
- ISSN "0041-5278"
- ISRC "FIFIN8900116"
- Shelf mark "Res 8 P 10"
- "Guillaume de Machaut (1300?-1377)" [a controlled personal name heading that follows
the French rules]
In First Order Logic:
E42(x) ⊃ E41(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E41_Appellation"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E42</skos:notation>
<rdfs:label xml:lang="en">E42 Identifier</rdfs:label>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E27_Site">
<rdfs:label xml:lang="en">E27 Site</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E27</skos:notation>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E26_Physical_Feature"/>
</rdfs:subClassOf>
<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
In First Order Logic:
E27(x)⊃ E26(x)</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E12_Production">
<rdfs:label xml:lang="en">E12 Production</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E12</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This class comprises activities that are designed to, and succeed in, creating one or more new items.
It specializes the notion of modification into production. The decision as to whether or not an object is regarded as new is context sensitive. Normally, items are considered "new" if there is no obvious overall similarity between them and the consumed items and material used in their production. In other cases, an item is considered "new" because it becomes relevant to documentation by a modification. For example, the scribbling of a name on a potsherd may make it a voting token. The original potsherd may not be worth documenting, in contrast to the inscribed one.
This entity can be collective: the printing of a thousand books, for example, would normally be considered a single event.
An event should also be documented using E81 Transformation if it results in the destruction of one or more objects and the simultaneous production of others using parts or material from the originals. In this case, the new items have separate identities and matter is preserved, but identity is not.
Examples:
- the construction of the SS Great Britain
- the first casting of the Little Mermaid from the harbour of Copenhagen
- Rembrandt's creating of the seventh state of his etching "Woman sitting half dressed beside a stove", 1658, identified by Bartsch Number 197 (E12,E65,E81)
In First Order Logic:
E12(x) ⊃ E11(x)
E12(x) ⊃ E63(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E63_Beginning_of_Existence"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P108_has_produced"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E24_Physical_Man-Made_Thing"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E11_Modification"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E48_Place_Name">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E48</skos:notation>
<rdfs:label xml:lang="en">E48 Place Name</rdfs:label>
<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"
In First Order Logic:
E48(x) ⊃ E44(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E44_Place_Appellation"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E89_Propositional_Object">
<rdfs:label xml:lang="en">E89 Propositional Object</rdfs:label>
<rdfs:comment xml:lang="en">Scope note:
This class comprises immaterial items, including but not limited to stories, plots, procedural prescriptions, algorithms, laws of physics or images that are, or represent in some sense, sets of propositions about real or imaginary things and that are documented as single units or serve as topic of discourse.
This class also comprises items that are "about" something in the sense of a subject. In the wider sense, this class includes expressions of psychological value such as non-figural art and musical themes. However, conceptual items such as types and classes are not instances of E89 Propositional Object. This should not be confused with the definition of a type, which is indeed an instance of E89 Propositional Object.
Examples:
- Maxwell's Equations
- The ideational contents of Aristotle's book entitled 'Metaphysics' as rendered in the Greek texts translated in … Oxford edition…
- The underlying prototype of any "no-smoking" sign (E36)
- The common ideas of the plots of the movie "The Seven Samurai" by Akira Kurosawa and the movie "The Magnificent Seven" by John Sturges
- The image content of the photo of the Allied Leaders at Yalta published by UPI, 1945 (E38)
In First Order Logic:
E89(x) ⊃ E28(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E1_CRM_Entity"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P67i_is_referred_to_by"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P129i_is_subject_of"/>
</owl:onProperty>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E1_CRM_Entity"/>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<owl:TransitiveProperty rdf:about="http://erlangen-crm.org/current/P148_has_component"/>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://erlangen-crm.org/current/E89_Propositional_Object"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E28_Conceptual_Object"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E89</skos:notation>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E65_Creation">
<rdfs:label xml:lang="en">E65 Creation</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E65</skos:notation>
<rdfs:comment xml:lang="en">Scope note:
This class comprises events that result in the creation of conceptual items or immaterial products, such as legends, poems, texts, music, images, movies, laws, types etc.
Examples:
- the framing of the U.S. Constitution
- the drafting of U.N. resolution 1441
In First Order Logic:
E65(x) ⊃ E7(x)
E65(x) ⊃ E63(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E7_Activity"/>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:someValuesFrom>
<owl:Class rdf:about="http://erlangen-crm.org/current/E28_Conceptual_Object"/>
</owl:someValuesFrom>
<owl:onProperty>
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P94_has_created"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E63_Beginning_of_Existence"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E54_Dimension">
<rdfs:label xml:lang="en">E54 Dimension</rdfs:label>
<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
In First Order Logic:
E54(x) ⊃ E1(x)</rdfs:comment>
<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/current/P91_has_unit"/>
</owl:onProperty>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Class rdf:about="http://erlangen-crm.org/current/E1_CRM_Entity"/>
</rdfs:subClassOf>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E54</skos:notation>
</owl:Class>
<owl:Class rdf:about="http://erlangen-crm.org/current/E63_Beginning_of_Existence">
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>E63</skos:notation>
<rdfs:label xml:lang="en">E63 Beginning of Existence</rdfs:label>
<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
In First Order Logic:
E63(x) ⊃ E5(x)</rdfs:comment>
<rdfs:subClassOf>
<owl:Restriction>