-
Notifications
You must be signed in to change notification settings - Fork 0
/
omac.owl
1712 lines (1218 loc) · 73.4 KB
/
omac.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="https://data.crimproject.org/"
xml:base="https://data.crimproject.org/"
xmlns:dbo="http://dbpedia.org/ontology/"
xmlns:dbp="http://dbpedia.org/property/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:wdt="http://www.wikidata.org/prop/direct/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:obda="https://w3id.org/obda/vocabulary#"
xmlns:omac="https://omac.crimproject.org/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:viaf="http://viaf.org/viaf/"
xmlns:swrla="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:schema="https://schema.org/"
xmlns:dcterms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="https://omac.crimproject.org/">
<dcterms:creator>Emilio M. Sanfilippo, Laboratory for Applied Ontology, ISTC-CNR, Italy
Richard Freedman, Haverford College, USA</dcterms:creator>
<dcterms:subject>Music and Musicology</dcterms:subject>
<rdfs:label>Ontology for Analytic Claims in Music (OMAC)</rdfs:label>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator">
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/dc/terms/</rdfs:isDefinedBy>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/subject -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/subject">
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/dc/terms/</rdfs:isDefinedBy>
</owl:AnnotationProperty>
<!-- http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled -->
<owl:AnnotationProperty rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- 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#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!-- https://omac.crimproject.org/Example -->
<owl:AnnotationProperty rdf:about="https://omac.crimproject.org/Example"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date">
<rdfs:comment xml:lang="en">Common xsd:date format is: YYYY-MM-DD (e.g., 2001-10-26)</rdfs:comment>
</rdfs:Datatype>
<!-- http://www.w3.org/2001/XMLSchema#gYear -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#gYear"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://dbpedia.org/property/composer -->
<owl:ObjectProperty rdf:about="http://dbpedia.org/property/composer">
<owl:inverseOf rdf:resource="https://omac.crimproject.org/composerOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:range rdf:resource="https://schema.org/Person"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="https://omac.crimproject.org/authorialPartOf"/>
<rdf:Description rdf:about="http://dbpedia.org/property/composer"/>
</owl:propertyChainAxiom>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://dbpedia.org/property</rdfs:isDefinedBy>
<rdfs:label>composed by</rdfs:label>
<skos:definition xml:lang="en">The relation is used to bind a musical expression to its composer.</skos:definition>
<skos:prefLabel xml:lang="en">composed by</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://dbpedia.org/property/genre -->
<owl:ObjectProperty rdf:about="http://dbpedia.org/property/genre">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/GenreAttribute"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/property</rdfs:isDefinedBy>
<rdfs:label>has genre</rdfs:label>
<skos:prefLabel xml:lang="en">has genre</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://dbpedia.org/property/key -->
<owl:ObjectProperty rdf:about="http://dbpedia.org/property/key">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/KeyAttribute"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/property</rdfs:isDefinedBy>
<rdfs:label>has key</rdfs:label>
<skos:altLabel xml:lang="en">key</skos:altLabel>
<skos:prefLabel xml:lang="en">has key</skos:prefLabel>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#related -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#related">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment>A concept with which there is an associative semantic relationship.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://www.w3.org/TR/swbp-skos-core-spec/</rdfs:isDefinedBy>
<rdfs:label>related to</rdfs:label>
<skos:prefLabel>related to</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/assertedBy -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/assertedBy">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/observedBy"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/asserts"/>
<rdfs:comment>This relation is used to represent a person who asserts an observation</rdfs:comment>
<rdfs:label>asserted by</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/asserts -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/asserts">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/observes"/>
<rdfs:label>asserts</rdfs:label>
<skos:prefLabel xml:lang="en">asserts</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/attributeOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/attributeOf">
<owl:inverseOf rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/Attribute"/>
<rdfs:label>attribute of</rdfs:label>
<skos:prefLabel>attribute of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/authorialPartOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/authorialPartOf">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/partOf"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/hasAuthorialPart"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicScorePart"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>authorial part of</rdfs:label>
<skos:definition xml:lang="en">The relation is used to represent the structure of musical entities, e.g., a symphony composed of movements and sections.</skos:definition>
<skos:prefLabel xml:lang="en">authorial part of</skos:prefLabel>
<omac:Example>The first movement of Beethoven's Symp. No. 9 is authorial part of the Symp. No. 9</omac:Example>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/composerOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/composerOf">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>composer of</rdfs:label>
<skos:definition xml:lang="en">The relation is used to bind a musical entity to the person who composed it</skos:definition>
<skos:prefLabel xml:lang="en">composer of</skos:prefLabel>
<omac:Example>Symphony No. 9 was composed by Ludwig van Beethoven</omac:Example>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernedBy -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernedBy">
<owl:inverseOf rdf:resource="https://omac.crimproject.org/concerns"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/Observation"/>
<rdfs:label>concerned by</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concerns -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concerns">
<rdfs:domain rdf:resource="https://omac.crimproject.org/Observation"/>
<rdfs:label>concerns</rdfs:label>
<skos:prefLabel xml:lang="en">concerns</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsAttribute -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsAttribute">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concerns"/>
<rdfs:label>concerns attribute</rdfs:label>
<skos:prefLabel xml:lang="en">concerns attribute</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsAttributeValue -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsAttributeValue">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concerns"/>
<rdfs:label>concerns attribute value</rdfs:label>
<skos:prefLabel xml:lang="en">concerns attribute value</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsDerivative -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsDerivative">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concernsPiece"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/derivativeIn"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/SimilarityObservation"/>
<rdfs:label>concerns derivative</rdfs:label>
<skos:prefLabel xml:lang="en">concerns derivative</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsModel -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsModel">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concernsPiece"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/modelIn"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/SimilarityObservation"/>
<rdfs:label>concerns model</rdfs:label>
<skos:prefLabel xml:lang="en">concerns model</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsPiece -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsPiece">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concerns"/>
<rdfs:label>concerns piece</rdfs:label>
<skos:prefLabel xml:lang="en">concerns piece</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsSegment -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsSegment">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concerns"/>
<rdfs:label>concerns segment</rdfs:label>
<skos:prefLabel xml:lang="en">concerns segment</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/concernsSimilarity -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/concernsSimilarity">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concerns"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/SimilarityObservation"/>
<rdfs:label>concerns similarity</rdfs:label>
<skos:prefLabel xml:lang="en">concerns similarity</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/derivativeIn -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/derivativeIn">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concernedBy"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/SimilarityObservation"/>
<rdfs:label>derivative in</rdfs:label>
<skos:prefLabel xml:lang="en">derivative in</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/derivativeOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/derivativeOf">
<owl:inverseOf rdf:resource="https://omac.crimproject.org/modelFor"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>derivative of</rdfs:label>
<skos:prefLabel xml:lang="en">derivative of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasAttribute -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasAttribute">
<rdfs:range rdf:resource="https://omac.crimproject.org/Attribute"/>
<rdfs:label>has attribute</rdfs:label>
<skos:prefLabel xml:lang="en">has attribute</skos:prefLabel>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#range"/>
<owl:annotatedTarget rdf:resource="https://omac.crimproject.org/Attribute"/>
<rdfs:comment>The use of logical disjunction (OR) is used to allow a sort of modeling shortcut. For instance, saying that a work has-genre Credo, means that the work's genre-attribute has-value Credo.</rdfs:comment>
</owl:Axiom>
<!-- https://omac.crimproject.org/hasAuthorialPart -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasAuthorialPart">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasPart"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicScorePart"/>
<rdfs:comment>The relation is used to represent the structure of musical entities, e.g., a symphony composed of movements and sections.</rdfs:comment>
<rdfs:label xml:lang="en">has authorial part</rdfs:label>
<skos:prefLabel xml:lang="en">has authorial part</skos:prefLabel>
<omac:Example>Beethoven's Symp. No. 9 has authorial part the first, second, third, four movements</omac:Example>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasFile -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasFile">
<rdfs:range rdf:resource="http://dbpedia.org/ontology/File"/>
<rdfs:label>has file</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasMEI -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasMEI">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasFile"/>
<rdfs:label>has MEI file</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasPDF -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasPDF">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasFile"/>
<rdfs:label>has PDF file</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasPart -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasPart">
<owl:inverseOf rdf:resource="https://omac.crimproject.org/partOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment>At the current state, parthood relations can hold across multiple branches of the ontology.</rdfs:comment>
<rdfs:label>has part</rdfs:label>
<skos:prefLabel xml:lang="en">has part</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasPerformingForceType -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasPerformingForceType">
<rdfs:domain rdf:resource="https://omac.crimproject.org/PerformingForceAttribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/PerformingForceType"/>
<rdfs:label>has performing force type</rdfs:label>
<skos:prefLabel xml:lang="en">has performing force type</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasRole -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasRole">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/Role"/>
<rdfs:label>has role</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasSchema -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasSchema">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/SchemaAttribute"/>
<rdfs:label>has schema</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasSection -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasSection">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAuthorialPart"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/sectionOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicScore"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicSection"/>
<rdfs:comment>This relationship is used to model a musical work that is (authorial) section of another musical work. Sections could be further decomposed into sub-sections (see the relation: has subsection)</rdfs:comment>
<rdfs:label>has section</rdfs:label>
<skos:prefLabel xml:lang="en">has section</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasSegment -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasSegment">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasPart"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/segmentOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/AnalyticSegment"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="https://omac.crimproject.org/hasAuthorialPart"/>
<rdf:Description rdf:about="https://omac.crimproject.org/hasSegment"/>
</owl:propertyChainAxiom>
<rdfs:label>has segment</rdfs:label>
<skos:altLabel xml:lang="en">has analytic segment</skos:altLabel>
<skos:prefLabel xml:lang="en">has segment</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasStyle -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasStyle">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/StyleAttribute"/>
<rdfs:label>has style</rdfs:label>
<skos:prefLabel xml:lang="en">has style</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasSubsection -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasSubsection">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAuthorialPart"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/subsectionOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicSubsection"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="https://omac.crimproject.org/hasSection"/>
<rdf:Description rdf:about="https://omac.crimproject.org/hasSubsection"/>
</owl:propertyChainAxiom>
<rdfs:comment>Subsections are the smallest parts of musical works which can not be further decomposed in authorial musical entities</rdfs:comment>
<rdfs:label>has subsection</rdfs:label>
<skos:prefLabel xml:lang="en">has subsection</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/hasValue -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/hasValue">
<rdfs:domain rdf:resource="https://omac.crimproject.org/Attribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/AttributeValue"/>
<rdfs:label>has value</rdfs:label>
<skos:prefLabel xml:lang="en">has value</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/modelFor -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/modelFor">
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="https://omac.crimproject.org/modelIn"/>
<rdf:Description rdf:about="https://omac.crimproject.org/concernsDerivative"/>
</owl:propertyChainAxiom>
<rdfs:comment>Relation used to represent an expression/musical entity that is used as model for another expression/musical entity (by the same or different composer)</rdfs:comment>
<rdfs:label>model for</rdfs:label>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/modelIn -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/modelIn">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/concernedBy"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/SimilarityObservation"/>
<rdfs:label>model in</rdfs:label>
<skos:prefLabel xml:lang="en">model in</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/observedBy -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/observedBy">
<owl:inverseOf rdf:resource="https://omac.crimproject.org/observes"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/Observation"/>
<rdfs:range rdf:resource="https://schema.org/Person"/>
<rdfs:comment>This is the most general relation to relate a person to the observation they express</rdfs:comment>
<rdfs:label>observed by</rdfs:label>
<skos:prefLabel xml:lang="en">observed by</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/observes -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/observes">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/Observation"/>
<rdfs:label>observes</rdfs:label>
<skos:prefLabel xml:lang="en">observes</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/partOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/partOf">
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:label>part of</rdfs:label>
<skos:prefLabel>part of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/rejectedBy -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/rejectedBy">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/observedBy"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/rejects"/>
<rdfs:comment>This relation is used to represent a person expressing a rejecting observation. For instance, a scholar may express an observation rejecting the birth date of a composer</rdfs:comment>
<rdfs:label>rejected by</rdfs:label>
<skos:prefLabel xml:lang="en">rejected by</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/rejects -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/rejects">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/observes"/>
<rdfs:label>rejects</rdfs:label>
<skos:prefLabel>rejects</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/scoredFor -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/scoredFor">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/hasAttribute"/>
<owl:inverseOf rdf:resource="https://omac.crimproject.org/scoringOf"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/PerformingForceAttribute"/>
<rdfs:label>scored for</rdfs:label>
<skos:definition>The relation is used to link a musical entity to its performing force attribute</skos:definition>
<skos:prefLabel xml:lang="en">scored for</skos:prefLabel>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="https://omac.crimproject.org/scoredFor"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#range"/>
<owl:annotatedTarget rdf:resource="https://omac.crimproject.org/PerformingForceAttribute"/>
<rdfs:comment xml:lang="en">This range restriction is expressed using the disjunction between Performing Force and Performing Force Type in such a way to allow the shortcut: Musical Entity scored-of Performing Force Type, a possibility to be adopted when the number of performing force for a certain type is equal to 1. For instance, Brahm's Op. 25 scored-for Piano etc (i.e., for 1 piano)</rdfs:comment>
</owl:Axiom>
<!-- https://omac.crimproject.org/scoringOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/scoringOf">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/attributeOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/PerformingForceAttribute"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>scoring of</rdfs:label>
<skos:definition rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">The relation is used to link a musical entity to its performing forces</skos:definition>
<skos:prefLabel xml:lang="en">scoring of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/sectionOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/sectionOf">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/authorialPartOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicSection"/>
<rdfs:label>section of</rdfs:label>
<skos:prefLabel xml:lang="en">section of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/segmentOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/segmentOf">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/partOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/AnalyticSegment"/>
<rdfs:range rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>segment of</rdfs:label>
<skos:altLabel xml:lang="en">analytic segment of</skos:altLabel>
<skos:prefLabel xml:lang="en">segment of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://omac.crimproject.org/subsectionOf -->
<owl:ObjectProperty rdf:about="https://omac.crimproject.org/subsectionOf">
<rdfs:subPropertyOf rdf:resource="https://omac.crimproject.org/authorialPartOf"/>
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicSubsection"/>
<rdfs:label>subsection of</rdfs:label>
<skos:prefLabel xml:lang="en">subsection of</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://schema.org/birthPlace -->
<owl:ObjectProperty rdf:about="https://schema.org/birthPlace">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:range rdf:resource="http://schema.org/Place"/>
<rdfs:isDefinedBy>https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>birth place</rdfs:label>
<skos:prefLabel xml:lang="en">birth place</skos:prefLabel>
</owl:ObjectProperty>
<!-- https://schema.org/deathPlace -->
<owl:ObjectProperty rdf:about="https://schema.org/deathPlace">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:range rdf:resource="http://schema.org/Place"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>death place</rdfs:label>
<skos:prefLabel xml:lang="en">death place</skos:prefLabel>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://dbpedia.org/ontology/deathYear -->
<owl:DatatypeProperty rdf:about="http://dbpedia.org/ontology/deathYear">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/ontology/</rdfs:isDefinedBy>
<rdfs:label>death year</rdfs:label>
<skos:prefLabel xml:lang="en">death year</skos:prefLabel>
</owl:DatatypeProperty>
<!-- http://dbpedia.org/property/birthYear -->
<owl:DatatypeProperty rdf:about="http://dbpedia.org/property/birthYear">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/property/</rdfs:isDefinedBy>
<rdfs:label>birth year</rdfs:label>
<skos:prefLabel xml:lang="en">birth year</skos:prefLabel>
</owl:DatatypeProperty>
<!-- http://dbpedia.org/property/composed -->
<owl:DatatypeProperty rdf:about="http://dbpedia.org/property/composed">
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/property/</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">composition date</rdfs:label>
<skos:altLabel xml:lang="en">composed</skos:altLabel>
</owl:DatatypeProperty>
<!-- http://dbpedia.org/property/fullTitle -->
<owl:DatatypeProperty rdf:about="http://dbpedia.org/property/fullTitle">
<rdfs:comment>In the specific context of CRIM, to represent the full title of a resource.
If the CRIM's database includes title only (hence, no full title), dcterms:title is to be used</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/property/</rdfs:isDefinedBy>
<rdfs:label>full title</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/dc/terms/created -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/created">
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/dc/terms/</rdfs:isDefinedBy>
<rdfs:label>created</rdfs:label>
<skos:prefLabel xml:lang="en">created</skos:prefLabel>
</owl:DatatypeProperty>
<!-- http://purl.org/dc/terms/title -->
<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/title">
<rdfs:comment>Title of a resoure</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://www.dublincore.org/specifications/dublin-core/dcmi-terms/</rdfs:isDefinedBy>
<rdfs:label>title</rdfs:label>
<skos:prefLabel xml:lang="en">title</skos:prefLabel>
</owl:DatatypeProperty>
<!-- http://www.wikidata.org/prop/direct/P214 -->
<owl:DatatypeProperty rdf:about="http://www.wikidata.org/prop/direct/P214">
<rdfs:comment>identifier for the Virtual International Authority File database</rdfs:comment>
<rdfs:isDefinedBy>wikidata</rdfs:isDefinedBy>
<rdfs:label>VIAF ID</rdfs:label>
</owl:DatatypeProperty>
<!-- https://omac.crimproject.org/emaCode -->
<owl:DatatypeProperty rdf:about="https://omac.crimproject.org/emaCode">
<rdfs:comment>Relationship used in CRIM to refer to EMA code</rdfs:comment>
<rdfs:label>ema_code</rdfs:label>
</owl:DatatypeProperty>
<!-- https://omac.crimproject.org/numberPerformingForce -->
<owl:DatatypeProperty rdf:about="https://omac.crimproject.org/numberPerformingForce">
<rdfs:domain rdf:resource="https://omac.crimproject.org/PerformingForceAttribute"/>
<rdfs:label>number of performing force</rdfs:label>
<skos:definition xml:lang="en">This relation is used to represent the number of performing forces per type. For example, Mozart's Symphony No. 35 has 2 Oboes</skos:definition>
<skos:prefLabel>numer of performing forces</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://omac.crimproject.org/order -->
<owl:DatatypeProperty rdf:about="https://omac.crimproject.org/order">
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>authorial part order</rdfs:label>
<skos:altLabel xml:lang="en">order</skos:altLabel>
<skos:definition xml:lang="en">The relation is used to represent the order of an authorial part (i.e., section or subsection) in a musical work. For example, a section of genre Kyrie is the first part of masses</skos:definition>
<skos:prefLabel xml:lang="en">authorial part order</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://omac.crimproject.org/remarks -->
<owl:DatatypeProperty rdf:about="https://omac.crimproject.org/remarks">
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">CRIM Vocabularies:
https://sites.google.com/haverford.edu/crim-project/vocabularies</rdfs:isDefinedBy>
<rdfs:label rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">remarks</rdfs:label>
</owl:DatatypeProperty>
<!-- https://omac.crimproject.org/sectionsNumber -->
<owl:DatatypeProperty rdf:about="https://omac.crimproject.org/sectionsNumber">
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>has number of sections</rdfs:label>
<skos:definition xml:lang="en">Total number of sections in a musical work</skos:definition>
<skos:prefLabel xml:lang="en">has number of sections</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://omac.crimproject.org/subsectionsNumber -->
<owl:DatatypeProperty rdf:about="https://omac.crimproject.org/subsectionsNumber">
<rdfs:domain rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:label>has number of subsections</rdfs:label>
<skos:definition xml:lang="en">Total number of subsections in a section or musical work</skos:definition>
<skos:prefLabel xml:lang="en">has number of subsections</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://schema.org/birthDate -->
<owl:DatatypeProperty rdf:about="https://schema.org/birthDate">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>birth date</rdfs:label>
<skos:prefLabel xml:lang="en">birth date</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://schema.org/deathDate -->
<owl:DatatypeProperty rdf:about="https://schema.org/deathDate">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>death date</rdfs:label>
<skos:prefLabel xml:lang="en">death date</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://schema.org/familyName -->
<owl:DatatypeProperty rdf:about="https://schema.org/familyName">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>familyname</rdfs:label>
<skos:prefLabel xml:lang="en">familyname</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://schema.org/givenName -->
<owl:DatatypeProperty rdf:about="https://schema.org/givenName">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://schema.org</rdfs:isDefinedBy>
<rdfs:label>firstname</rdfs:label>
<skos:prefLabel>firstname</skos:prefLabel>
<skos:prefLabel xml:lang="en">firstname</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://schema.org/name -->
<owl:DatatypeProperty rdf:about="https://schema.org/name">
<rdfs:domain rdf:resource="https://schema.org/Person"/>
<rdfs:comment>This relation is used to represent a person's entire name (e.g., Ludwig van Beethoven)</rdfs:comment>
<rdfs:isDefinedBy>https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>name</rdfs:label>
<skos:prefLabel>name</skos:prefLabel>
</owl:DatatypeProperty>
<!-- https://schema.org/url -->
<owl:DatatypeProperty rdf:about="https://schema.org/url">
<rdfs:isDefinedBy xml:lang="en">https://schema.org/</rdfs:isDefinedBy>
<rdfs:label>URL</rdfs:label>
<skos:prefLabel xml:lang="en">URL</skos:prefLabel>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://dbpedia.org/ontology/File -->
<owl:Class rdf:about="http://dbpedia.org/ontology/File">
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://dbpedia.org/ontology/</rdfs:isDefinedBy>
<rdfs:label>File</rdfs:label>
<skos:prefLabel xml:lang="en">File</skos:prefLabel>
</owl:Class>
<!-- http://schema.org/Place -->
<owl:Class rdf:about="http://schema.org/Place">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://omac.crimproject.org/hasPart"/>
<owl:allValuesFrom rdf:resource="http://schema.org/Place"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://omac.crimproject.org/partOf"/>
<owl:allValuesFrom rdf:resource="http://schema.org/Place"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://schema.org/</rdfs:isDefinedBy>
<rdfs:label>Place</rdfs:label>
<skos:prefLabel xml:lang="en">Place</skos:prefLabel>
</owl:Class>
<!-- http://yago-knowledge.org/resource/Composer -->
<owl:Class rdf:about="http://yago-knowledge.org/resource/Composer">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://schema.org/Person"/>
<owl:Restriction>
<owl:onProperty rdf:resource="https://omac.crimproject.org/composerOf"/>
<owl:someValuesFrom rdf:resource="https://omac.crimproject.org/MusicExpression"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment>A person who composes an authorial musical work</rdfs:comment>
<rdfs:comment>Example of person in the role of composer. Hereby for testing purposes</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://yago-knowledge.org/</rdfs:isDefinedBy>
<rdfs:label>Composer</rdfs:label>
<skos:prefLabel xml:lang="en">Composer</skos:prefLabel>
</owl:Class>
<!-- https://omac.crimproject.org/AnalyticSegment -->
<owl:Class rdf:about="https://omac.crimproject.org/AnalyticSegment">
<rdfs:subClassOf rdf:resource="https://omac.crimproject.org/MusicExpression"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://omac.crimproject.org/segmentOf"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://omac.crimproject.org/MusicScore"/>