-
Notifications
You must be signed in to change notification settings - Fork 0
/
qdmtl.ttl
1163 lines (906 loc) · 60 KB
/
qdmtl.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://onto.qdmtl.ca/> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix data: <http://data.qdmtl.ca/> .
@prefix ecrm: <http://erlangen-crm.org/current/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix qdmtl: <http://onto.qdmtl.ca/> .
@prefix vocab: <http://vocab.qdmtl.ca/> .
@prefix schema: <https://schema.org/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ric-rst: <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .
@base <http://onto.qdmtl.ca> .
<http://onto.qdmtl.ca> rdf:type owl:Ontology ;
owl:versionIRI <http://onto.qdmtl.ca/0.0.0> ;
dcterms:contributor "Dominic Forest" ,
"Yannic Rozon" ;
dcterms:creator "David Valentine" ;
dcterms:description "An ontology for former neighborhoods of Montreal. `qdmtl` in the URI stands for french \"quartiers disparus de Montréal\"."@en ;
dcterms:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
dcterms:modified "2022-06-25T13:40:00-05:00"^^xsd:dateTimeStamp ;
dcterms:title "Les quartiers disparus de Montréal - Ontologie"@fr ,
"The former neighborhoods of Montreal Ontology"@en ;
vann:preferredNamespacePrefix "qdmtl" ;
rdfs:seeAlso <https://qdmtl.ca> .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dcterms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
### http://schema.org/image
<http://schema.org/image> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#sameAs
owl:sameAs rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf rdfs:label ;
rdfs:range rdf:PlainLiteral .
### http://www.w3.org/2004/02/skos/core#changeNote
skos:changeNote rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#closeMatch
skos:closeMatch rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#exactMatch
skos:exactMatch rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#hiddenLabel
skos:hiddenLabel rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf rdfs:label ;
rdfs:range rdf:PlainLiteral .
### http://www.w3.org/2004/02/skos/core#notation
skos:notation rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf rdfs:label ;
rdfs:range rdf:PlainLiteral .
### http://www.w3.org/2004/02/skos/core#scopeNote
skos:scopeNote rdf:type owl:AnnotationProperty .
### https://schema.org/url
schema:url rdf:type owl:AnnotationProperty .
### https://www.ica.org/standards/RiC/ontology#closeTo
rico:closeTo rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://erlangen-crm.org/current/P101_had_as_general_use
ecrm:P101_had_as_general_use rdf:type owl:ObjectProperty ;
owl:inverseOf ecrm:P101i_was_use_of ;
rdfs:domain ecrm:E70_Thing ;
rdfs:range ecrm:E55_Type ;
rdfs:comment """Scope note:
This property associates an instance of E70 Thing with an instance of E55 Type describing its general usage."""@en ;
rdfs:label "P101 had as general use"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/P101_had_as_general_use> .
### http://erlangen-crm.org/current/P101i_was_use_of
ecrm:P101i_was_use_of rdf:type owl:ObjectProperty ;
rdfs:label "P101 was use of"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/P101_had_as_general_use> .
### http://erlangen-crm.org/current/P168_place_is_defined_by
ecrm:P168_place_is_defined_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ecrm:P1_is_identified_by ;
rdfs:domain ecrm:E53_Place ;
rdfs:comment "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."^^xsd:string ;
rdfs:label "P168 place is defined by"^^xsd:string .
### http://erlangen-crm.org/current/P1_is_identified_by
ecrm:P1_is_identified_by rdf:type owl:ObjectProperty ;
owl:inverseOf ecrm:P1i_identifies ;
rdfs:domain ecrm:E1_CRM_Entity ;
rdfs:range ecrm:E41_Appellation ;
rdfs:comment """Scope note:
This property describes the naming or identification of any real-world item by a name or any other identifier."""@en ;
rdfs:label "P1 is identified by"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/P1_is_identified_by> .
### http://erlangen-crm.org/current/P1i_identifies
ecrm:P1i_identifies rdf:type owl:ObjectProperty ;
rdfs:label "P1 identifies"@en .
### http://erlangen-crm.org/current/P2_has_type
ecrm:P2_has_type rdf:type owl:ObjectProperty ;
owl:inverseOf ecrm:P2i_is_type_of ;
rdfs:domain ecrm:E1_CRM_Entity ;
rdfs:range ecrm:E55_Type ;
rdfs:comment """Scope note:
This property allows sub typing of CIDOC CRM entities -a form of specialisation – through the use of a terminological hierarchy, or thesaurus."""@en ;
rdfs:label "P2 has type"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/P2_has_type> .
### http://erlangen-crm.org/current/P2i_is_type_of
ecrm:P2i_is_type_of rdf:type owl:ObjectProperty ;
rdfs:label "P2 is type of"@en .
### http://erlangen-crm.org/current/P53_has_former_or_current_location
ecrm:P53_has_former_or_current_location rdf:type owl:ObjectProperty ;
owl:inverseOf ecrm:P53i_is_former_or_current_location_of ;
rdfs:domain ecrm:E18_Physical_Thing ;
rdfs:range ecrm:E53_Place ;
rdfs:comment "This property identifies an instance of E53 Place as the former or current location of an instance of E18 Physical Thing."@en ;
rdfs:label "P53 has former or current location"@en .
### http://erlangen-crm.org/current/P53i_is_former_or_current_location_of
ecrm:P53i_is_former_or_current_location_of rdf:type owl:ObjectProperty ;
rdfs:label "P53 is former or current location of"@en ;
skos:notation "P53i"^^xsd:string .
### http://erlangen-crm.org/current/P62_depicts
ecrm:P62_depicts rdf:type owl:ObjectProperty ;
owl:inverseOf ecrm:P62i_is_depicted_by ;
rdfs:domain ecrm:E24_Physical_Human-Made_Thing ;
rdfs:range ecrm:E1_CRM_Entity ;
rdfs:comment "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."@en ;
rdfs:label "P62 depicts"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/P62_depicts> .
### http://erlangen-crm.org/current/P62i_is_depicted_by
ecrm:P62i_is_depicted_by rdf:type owl:ObjectProperty ;
rdfs:label "P62 is depicted by"@en ;
skos:notation "P62i"^^xsd:string .
### http://onto.qdmtl.ca/thoroughfare
qdmtl:thoroughfare rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain qdmtl:E24_Building ;
rdfs:range qdmtl:E24_Thoroughfare ;
rdfs:label "bâtiment situé sur la voie de communication"@fr .
### http://purl.org/dc/terms/format
dcterms:format rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:range dcterms:FileFormat ;
dcterms:description "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."@en ;
rdfs:comment "The file format, physical medium, or dimensions of the resource."@en ;
rdfs:label "format"@en ,
"format"@fr .
### http://purl.org/vocommons/voaf#reliesOn
voaf:reliesOn rdf:type owl:ObjectProperty ;
owl:inverseOf voaf:usedBy .
### http://purl.org/vocommons/voaf#usedBy
voaf:usedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain voaf:Vocabulary ;
rdfs:range voaf:Vocabulary .
### http://www.w3.org/2004/02/skos/core#inScheme
skos:inScheme rdf:type owl:ObjectProperty .
### https://www.ica.org/standards/RiC/ontology#hasCarrierType
rico:hasCarrierType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:hasOrHadCategory ;
owl:inverseOf rico:isCarrierTypeOf ;
rdfs:domain rico:Instantiation ;
rdfs:range rico:CarrierType ;
rdfs:comment """Connects an Instantiation to a Carrier Type which categorizes
its carrier."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has carrier type"@en .
### https://www.ica.org/standards/RiC/ontology#hasContentOfType
rico:hasContentOfType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:hasOrHadCategory ;
owl:inverseOf rico:isContentTypeOf ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( rico:Record
rico:RecordPart
)
] ;
rdfs:range rico:ContentType ;
rdfs:comment """Connects a Record or a Record Part to a Content Type which
categorizes its content."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has content of type"@en .
### https://www.ica.org/standards/RiC/ontology#hasIdentifierType
rico:hasIdentifierType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:hasOrHadCategory ;
owl:inverseOf rico:isIdentifierTypeOf ;
rdfs:domain rico:Identifier ;
rdfs:range rico:IdentifierType ;
rdfs:comment """Connects an Identifier and an Identifier Type that categorizes
it."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has identifier type"@en .
### https://www.ica.org/standards/RiC/ontology#hasInstantiation
rico:hasInstantiation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
owl:inverseOf rico:isInstantiationOf ;
rdfs:domain rico:RecordResource ;
rdfs:range rico:Instantiation ;
rdfs:comment """Connects a Record Resource to one of its
Instantiations."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has instantiation"@en .
### https://www.ica.org/standards/RiC/ontology#hasOrHadAppellation
rico:hasOrHadAppellation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
owl:inverseOf rico:isOrWasAppellationOf ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( rico:Instantiation
rico:RecordResource
)
] ;
rdfs:range rico:Appellation ;
rdfs:comment """Connects a Thing to an Appellation that is or was used for
designating it."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has or had appellation"@en .
### https://www.ica.org/standards/RiC/ontology#hasOrHadCategory
rico:hasOrHadCategory rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
owl:inverseOf rico:isOrWasCategoryOf ;
rdfs:range rico:Type ;
rdfs:comment """Connects a Thing to a Type that categorizes or categorized
it."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has or had category"@en .
### https://www.ica.org/standards/RiC/ontology#hasOrHadIdentifier
rico:hasOrHadIdentifier rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:hasOrHadAppellation ;
owl:inverseOf rico:isOrWasIdentifierOf ;
rdfs:range rico:Identifier ;
rdfs:comment """Connects a Thing to one of its past or present
Identifiers."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has or had identifier"@en .
### https://www.ica.org/standards/RiC/ontology#hasOrHadMainSubject
rico:hasOrHadMainSubject rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:hasOrHadSubject ;
owl:inverseOf rico:isOrWasMainSubjectOf ;
rdfs:domain rico:RecordResource ;
rdfs:range rico:Thing ;
rdfs:comment "Connects a Record Resource to a Thing that is or was its main subject."@en ;
rdfs:label "has or had main subject"@en ;
skos:scopeNote "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."@en .
### https://www.ica.org/standards/RiC/ontology#hasOrHadSubject
rico:hasOrHadSubject rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
owl:inverseOf rico:isOrWasSubjectOf ;
rdfs:domain rico:RecordResource ;
rdfs:range rico:Thing ;
rdfs:comment "Connects a Record Resource to a Thing that is or was its subject."@en ;
rdfs:label "has or had subject"@en .
### https://www.ica.org/standards/RiC/ontology#hasRecordSetType
rico:hasRecordSetType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:hasOrHadCategory ;
owl:inverseOf rico:isRecordSetTypeOf ;
rdfs:domain rico:RecordSet ;
rdfs:range rico:RecordSetType ;
rdfs:comment """Connects a Record Set to a Record Set Type that categorizes
it."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "has record set type"@en ;
skos:changeNote [ ] .
### https://www.ica.org/standards/RiC/ontology#isCarrierTypeOf
rico:isCarrierTypeOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isOrWasCategoryOf ;
rdfs:domain rico:CarrierType ;
rdfs:range rico:Instantiation ;
rdfs:comment """Connects a Carrier Type to an Instantiation whose carrier it
categorizes."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is carrier type of"@en .
### https://www.ica.org/standards/RiC/ontology#isContentTypeOf
rico:isContentTypeOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isOrWasCategoryOf ;
rdfs:domain rico:ContentType ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( rico:Record
rico:RecordPart
)
] ;
rdfs:comment """Connects a Content Type to a Record or Record Part whose content
it categorizes."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is content type of"@en .
### https://www.ica.org/standards/RiC/ontology#isIdentifierTypeOf
rico:isIdentifierTypeOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isOrWasCategoryOf ;
rdfs:domain rico:IdentifierType ;
rdfs:range rico:Identifier ;
rdfs:comment """Connects an Identifier Type and an Identifier that it
categorizes."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is identifier type of"@en .
### https://www.ica.org/standards/RiC/ontology#isInstantiationOf
rico:isInstantiationOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
rdfs:domain rico:Instantiation ;
rdfs:range rico:RecordResource ;
rdfs:comment "Inverse of 'has instantiation' object property."@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is instantiation of"@en .
### https://www.ica.org/standards/RiC/ontology#isOrWasAppellationOf
rico:isOrWasAppellationOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
rdfs:domain rico:Appellation ;
rdfs:comment """Connects an Appellation to a Thing that it designates or
designated."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is or was appellation of"@en .
### https://www.ica.org/standards/RiC/ontology#isOrWasCategoryOf
rico:isOrWasCategoryOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
rdfs:domain rico:Type ;
rdfs:comment """Connects a Type (a category) to a Thing that it categorizes or
categorized."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is or was category of"@en .
### https://www.ica.org/standards/RiC/ontology#isOrWasIdentifierOf
rico:isOrWasIdentifierOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isOrWasAppellationOf ;
rdfs:domain rico:Identifier ;
rdfs:comment """Connects an Identifier to a Thing that it identified or
identifies."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is or was identifier of"@en .
### https://www.ica.org/standards/RiC/ontology#isOrWasMainSubjectOf
rico:isOrWasMainSubjectOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isOrWasSubjectOf ;
rdfs:comment "Inverse of 'has or had main subject' object property."@en ;
rdfs:label "is or was main subject of"@en .
### https://www.ica.org/standards/RiC/ontology#isOrWasSubjectOf
rico:isOrWasSubjectOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
rdfs:comment "Inverse of 'has or had subject' object property."@en ;
rdfs:label "is or was subject of"@en .
### https://www.ica.org/standards/RiC/ontology#isRecordResourceAssociatedWithRecordResource
rico:isRecordResourceAssociatedWithRecordResource rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isRelatedTo ;
rdf:type owl:SymmetricProperty ;
rdfs:domain rico:RecordResource ;
rdfs:range rico:RecordResource ;
rdfs:comment """Connects two Record Resources. This object property is
symmetric."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is record resource associated with record resource "@en .
### https://www.ica.org/standards/RiC/ontology#isRecordSetTypeOf
rico:isRecordSetTypeOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf rico:isOrWasCategoryOf ;
rdfs:domain rico:RecordSetType ;
rdfs:range rico:RecordSet ;
rdfs:comment """Connects a Record Set Type to a Record Set that it
categorizes."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is record set type of"@en .
### https://www.ica.org/standards/RiC/ontology#isRelatedTo
rico:isRelatedTo rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
rdfs:comment """The most generic object property. Connects an Thing to any other
Thing This is a symmetric object property."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "is related to "@en .
#################################################################
# Data properties
#################################################################
### http://onto.qdmtl.ca/endingCivicNumber
qdmtl:endingCivicNumber rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain qdmtl:E24_Building ;
rdfs:range xsd:integer .
### http://onto.qdmtl.ca/startingCivicNumber
qdmtl:startingCivicNumber rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain qdmtl:E24_Building ;
rdfs:range xsd:integer .
### https://www.ica.org/standards/RiC/ontology#name
rico:name rdf:type owl:DatatypeProperty ;
rdfs:range rdfs:Literal ;
rdfs:comment """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."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "name"@en ;
skos:example "4 March 1842"@en ,
"""Digital copy of the Pomarius archival inventory from
1575"""@en ,
"Nelson Mandela"@en ,
"Papers of the Earls of Liverpool"@en ,
"Sketch Map of the Qatar Peninsula"@en ,
"""The Letter of Neacsu from Campulung to the Mayor of
Brasov"""@en ;
skos:scopeNote """Use only if you don't use Name class for handling
names."""@en .
### https://www.ica.org/standards/RiC/ontology#textualValue
rico:textualValue rdf:type owl:DatatypeProperty ;
rdfs:domain rico:Appellation ;
rdfs:range rdfs:Literal ;
rdfs:comment "A textual expression of an Appellation or Date."@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "textual value"@en .
### https://www.ica.org/standards/RiC/ontology#title
rico:title rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf rico:name ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( rico:Instantiation
rico:RecordResource
)
] ;
rdfs:range rdfs:Literal ;
rdfs:comment """An identifying name of a Record Resource, Instantiation or
Rule."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "title"@en .
#################################################################
# Classes
#################################################################
### http://erlangen-crm.org/current/E18_Physical_Thing
ecrm:E18_Physical_Thing rdf:type owl:Class ;
rdfs:subClassOf ecrm:E70_Thing .
### http://erlangen-crm.org/current/E1_CRM_Entity
ecrm:E1_CRM_Entity rdf:type owl:Class ;
rdfs:subClassOf owl:Thing ;
rdfs:comment "This class comprises all things in the universe of discourse of the CIDOC Conceptual Reference Model."@en ;
rdfs:label "E1 CRM Entity"@en .
### http://erlangen-crm.org/current/E24_Physical_Human-Made_Thing
ecrm:E24_Physical_Human-Made_Thing rdf:type owl:Class ;
rdfs:subClassOf ecrm:E71_Human-Made_Thing ;
rdfs:comment "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."@en ,
"Également sous-classe de E18, permettant d'utiliser P53."@fr ;
rdfs:label "E24 Physical Human-Made Thing"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E24_Physical_Human-Made_Thing> .
### http://erlangen-crm.org/current/E28_Conceptual_Object
ecrm:E28_Conceptual_Object rdf:type owl:Class ;
rdfs:subClassOf ecrm:E71_Human-Made_Thing ;
rdfs:comment """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."""@en ;
rdfs:label "E28 Conceptual Object"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E28_Conceptual_Object> .
### http://erlangen-crm.org/current/E41_Appellation
ecrm:E41_Appellation rdf:type owl:Class ;
rdfs:subClassOf ecrm:E90_Symbolic_Object ;
rdfs:comment """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"""@en ;
rdfs:label "E41 Appellation"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E41_Appellation> .
### http://erlangen-crm.org/current/E53_Place
ecrm:E53_Place rdf:type owl:Class ;
rdfs:subClassOf ecrm:E1_CRM_Entity ;
rdfs:comment "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."@en ;
rdfs:label "E53 Place"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E53_Place> .
### http://erlangen-crm.org/current/E55_Type
ecrm:E55_Type rdf:type owl:Class ;
rdfs:subClassOf ecrm:E28_Conceptual_Object ;
rdfs:comment """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."""@en ;
rdfs:label "E55 Type"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E55_Type> .
### http://erlangen-crm.org/current/E70_Thing
ecrm:E70_Thing rdf:type owl:Class ;
rdfs:subClassOf ecrm:E77_Persistent_Item ;
rdfs:comment """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."""@en ;
rdfs:label "E70 Thing"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E70_Thing> .
### http://erlangen-crm.org/current/E71_Human-Made_Thing
ecrm:E71_Human-Made_Thing rdf:type owl:Class ;
rdfs:subClassOf ecrm:E70_Thing ;
rdfs:comment """Scope note:
This class comprises discrete, identifiable human-made items that are documented as single units."""@en ;
rdfs:label "E71 Human-Made Thing"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E71_Human-Made_Thing> .
### http://erlangen-crm.org/current/E77_Persistent_Item
ecrm:E77_Persistent_Item rdf:type owl:Class ;
rdfs:subClassOf ecrm:E1_CRM_Entity ;
rdfs:comment "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."@en ;
rdfs:label "E77 Persistent Item"@en .
### http://erlangen-crm.org/current/E90_Symbolic_Object
ecrm:E90_Symbolic_Object rdf:type owl:Class ;
rdfs:subClassOf ecrm:E28_Conceptual_Object ;
rdfs:comment """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."""@en ;
rdfs:label "E90 Symbolic Object"@en ;
rdfs:seeAlso <http://cidoc-crm.org/cidoc-crm/7.1.1/E90_Symbolic_Object> .
### http://onto.qdmtl.ca/E24_Building
qdmtl:E24_Building rdf:type owl:Class ;
rdfs:subClassOf ecrm:E24_Physical_Human-Made_Thing ,
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101_had_as_general_use ;
owl:someValuesFrom qdmtl:E55_Building_Usage_Type
] ;
owl:disjointWith qdmtl:E24_Thoroughfare ;
rdfs:comment "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."@fr ;
skos:altLabel "Immeuble"@fr ;
skos:prefLabel "Building"@en ,
"Bâtiment"@fr .
### http://onto.qdmtl.ca/E24_Commercial_Building
qdmtl:E24_Commercial_Building rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( qdmtl:E24_Building
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101_had_as_general_use ;
owl:hasValue vocab:trade
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL."@fr ;
rdfs:label "Immeuble commercial"@fr .
### http://onto.qdmtl.ca/E24_Industrial_Building
qdmtl:E24_Industrial_Building rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( qdmtl:E24_Building
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101_had_as_general_use ;
owl:hasValue vocab:manufacturing
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf qdmtl:E24_Building ;
owl:disjointWith qdmtl:E24_Institutional_Building ,
qdmtl:E24_Residential_Building ;
rdfs:comment "Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL."@fr ;
rdfs:label "Immeuble industriel"@fr .
### http://onto.qdmtl.ca/E24_Institutional_Building
qdmtl:E24_Institutional_Building rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( qdmtl:E24_Building
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101_had_as_general_use ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( vocab:educating
vocab:government
vocab:healthCare
vocab:religion
)
]
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf qdmtl:E24_Building ;
rdfs:comment "Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL."@fr ;
rdfs:label "Immeuble institutionnel"@fr .
### http://onto.qdmtl.ca/E24_Mixed_Use_Building
qdmtl:E24_Mixed_Use_Building rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( qdmtl:E24_Building
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101_had_as_general_use ;
owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
owl:onClass qdmtl:E55_Building_Usage_Type
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf qdmtl:E24_Building ;
rdfs:comment "Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL."@fr ;
rdfs:label "Bâtiment à usage mixte"@fr .
### http://onto.qdmtl.ca/E24_Residential_Building
qdmtl:E24_Residential_Building rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( qdmtl:E24_Building
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101_had_as_general_use ;
owl:hasValue vocab:housing
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf qdmtl:E24_Building ;
rdfs:comment "Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL."@fr ;
rdfs:label "Immeuble résidentiel"@fr .
### http://onto.qdmtl.ca/E24_Thoroughfare
qdmtl:E24_Thoroughfare rdf:type owl:Class ;
rdfs:subClassOf ecrm:E24_Physical_Human-Made_Thing ;
rdfs:comment "Cette classe est un élément de spécialisation du CIDOC-CRM défini dans le cadre du projet QDMTL."@fr ,
"voie de communication en milieu urbain"@fr ;
skos:altLabel "rue"@fr ;
skos:prefLabel "thoroughfare"@en ,
"voie de communication"@fr .
### http://onto.qdmtl.ca/E55_Building_Usage_Type
qdmtl:E55_Building_Usage_Type rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( skos:Concept
[ rdf:type owl:Restriction ;
owl:onProperty ecrm:P101i_was_use_of ;
owl:allValuesFrom qdmtl:E24_Building
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf ecrm:E55_Type .
### http://purl.org/dc/terms/FileFormat
dcterms:FileFormat rdf:type owl:Class ;
rdfs:subClassOf dcterms:MediaType ;
rdfs:comment "A digital resource format."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms> ;
rdfs:label "File Format"@en .
### http://purl.org/dc/terms/MediaType
dcterms:MediaType rdf:type owl:Class ;
rdfs:comment "A file format or physical medium."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms> ;
rdfs:label "Media Type"@en .
### http://purl.org/vocommons/voaf#Vocabulary
voaf:Vocabulary rdf:type owl:Class .
### http://www.w3.org/2004/02/skos/core#Concept
skos:Concept rdf:type owl:Class .
### http://www.w3.org/2004/02/skos/core#ConceptScheme
skos:ConceptScheme rdf:type owl:Class .
### https://www.ica.org/standards/RiC/ontology#Appellation
rico:Appellation rdf:type owl:Class ;
rdfs:subClassOf rico:Concept ;
rdfs:comment """A concept of any kind that is used for designating an Entity and
referring to it."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Appellation"@en .
### https://www.ica.org/standards/RiC/ontology#CarrierType
rico:CarrierType rdf:type owl:Class ;
rdfs:subClassOf rico:Type ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:isCarrierTypeOf ;
owl:allValuesFrom rico:Instantiation
] ;
rdfs:comment """Categorization of physical material in or on which information
is represented."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Carrier Type"@en ;
skos:scopeNote """Carrier Type information is essential for assessing
authenticity, conservation needs and the availability, access and use of Record
Resources. Carrier Type determines the environmental conditions of storage and the
prerequisites and possible ways to access and use of the records. Should not be confused
with Content Type, that categorizes a Record Resource, nor with Representation Type that
categorizes an Instantiation. The Carrier Type depends on the media type that is
required to access the records and is independent of its content"""@en .
### https://www.ica.org/standards/RiC/ontology#Concept
rico:Concept rdf:type owl:Class ;
rdfs:subClassOf rico:Thing ;
rdfs:comment "An idea, unit of thought, abstract cultural object or category."@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Concept"@en .
### https://www.ica.org/standards/RiC/ontology#ContentType
rico:ContentType rdf:type owl:Class ;
rdfs:subClassOf rico:Type ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:isContentTypeOf ;
owl:allValuesFrom rico:RecordResource
] ;
rdfs:comment """The fundamental form of communication in which a Record is
expressed and the human sense through which it is intended to be
perceived."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Content Type"@en ;
skos:scopeNote """Should not be confused with Representation Type or Carrier
Type of a related Instantiation since the form of communication can be independent of
the representation or carrier, for example, a map (Content Type: cartographic image) can
be represented as a sketch (Representation Type: graphic) or as a GIS-coded elements
(Representation Type: computer)."""@en .
### https://www.ica.org/standards/RiC/ontology#Identifier
rico:Identifier rdf:type owl:Class ;
rdfs:subClassOf rico:Appellation ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:hasIdentifierType ;
owl:allValuesFrom rico:IdentifierType
] ;
rdfs:comment """A word, number, letter, symbol, or any combination of these used
to uniquely identify or reference an individual instance of an entity within a specific
information domain."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Identifier"@en .
### https://www.ica.org/standards/RiC/ontology#IdentifierType
rico:IdentifierType rdf:type owl:Class ;
rdfs:subClassOf rico:Type ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:isIdentifierTypeOf ;
owl:allValuesFrom rico:Identifier
] ;
rdfs:comment "Categorization of an Identifier."@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Identifier Type"@en ;
skos:scopeNote """For example, 'old identifier' ; 'ISNI' (for a person or
corporate body), etc."""@en .
### https://www.ica.org/standards/RiC/ontology#Instantiation
rico:Instantiation rdf:type owl:Class ;
rdfs:subClassOf rico:Thing ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:hasCarrierType ;
owl:allValuesFrom rico:CarrierType
] ;
rdfs:comment """The inscription of information made by an Agent on a physical
carrier in any persistent, recoverable form as a means of communicating information
through time and space."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Instantiation"@en ;
rico:closeTo "PREMIS Representation"@en .
### https://www.ica.org/standards/RiC/ontology#Record
rico:Record rdf:type owl:Class ;
rdfs:subClassOf rico:RecordResource ;
rdfs:comment "Information inscribed at least once by any method on any physical carrier in any persistent, recoverable form by an Agent in the course of life or work Activity."@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Record"@en .
### https://www.ica.org/standards/RiC/ontology#RecordPart
rico:RecordPart rdf:type owl:Class ;
rdfs:subClassOf rico:RecordResource ;
rdfs:comment """Part of a Record with discrete information content that
contributes to the Record's physical or intellectual completeness."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Record Part"@en .
### https://www.ica.org/standards/RiC/ontology#RecordResource
rico:RecordResource rdf:type owl:Class ;
rdfs:subClassOf rico:Thing ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:hasInstantiation ;
owl:allValuesFrom rico:Instantiation
] ;
rdfs:comment """A Record, Record Set, or Record Part produced or acquired and
retained by an Agent in the course of Activity."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Record Resource"@en .
### https://www.ica.org/standards/RiC/ontology#RecordSet
rico:RecordSet rdf:type owl:Class ;
rdfs:subClassOf rico:RecordResource ,
[ rdf:type owl:Restriction ;
owl:onProperty rico:hasRecordSetType ;
owl:allValuesFrom rico:RecordSetType
] ;
rdfs:comment """One or more records that are associated by categorization and/or
physical aggregation by the creator or other Agent."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Record Set"@en .
### https://www.ica.org/standards/RiC/ontology#RecordSetType
rico:RecordSetType rdf:type owl:Class ;
rdfs:subClassOf rico:Type ;
rdfs:comment "A broad categorization of the type of Record Set."@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Record Set Type"@en ;
skos:scopeNote """Four instances of Record Set Type are included for now in
RiC-O; they also are instances of skos:Concept and, as such, part of a SKOS vocabulary.
Record Set Type may also be used to categorize types of Record Set that have not
traditionally been considered archival, e.g. search result list."""@en .
### https://www.ica.org/standards/RiC/ontology#Thing
rico:Thing rdf:type owl:Class .
### https://www.ica.org/standards/RiC/ontology#Type
rico:Type rdf:type owl:Class ;
rdfs:subClassOf rico:Concept ;
rdfs:comment """A superclass for any category of some thing. A type
characterizes an entity."""@en ;
rdfs:isDefinedBy <https://www.ica.org/standards/RiC/ontology> ;
rdfs:label "Type"@en .
#################################################################
# Individuals
#################################################################
### http://data.qdmtl.ca
<http://data.qdmtl.ca> rdf:type owl:NamedIndividual ;
rdfs:label "QDMTL ABox"@en .
### http://onto.qdmtl.ca
<http://onto.qdmtl.ca> rdf:type owl:NamedIndividual ,
voaf:Vocabulary ;
voaf:reliesOn <http://erlangen-crm.org/current> ,
<https://www.ica.org/standards/RiC/ontology> .
### http://erlangen-crm.org/current
<http://erlangen-crm.org/current> rdf:type owl:NamedIndividual .
### http://vocab.qdmtl.ca/advertising
vocab:advertising rdf:type owl:NamedIndividual ,