-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChromata_onto_V4_linked_indiv.ttl
707 lines (488 loc) · 20.7 KB
/
Chromata_onto_V4_linked_indiv.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
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.com/> .
@prefix mo: <http://purl.org/ontology/mo/> .
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
@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 foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@base <http://www.w3.org/2002/07/owl#> .
[ rdf:type owl:Ontology
] .
#################################################################
# Object Properties
#################################################################
### http://example.com/belongsToGeneratedText
ex:belongsToGeneratedText rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:isPartOf ;
rdfs:domain ex:GeneratedText ;
rdfs:range ex:Text .
### http://example.com/belongsToMelodicAnalysis
ex:belongsToMelodicAnalysis rdf:type owl:ObjectProperty ;
rdfs:domain ex:Dance ;
rdfs:range ex:MelodicAnalysis .
### http://example.com/belongsToRhythmicInstruction
ex:belongsToRhythmicInstruction rdf:type owl:ObjectProperty ;
rdfs:domain ex:Dance ;
rdfs:range ex:RhythmicInstruction .
### http://example.com/belongsToShot
ex:belongsToShot rdf:type owl:ObjectProperty ;
owl:equivalentProperty dul:isComponentOf ;
rdfs:domain ex:Dance ;
rdfs:range ex:Shot .
### http://example.com/belongsToText
ex:belongsToText rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:isPartOf ;
rdfs:domain ex:Score ;
rdfs:range ex:Text .
### http://example.com/belongsToVideo
ex:belongsToVideo rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:isPartOf ;
rdfs:domain ex:Shot ;
rdfs:range ex:Video .
### http://example.com/belongsToWorkspace
ex:belongsToWorkspace rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:isPartOf ;
rdfs:domain ex:Metadata ;
rdfs:range ex:Workspace .
### http://example.com/hasAvatar
ex:hasAvatar rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:image ;
rdfs:domain ex:Metadata ;
rdfs:range ex:Avatar .
### http://example.com/hasDance
ex:hasDance rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:associatedMedia ;
rdfs:domain ex:Shot ;
rdfs:range ex:Dance ;
owl:propertyDisjointWith ex:hasShot .
### http://example.com/hasGeneratedText
ex:hasGeneratedText rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:exampleOfWork ;
rdfs:domain ex:Text ;
rdfs:range ex:GeneratedText .
### http://example.com/hasMetadata
ex:hasMetadata rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:about ;
rdfs:domain ex:Workspace ;
rdfs:range ex:Metadata .
### http://example.com/hasScore
ex:hasScore rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:aggregateRating ;
rdfs:domain ex:Text ;
rdfs:range ex:Score .
### http://example.com/hasShot
ex:hasShot rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:associatedMedia ;
rdfs:domain ex:Video ;
rdfs:range ex:Shot .
### http://example.com/hasSound
ex:hasSound rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:audio ;
rdfs:domain ex:Metadata ;
rdfs:range ex:Sound .
### http://example.com/hasText
ex:hasText rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:text ;
rdfs:domain ex:Metadata ;
rdfs:range ex:Text .
### http://example.com/hasVideo
ex:hasVideo rdf:type owl:ObjectProperty ;
owl:equivalentProperty schema:video ;
rdfs:domain ex:Metadata ;
rdfs:range ex:Video .
### http://schema.org/about
schema:about rdf:type owl:ObjectProperty .
### http://schema.org/aggregateRating
schema:aggregateRating rdf:type owl:ObjectProperty .
### http://schema.org/associatedMedia
schema:associatedMedia rdf:type owl:ObjectProperty .
### http://schema.org/audio
schema:audio rdf:type owl:ObjectProperty .
### http://schema.org/exampleOfWork
schema:exampleOfWork rdf:type owl:ObjectProperty .
### http://schema.org/image
schema:image rdf:type owl:ObjectProperty .
### http://schema.org/isPartOf
schema:isPartOf rdf:type owl:ObjectProperty .
### http://schema.org/text
schema:text rdf:type owl:ObjectProperty .
### http://schema.org/video
schema:video rdf:type owl:ObjectProperty .
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isComponentOf
dul:isComponentOf rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### http://example.com/anger
ex:anger rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/attire
ex:attire rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/beatValue
ex:beatValue rdf:type owl:DatatypeProperty ;
owl:equivalentProperty mo:noteValue ;
rdfs:domain ex:RhythmicInstruction ;
rdfs:range xsd:string .
### http://example.com/beatsPerMinute
ex:beatsPerMinute rdf:type owl:DatatypeProperty ;
owl:equivalentProperty mo:tempo ;
rdfs:domain ex:RhythmicInstruction ;
rdfs:range xsd:integer .
### http://example.com/body
ex:body rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:text ;
rdfs:domain ex:GeneratedText ;
rdfs:range xsd:string .
### http://example.com/created_at
ex:created_at rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:dateCreated ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:GeneratedText
ex:Score
)
] ;
rdfs:range xsd:dateTime .
### http://example.com/danceFormation
ex:danceFormation rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/danceGenre
ex:danceGenre rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/danceType
ex:danceType rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/dancerLink
ex:dancerLink rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/description
ex:description rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:description ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:Avatar
ex:Sound
ex:Text
ex:Video
)
] ;
rdfs:range xsd:string .
### http://example.com/disgust
ex:disgust rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/fear
ex:fear rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/handMovement
ex:handMovement rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/happiness
ex:happiness rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/id
ex:id rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:identifier ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:Avatar
ex:Dance
ex:GeneratedText
ex:Score
ex:Shot
ex:Sound
ex:Text
ex:Video
)
] ;
rdfs:range xsd:integer .
### http://example.com/keyframeTime
ex:keyframeTime rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:startTime ;
rdfs:domain ex:Shot ;
rdfs:range xsd:decimal .
### http://example.com/kineticUnit
ex:kineticUnit rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Dance ;
rdfs:range xsd:string .
### http://example.com/meter
ex:meter rdf:type owl:DatatypeProperty ;
owl:equivalentProperty mo:meter ;
rdfs:domain ex:MelodicAnalysis ;
rdfs:range xsd:string .
### http://example.com/mode
ex:mode rdf:type owl:DatatypeProperty ;
owl:equivalentProperty mo:mode ;
rdfs:domain ex:MelodicAnalysis ;
rdfs:range xsd:string .
### http://example.com/musicGenre
ex:musicGenre rdf:type owl:DatatypeProperty ;
owl:equivalentProperty mo:genre ;
rdfs:domain ex:MelodicAnalysis ;
rdfs:range xsd:string .
### http://example.com/negative
ex:negative rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/positive
ex:positive rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/project_id
ex:project_id rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:productID ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:Avatar
ex:Sound
ex:Text
ex:Video
)
] ;
rdfs:range xsd:integer .
### http://example.com/rhythm
ex:rhythm rdf:type owl:DatatypeProperty ;
owl:equivalentProperty mo:rhythm ;
rdfs:domain ex:RhythmicInstruction ;
rdfs:range xsd:string .
### http://example.com/sadness
ex:sadness rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/size
ex:size rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:contentSize ;
rdfs:domain ex:Avatar ;
rdfs:range xsd:string .
### http://example.com/subjectivity
ex:subjectivity rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/surprise
ex:surprise rdf:type owl:DatatypeProperty ;
rdfs:domain ex:Score ;
rdfs:range xsd:decimal .
### http://example.com/text_id
ex:text_id rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:identifier ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:Avatar
ex:GeneratedText
ex:Sound
ex:Text
ex:Video
)
] ;
rdfs:range xsd:integer .
### http://example.com/updated_at
ex:updated_at rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:dateModified ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:GeneratedText
ex:Score
)
] ;
rdfs:range xsd:dateTime .
### http://example.com/user_id
ex:user_id rdf:type owl:DatatypeProperty ;
owl:equivalentProperty schema:identifier ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( ex:Avatar
ex:Sound
ex:Text
ex:Video
)
] ;
rdfs:range xsd:integer .
### http://purl.org/ontology/mo/genre
mo:genre rdf:type owl:DatatypeProperty .
### http://purl.org/ontology/mo/meter
mo:meter rdf:type owl:DatatypeProperty .
### http://purl.org/ontology/mo/mode
mo:mode rdf:type owl:DatatypeProperty .
### http://purl.org/ontology/mo/noteValue
mo:noteValue rdf:type owl:DatatypeProperty .
### http://purl.org/ontology/mo/rhythm
mo:rhythm rdf:type owl:DatatypeProperty .
### http://purl.org/ontology/mo/tempo
mo:tempo rdf:type owl:DatatypeProperty .
### http://schema.org/contentSize
schema:contentSize rdf:type owl:DatatypeProperty .
### http://schema.org/dateCreated
schema:dateCreated rdf:type owl:DatatypeProperty .
### http://schema.org/dateModified
schema:dateModified rdf:type owl:DatatypeProperty .
### http://schema.org/description
schema:description rdf:type owl:DatatypeProperty .
### http://schema.org/identifier
schema:identifier rdf:type owl:DatatypeProperty .
### http://schema.org/productID
schema:productID rdf:type owl:DatatypeProperty .
### http://schema.org/startTime
schema:startTime rdf:type owl:DatatypeProperty .
### http://schema.org/text
schema:text rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://example.com/Avatar
ex:Avatar rdf:type owl:Class ;
owl:equivalentClass schema:ImageObject .
### http://example.com/Dance
ex:Dance rdf:type owl:Class ;
owl:equivalentClass schema:PerformingArtsEvent ,
dul:Event .
### http://example.com/GeneratedText
ex:GeneratedText rdf:type owl:Class ;
owl:equivalentClass schema:CreativeWork ;
owl:disjointWith ex:Workspace .
### http://example.com/MelodicAnalysis
ex:MelodicAnalysis rdf:type owl:Class ;
owl:equivalentClass mo:Composition ;
owl:disjointWith ex:RhythmicInstruction .
### http://example.com/Metadata
ex:Metadata rdf:type owl:Class ;
owl:equivalentClass schema:Dataset .
### http://example.com/RhythmicInstruction
ex:RhythmicInstruction rdf:type owl:Class ;
owl:equivalentClass mo:Composition .
### http://example.com/Score
ex:Score rdf:type owl:Class ;
owl:equivalentClass schema:Rating .
### http://example.com/Shot
ex:Shot rdf:type owl:Class ;
owl:equivalentClass schema:Clip .
### http://example.com/Sound
ex:Sound rdf:type owl:Class ;
owl:equivalentClass schema:AudioObject .
### http://example.com/Text
ex:Text rdf:type owl:Class ;
owl:equivalentClass schema:Text .
### http://example.com/Video
ex:Video rdf:type owl:Class ;
owl:equivalentClass schema:VideoObject .
### http://example.com/Workspace
ex:Workspace rdf:type owl:Class ;
owl:equivalentClass schema:CreativeWork .
### http://purl.org/ontology/mo/Composition
mo:Composition rdf:type owl:Class .
### http://schema.org/AudioObject
schema:AudioObject rdf:type owl:Class .
### http://schema.org/Clip
schema:Clip rdf:type owl:Class .
### http://schema.org/CreativeWork
schema:CreativeWork rdf:type owl:Class .
### http://schema.org/Dataset
schema:Dataset rdf:type owl:Class .
### http://schema.org/ImageObject
schema:ImageObject rdf:type owl:Class .
### http://schema.org/PerformingArtsEvent
schema:PerformingArtsEvent rdf:type owl:Class .
### http://schema.org/Rating
schema:Rating rdf:type owl:Class .
### http://schema.org/Text
schema:Text rdf:type owl:Class .
### http://schema.org/VideoObject
schema:VideoObject rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event
dul:Event rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### http://example.com/dance1
ex:dance1 rdf:type owl:NamedIndividual ,
ex:Dance ;
ex:belongsToMelodicAnalysis ex:melodicAnalysis1 ;
ex:belongsToRhythmicInstruction ex:rhythmicInstruction1 ;
ex:attire "Γιορτινό" ;
ex:danceFormation "Ανοιχτός κύκλος με οδηγό" ;
ex:danceGenre "Ζωναράδικος" ;
ex:danceType "Γίκνα" ;
ex:handMovement "V+W" ;
ex:kineticUnit "Α+Α΄+Β" .
### http://example.com/dance2
ex:dance2 rdf:type owl:NamedIndividual ,
ex:Dance ;
ex:belongsToMelodicAnalysis ex:melodicAnalysis2 ;
ex:belongsToRhythmicInstruction ex:rhythmicInstruction2 ;
ex:attire "Αναπαραγωγή" ;
ex:danceFormation "Ανοιχτός κύκλος με οδηγό" ;
ex:danceGenre "Μπαϊντούσκα" ;
ex:danceType "Μπαϊντούσκα" ;
ex:dancerLink "W" ;
ex:handMovement "V+W" ;
ex:kineticUnit "Α+Β+Γ" .
### http://example.com/dance3
ex:dance3 rdf:type owl:NamedIndividual ,
ex:Dance ;
ex:belongsToMelodicAnalysis ex:melodicAnalysis3 ;
ex:belongsToRhythmicInstruction ex:rhythmicInstruction3 ;
ex:attire "Καθημερινό σύγχρονο" ;
ex:danceFormation "Ελεύθερο" ;
ex:danceGenre "Καρσιλαμάς" ;
ex:danceType "Καρσιλαμάς" ;
ex:handMovement "Ελεύθερη κίνηση" ;
ex:kineticUnit "Α+Α" .
### http://example.com/melodicAnalysis1
ex:melodicAnalysis1 rdf:type owl:NamedIndividual ,
ex:MelodicAnalysis ;
ex:meter "2/4" ;
ex:mode "Διατονικός, Τρόπος του σολ" ;
ex:musicGenre "Γίκνα" .
### http://example.com/melodicAnalysis2
ex:melodicAnalysis2 rdf:type owl:NamedIndividual ,
ex:MelodicAnalysis ;
ex:meter "5/8 (2-3)" ;
ex:mode "Διατονικός, Τρόπος του ρε" ;
ex:musicGenre "Μπαϊντούσκα" .
### http://example.com/melodicAnalysis3
ex:melodicAnalysis3 rdf:type owl:NamedIndividual ,
ex:MelodicAnalysis ;
ex:meter "9/8 (2-2-2-3)" ;
ex:mode "Διατονικός, Τρόπος του ντο" ;
ex:musicGenre "Καρσιλαμάς" .
### http://example.com/rhythmicInstruction1
ex:rhythmicInstruction1 rdf:type owl:NamedIndividual ,
ex:RhythmicInstruction ;
ex:beatValue "Τέταρτο" ;
ex:beatsPerMinute 126 ;
ex:rhythm "Μη ελεύθερο" .
### http://example.com/rhythmicInstruction2
ex:rhythmicInstruction2 rdf:type owl:NamedIndividual ,
ex:RhythmicInstruction ;
ex:beatValue "Όγδοο" ;
ex:beatsPerMinute 420 ;
ex:rhythm "Μη ελεύθερο" .
### http://example.com/rhythmicInstruction3
ex:rhythmicInstruction3 rdf:type owl:NamedIndividual ,
ex:RhythmicInstruction ;
ex:beatValue "Όγδοο" ;
ex:beatsPerMinute 252 ;
ex:rhythm "Μη ελεύθερο" .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointProperties ;
owl:members ( ex:belongsToGeneratedText
ex:belongsToText
ex:belongsToVideo
ex:belongsToWorkspace
)
] .
[ rdf:type owl:AllDisjointProperties ;
owl:members ( ex:id
ex:text_id
ex:user_id
)
] .
### Generated by the OWL API (version 4.5.25.2023-02-15T19:15:49Z) https://github.com/owlcs/owlapi