-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqdmtl.rdf
1602 lines (1080 loc) · 76.5 KB
/
qdmtl.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="http://onto.qdmtl.ca/"
xml:base="http://onto.qdmtl.ca/"
xmlns:geo="http://www.opengis.net/ont/geosparql#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:data="http://data.qdmtl.ca/"
xmlns:ecrm="http://erlangen-crm.org/current/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rico="https://www.ica.org/standards/RiC/ontology#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:voaf="http://purl.org/vocommons/voaf#"
xmlns:qdmtl="http://onto.qdmtl.ca/"
xmlns:vocab="http://vocab.qdmtl.ca/"
xmlns:schema="https://schema.org/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:ric-rst="https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#"
xmlns:schema1="http://schema.org/">
<owl:Ontology rdf:about="http://onto.qdmtl.ca">
<owl:versionIRI rdf:resource="http://onto.qdmtl.ca/0.0.0"/>
<dcterms:contributor>Dominic Forest</dcterms:contributor>
<dcterms:contributor>Yannic Rozon</dcterms:contributor>
<dcterms:creator>David Valentine</dcterms:creator>
<dcterms:description xml:lang="en">An ontology for former neighborhoods of Montreal. `qdmtl` in the URI stands for french "quartiers disparus de Montréal".</dcterms:description>
<dcterms:license rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTimeStamp">2022-06-25T13:40:00-05:00</dcterms:modified>
<dcterms:title xml:lang="fr">Les quartiers disparus de Montréal - Ontologie</dcterms:title>
<dcterms:title xml:lang="en">The former neighborhoods of Montreal Ontology</dcterms:title>
<vann:preferredNamespacePrefix>qdmtl</vann:preferredNamespacePrefix>
<rdfs:seeAlso rdf:resource="https://qdmtl.ca"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<!-- http://purl.org/vocab/vann/preferredNamespaceUri -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri"/>
<!-- http://schema.org/image -->
<owl:AnnotationProperty rdf:about="http://schema.org/image"/>
<!-- http://www.w3.org/2002/07/owl#sameAs -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#sameAs"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#changeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#changeNote"/>
<!-- http://www.w3.org/2004/02/skos/core#closeMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#closeMatch"/>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!-- http://www.w3.org/2004/02/skos/core#exactMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#exactMatch"/>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<!-- http://www.w3.org/2004/02/skos/core#hiddenLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#hiddenLabel">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#notation -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#notation"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
<!-- https://schema.org/url -->
<owl:AnnotationProperty rdf:about="https://schema.org/url"/>
<!-- https://www.ica.org/standards/RiC/ontology#closeTo -->
<owl:AnnotationProperty rdf:about="https://www.ica.org/standards/RiC/ontology#closeTo"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://erlangen-crm.org/current/P101_had_as_general_use -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P101_had_as_general_use">
<owl:inverseOf rdf:resource="http://erlangen-crm.org/current/P101i_was_use_of"/>
<rdfs:domain rdf:resource="http://erlangen-crm.org/current/E70_Thing"/>
<rdfs:range rdf:resource="http://erlangen-crm.org/current/E55_Type"/>
<rdfs:comment xml:lang="en">Scope note:
This property associates an instance of E70 Thing with an instance of E55 Type describing its general usage.</rdfs:comment>
<rdfs:label xml:lang="en">P101 had as general use</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/P101_had_as_general_use"/>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P101i_was_use_of -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P101i_was_use_of">
<rdfs:label xml:lang="en">P101 was use of</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/P101_had_as_general_use"/>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P168_place_is_defined_by -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P168_place_is_defined_by">
<rdfs:subPropertyOf rdf:resource="http://erlangen-crm.org/current/P1_is_identified_by"/>
<rdfs:domain rdf:resource="http://erlangen-crm.org/current/E53_Place"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This property associates an instance of E53 Place with an instance of E94 Space Primitive that defines it. Syntactic variants or use of different scripts may result in multiple instances of E94 Space Primitive defining exactly the same place. Transformations between different reference systems always result in new definitions of places approximating each other and not in alternative definitions.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P168 place is defined by</rdfs:label>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P1_is_identified_by -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P1_is_identified_by">
<owl:inverseOf rdf:resource="http://erlangen-crm.org/current/P1i_identifies"/>
<rdfs:domain rdf:resource="http://erlangen-crm.org/current/E1_CRM_Entity"/>
<rdfs:range rdf:resource="http://erlangen-crm.org/current/E41_Appellation"/>
<rdfs:comment xml:lang="en">Scope note:
This property describes the naming or identification of any real-world item by a name or any other identifier.</rdfs:comment>
<rdfs:label xml:lang="en">P1 is identified by</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/P1_is_identified_by"/>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P1i_identifies -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P1i_identifies">
<rdfs:label xml:lang="en">P1 identifies</rdfs:label>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P2_has_type -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P2_has_type">
<owl:inverseOf rdf:resource="http://erlangen-crm.org/current/P2i_is_type_of"/>
<rdfs:domain rdf:resource="http://erlangen-crm.org/current/E1_CRM_Entity"/>
<rdfs:range rdf:resource="http://erlangen-crm.org/current/E55_Type"/>
<rdfs:comment xml:lang="en">Scope note:
This property allows sub typing of CIDOC CRM entities -a form of specialisation – through the use of a terminological hierarchy, or thesaurus.</rdfs:comment>
<rdfs:label xml:lang="en">P2 has type</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/P2_has_type"/>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P2i_is_type_of -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P2i_is_type_of">
<rdfs:label xml:lang="en">P2 is type of</rdfs:label>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P53_has_former_or_current_location -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P53_has_former_or_current_location">
<owl:inverseOf rdf:resource="http://erlangen-crm.org/current/P53i_is_former_or_current_location_of"/>
<rdfs:domain rdf:resource="http://erlangen-crm.org/current/E18_Physical_Thing"/>
<rdfs:range rdf:resource="http://erlangen-crm.org/current/E53_Place"/>
<rdfs:comment xml:lang="en">This property identifies an instance of E53 Place as the former or current location of an instance of E18 Physical Thing.</rdfs:comment>
<rdfs:label xml:lang="en">P53 has former or current location</rdfs:label>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P53i_is_former_or_current_location_of -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P53i_is_former_or_current_location_of">
<rdfs:label xml:lang="en">P53 is former or current location of</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P53i</skos:notation>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P62_depicts -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P62_depicts">
<owl:inverseOf rdf:resource="http://erlangen-crm.org/current/P62i_is_depicted_by"/>
<rdfs:domain rdf:resource="http://erlangen-crm.org/current/E24_Physical_Human-Made_Thing"/>
<rdfs:range rdf:resource="http://erlangen-crm.org/current/E1_CRM_Entity"/>
<rdfs:comment xml:lang="en">This property identifies something that is depicted by an instance of E24 Physical Human-Made Thing. Depicting is meant in the sense that an instance of E24 Physical Human-Made Thing intentionally shows, through its optical qualities or form, a representation of the entity depicted. Photographs are by default regarded as being intentional in this sense.</rdfs:comment>
<rdfs:label xml:lang="en">P62 depicts</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/P62_depicts"/>
</owl:ObjectProperty>
<!-- http://erlangen-crm.org/current/P62i_is_depicted_by -->
<owl:ObjectProperty rdf:about="http://erlangen-crm.org/current/P62i_is_depicted_by">
<rdfs:label xml:lang="en">P62 is depicted by</rdfs:label>
<skos:notation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">P62i</skos:notation>
</owl:ObjectProperty>
<!-- http://onto.qdmtl.ca/thoroughfare -->
<owl:ObjectProperty rdf:about="http://onto.qdmtl.ca/thoroughfare">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://onto.qdmtl.ca/E24_Building"/>
<rdfs:range rdf:resource="http://onto.qdmtl.ca/E24_Thoroughfare"/>
<rdfs:label xml:lang="fr">bâtiment situé sur la voie de communication</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/dc/terms/format -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/format">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:range rdf:resource="http://purl.org/dc/terms/FileFormat"/>
<dcterms:description xml:lang="en">Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)]. Examples of dimensions include size and duration.</dcterms:description>
<rdfs:comment xml:lang="en">The file format, physical medium, or dimensions of the resource.</rdfs:comment>
<rdfs:label xml:lang="en">format</rdfs:label>
<rdfs:label xml:lang="fr">format</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/vocommons/voaf#reliesOn -->
<owl:ObjectProperty rdf:about="http://purl.org/vocommons/voaf#reliesOn">
<owl:inverseOf rdf:resource="http://purl.org/vocommons/voaf#usedBy"/>
</owl:ObjectProperty>
<!-- http://purl.org/vocommons/voaf#usedBy -->
<owl:ObjectProperty rdf:about="http://purl.org/vocommons/voaf#usedBy">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http://purl.org/vocommons/voaf#Vocabulary"/>
<rdfs:range rdf:resource="http://purl.org/vocommons/voaf#Vocabulary"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#inScheme -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#inScheme"/>
<!-- https://www.ica.org/standards/RiC/ontology#hasCarrierType -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasCarrierType">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#hasOrHadCategory"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isCarrierTypeOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Instantiation"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#CarrierType"/>
<rdfs:comment xml:lang="en">Connects an Instantiation to a Carrier Type which categorizes
its carrier.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has carrier type</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasContentOfType -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasContentOfType">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#hasOrHadCategory"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isContentTypeOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#Record"/>
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#RecordPart"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#ContentType"/>
<rdfs:comment xml:lang="en">Connects a Record or a Record Part to a Content Type which
categorizes its content.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has content of type</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasIdentifierType -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasIdentifierType">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#hasOrHadCategory"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isIdentifierTypeOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Identifier"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#IdentifierType"/>
<rdfs:comment xml:lang="en">Connects an Identifier and an Identifier Type that categorizes
it.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has identifier type</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasInstantiation -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasInstantiation">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isInstantiationOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Instantiation"/>
<rdfs:comment xml:lang="en">Connects a Record Resource to one of its
Instantiations.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has instantiation</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasOrHadAppellation -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasOrHadAppellation">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasAppellationOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#Instantiation"/>
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Appellation"/>
<rdfs:comment xml:lang="en">Connects a Thing to an Appellation that is or was used for
designating it.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has or had appellation</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasOrHadCategory -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasOrHadCategory">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Type"/>
<rdfs:comment xml:lang="en">Connects a Thing to a Type that categorizes or categorized
it.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has or had category</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasOrHadIdentifier -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasOrHadIdentifier">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#hasOrHadAppellation"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasIdentifierOf"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Identifier"/>
<rdfs:comment xml:lang="en">Connects a Thing to one of its past or present
Identifiers.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has or had identifier</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasOrHadMainSubject -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasOrHadMainSubject">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#hasOrHadSubject"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasMainSubjectOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Thing"/>
<rdfs:comment xml:lang="en">Connects a Record Resource to a Thing that is or was its main subject.</rdfs:comment>
<rdfs:label xml:lang="en">has or had main subject</rdfs:label>
<skos:scopeNote xml:lang="en">Use for specifying, for example, that a Record Set of type personal file has main subject some person, which would help end users to retrieve the main archival resources about this person.</skos:scopeNote>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasOrHadSubject -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasOrHadSubject">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasSubjectOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Thing"/>
<rdfs:comment xml:lang="en">Connects a Record Resource to a Thing that is or was its subject.</rdfs:comment>
<rdfs:label xml:lang="en">has or had subject</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#hasRecordSetType -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#hasRecordSetType">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#hasOrHadCategory"/>
<owl:inverseOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRecordSetTypeOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordSet"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordSetType"/>
<rdfs:comment xml:lang="en">Connects a Record Set to a Record Set Type that categorizes
it.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">has record set type</rdfs:label>
<skos:changeNote>
<rdf:Description/>
</skos:changeNote>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isCarrierTypeOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isCarrierTypeOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#CarrierType"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Instantiation"/>
<rdfs:comment xml:lang="en">Connects a Carrier Type to an Instantiation whose carrier it
categorizes.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is carrier type of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isContentTypeOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isContentTypeOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#ContentType"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#Record"/>
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#RecordPart"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Connects a Content Type to a Record or Record Part whose content
it categorizes.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is content type of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isIdentifierTypeOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isIdentifierTypeOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#IdentifierType"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#Identifier"/>
<rdfs:comment xml:lang="en">Connects an Identifier Type and an Identifier that it
categorizes.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is identifier type of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isInstantiationOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isInstantiationOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Instantiation"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
<rdfs:comment xml:lang="en">Inverse of 'has instantiation' object property.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is instantiation of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isOrWasAppellationOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isOrWasAppellationOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Appellation"/>
<rdfs:comment xml:lang="en">Connects an Appellation to a Thing that it designates or
designated.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is or was appellation of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Type"/>
<rdfs:comment xml:lang="en">Connects a Type (a category) to a Thing that it categorizes or
categorized.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is or was category of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isOrWasIdentifierOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isOrWasIdentifierOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasAppellationOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Identifier"/>
<rdfs:comment xml:lang="en">Connects an Identifier to a Thing that it identified or
identifies.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is or was identifier of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isOrWasMainSubjectOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isOrWasMainSubjectOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasSubjectOf"/>
<rdfs:comment xml:lang="en">Inverse of 'has or had main subject' object property.</rdfs:comment>
<rdfs:label xml:lang="en">is or was main subject of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isOrWasSubjectOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isOrWasSubjectOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<rdfs:comment xml:lang="en">Inverse of 'has or had subject' object property.</rdfs:comment>
<rdfs:label xml:lang="en">is or was subject of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isRecordResourceAssociatedWithRecordResource -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isRecordResourceAssociatedWithRecordResource">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isRelatedTo"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
<rdfs:comment xml:lang="en">Connects two Record Resources. This object property is
symmetric.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is record resource associated with record resource </rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isRecordSetTypeOf -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isRecordSetTypeOf">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf"/>
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordSetType"/>
<rdfs:range rdf:resource="https://www.ica.org/standards/RiC/ontology#RecordSet"/>
<rdfs:comment xml:lang="en">Connects a Record Set Type to a Record Set that it
categorizes.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is record set type of</rdfs:label>
</owl:ObjectProperty>
<!-- https://www.ica.org/standards/RiC/ontology#isRelatedTo -->
<owl:ObjectProperty rdf:about="https://www.ica.org/standards/RiC/ontology#isRelatedTo">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">The most generic object property. Connects an Thing to any other
Thing This is a symmetric object property.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">is related to </rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://onto.qdmtl.ca/endingCivicNumber -->
<owl:DatatypeProperty rdf:about="http://onto.qdmtl.ca/endingCivicNumber">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://onto.qdmtl.ca/E24_Building"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
</owl:DatatypeProperty>
<!-- http://onto.qdmtl.ca/startingCivicNumber -->
<owl:DatatypeProperty rdf:about="http://onto.qdmtl.ca/startingCivicNumber">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://onto.qdmtl.ca/E24_Building"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
</owl:DatatypeProperty>
<!-- https://www.ica.org/standards/RiC/ontology#name -->
<owl:DatatypeProperty rdf:about="https://www.ica.org/standards/RiC/ontology#name">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment xml:lang="en">A label, title or term designating the entity in order to make
it distinguishable from other similar entities. For Record Resource or Instantiation,
the Name is generally assigned by an Agent as most do not have a Name given when
created.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">name</rdfs:label>
<skos:example xml:lang="en">4 March 1842</skos:example>
<skos:example xml:lang="en">Digital copy of the Pomarius archival inventory from
1575</skos:example>
<skos:example xml:lang="en">Nelson Mandela</skos:example>
<skos:example xml:lang="en">Papers of the Earls of Liverpool</skos:example>
<skos:example xml:lang="en">Sketch Map of the Qatar Peninsula</skos:example>
<skos:example xml:lang="en">The Letter of Neacsu from Campulung to the Mayor of
Brasov</skos:example>
<skos:scopeNote xml:lang="en">Use only if you don't use Name class for handling
names.</skos:scopeNote>
</owl:DatatypeProperty>
<!-- https://www.ica.org/standards/RiC/ontology#textualValue -->
<owl:DatatypeProperty rdf:about="https://www.ica.org/standards/RiC/ontology#textualValue">
<rdfs:domain rdf:resource="https://www.ica.org/standards/RiC/ontology#Appellation"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment xml:lang="en">A textual expression of an Appellation or Date.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">textual value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://www.ica.org/standards/RiC/ontology#title -->
<owl:DatatypeProperty rdf:about="https://www.ica.org/standards/RiC/ontology#title">
<rdfs:subPropertyOf rdf:resource="https://www.ica.org/standards/RiC/ontology#name"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#Instantiation"/>
<rdf:Description rdf:about="https://www.ica.org/standards/RiC/ontology#RecordResource"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment xml:lang="en">An identifying name of a Record Resource, Instantiation or
Rule.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://www.ica.org/standards/RiC/ontology"/>
<rdfs:label xml:lang="en">title</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://erlangen-crm.org/current/E18_Physical_Thing -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E18_Physical_Thing">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E70_Thing"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E1_CRM_Entity -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E1_CRM_Entity">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">This class comprises all things in the universe of discourse of the CIDOC Conceptual Reference Model.</rdfs:comment>
<rdfs:label xml:lang="en">E1 CRM Entity</rdfs:label>
</owl:Class>
<!-- http://erlangen-crm.org/current/E24_Physical_Human-Made_Thing -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E24_Physical_Human-Made_Thing">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E71_Human-Made_Thing"/>
<rdfs:comment xml:lang="en">This class comprises all persistent physical items of any size that are purposely created by human activity. This class comprises, besides others, Human-Made objects, such as a sword, and Human-Made features, such as rock art. For example, a “cup and ring” carving on bedrock is regarded as instance of E24 Physical Human-Made Thing.</rdfs:comment>
<rdfs:comment xml:lang="fr">Également sous-classe de E18, permettant d'utiliser P53.</rdfs:comment>
<rdfs:label xml:lang="en">E24 Physical Human-Made Thing</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E24_Physical_Human-Made_Thing"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E28_Conceptual_Object -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E28_Conceptual_Object">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E71_Human-Made_Thing"/>
<rdfs:comment xml:lang="en">Scope note:
This class comprises non-material products of our minds and other human produced data that have become objects of a discourse about their identity, circumstances of creation or historical implication. The production of such information may have been supported by the use of technical devices such as cameras or computers.</rdfs:comment>
<rdfs:label xml:lang="en">E28 Conceptual Object</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E28_Conceptual_Object"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E41_Appellation -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E41_Appellation">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E90_Symbolic_Object"/>
<rdfs:comment xml:lang="en">This class comprises signs, either meaningful or not, or arrangements of signs following a specific syntax, that are used or can be used to refer to and identify a specific instance of some class or category within a certain context.
See also has alternative form property: http://cidoc-crm.org/cidoc-crm/7.1.1/P139_has_alternative_form</rdfs:comment>
<rdfs:label xml:lang="en">E41 Appellation</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E41_Appellation"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E53_Place -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E53_Place">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E1_CRM_Entity"/>
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<rdfs:label xml:lang="en">E53 Place</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E53_Place"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E55_Type -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E55_Type">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E28_Conceptual_Object"/>
<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 CIDOC CRM classes. Instances of E55 Type represent concepts in contrast to instances of E41 Appellation which are used to name instances of CIDOC CRM classes.
E55 Type is the CIDOC CRM’s interface to domain specific ontologies and thesauri. These can be represented in the CIDOC 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): E55Type. Such hierarchies may be extended with additional properties.</rdfs:comment>
<rdfs:label xml:lang="en">E55 Type</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E55_Type"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E70_Thing -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E70_Thing">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E77_Persistent_Item"/>
<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.</rdfs:comment>
<rdfs:label xml:lang="en">E70 Thing</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E70_Thing"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E71_Human-Made_Thing -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E71_Human-Made_Thing">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E70_Thing"/>
<rdfs:comment xml:lang="en">Scope note:
This class comprises discrete, identifiable human-made items that are documented as single units.</rdfs:comment>
<rdfs:label xml:lang="en">E71 Human-Made Thing</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E71_Human-Made_Thing"/>
</owl:Class>
<!-- http://erlangen-crm.org/current/E77_Persistent_Item -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E77_Persistent_Item">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E1_CRM_Entity"/>
<rdfs:comment xml:lang="en">This class comprises items that have persistent characteristics of structural nature substantially related to their identity and their integrity, sometimes known as “endurants” in philosophy. Persistent Items may be physical entities, such as people, animals or things, conceptual entities such as ideas, concepts, products of the imagination or even names.</rdfs:comment>
<rdfs:label xml:lang="en">E77 Persistent Item</rdfs:label>
</owl:Class>
<!-- http://erlangen-crm.org/current/E90_Symbolic_Object -->
<owl:Class rdf:about="http://erlangen-crm.org/current/E90_Symbolic_Object">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E28_Conceptual_Object"/>
<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.</rdfs:comment>
<rdfs:label xml:lang="en">E90 Symbolic Object</rdfs:label>
<rdfs:seeAlso rdf:resource="http://cidoc-crm.org/cidoc-crm/7.1.1/E90_Symbolic_Object"/>
</owl:Class>
<!-- http://onto.qdmtl.ca/E24_Building -->
<owl:Class rdf:about="http://onto.qdmtl.ca/E24_Building">
<rdfs:subClassOf rdf:resource="http://erlangen-crm.org/current/E24_Physical_Human-Made_Thing"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://erlangen-crm.org/current/P101_had_as_general_use"/>
<owl:someValuesFrom rdf:resource="http://onto.qdmtl.ca/E55_Building_Usage_Type"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="http://onto.qdmtl.ca/E24_Thoroughfare"/>
<rdfs:comment xml:lang="fr">Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL. Elle rassemble les bâtiments détruits des quartiers disparus de Montréal.</rdfs:comment>
<skos:altLabel xml:lang="fr">Immeuble</skos:altLabel>
<skos:prefLabel xml:lang="en">Building</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Bâtiment</skos:prefLabel>
</owl:Class>
<!-- http://onto.qdmtl.ca/E24_Commercial_Building -->
<owl:Class rdf:about="http://onto.qdmtl.ca/E24_Commercial_Building">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://onto.qdmtl.ca/E24_Building"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://erlangen-crm.org/current/P101_had_as_general_use"/>
<owl:hasValue rdf:resource="http://vocab.qdmtl.ca/trade"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment xml:lang="fr">Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL.</rdfs:comment>
<rdfs:label xml:lang="fr">Immeuble commercial</rdfs:label>
</owl:Class>
<!-- http://onto.qdmtl.ca/E24_Industrial_Building -->
<owl:Class rdf:about="http://onto.qdmtl.ca/E24_Industrial_Building">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://onto.qdmtl.ca/E24_Building"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://erlangen-crm.org/current/P101_had_as_general_use"/>
<owl:hasValue rdf:resource="http://vocab.qdmtl.ca/manufacturing"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://onto.qdmtl.ca/E24_Building"/>
<owl:disjointWith rdf:resource="http://onto.qdmtl.ca/E24_Institutional_Building"/>
<owl:disjointWith rdf:resource="http://onto.qdmtl.ca/E24_Residential_Building"/>
<rdfs:comment xml:lang="fr">Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL.</rdfs:comment>
<rdfs:label xml:lang="fr">Immeuble industriel</rdfs:label>
</owl:Class>
<!-- http://onto.qdmtl.ca/E24_Institutional_Building -->
<owl:Class rdf:about="http://onto.qdmtl.ca/E24_Institutional_Building">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://onto.qdmtl.ca/E24_Building"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://erlangen-crm.org/current/P101_had_as_general_use"/>
<owl:someValuesFrom>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://vocab.qdmtl.ca/educating"/>
<rdf:Description rdf:about="http://vocab.qdmtl.ca/government"/>
<rdf:Description rdf:about="http://vocab.qdmtl.ca/healthCare"/>
<rdf:Description rdf:about="http://vocab.qdmtl.ca/religion"/>
</owl:oneOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>