-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBadmintONTO.ttl
2033 lines (1555 loc) · 83.3 KB
/
BadmintONTO.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://w3id.org/BadmintONTO/> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://w3id.org/BadmintONTO/> .
<http://w3id.org/BadmintONTO/> rdf:type owl:Ontology ;
owl:versionIRI <http://w3id.org/BadmintONTO/0.1/> ;
owl:imports <http://www.w3.org/2006/time#2016> ;
<http://purl.org/dc/terms/created> "2023-03-21" ;
<http://purl.org/dc/terms/creator> "Huanyu Li" ;
<http://purl.org/dc/terms/license> "https://github.com/huanyu-li/BadmintONTO/blob/main/LICENSE" ;
<http://purl.org/dc/terms/title> "BadmintON onTOlogy (BadmintONTO)" ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "badmintonto" ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "http://w3id.org/BadmintONTO/0.1/" ;
rdfs:seeAlso "https://github.com/huanyu-li/BadmintONTO" ;
owl:versionInfo "0.1" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
<http://purl.org/vocab/vann/preferredNamespaceUri> rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.opengis.net/ont/geosparql#wktLiteral
<http://www.opengis.net/ont/geosparql#wktLiteral> rdf:type rdfs:Datatype ;
rdfs:comment "A Well-known Text serialization of a Geometry object." .
#################################################################
# Object Properties
#################################################################
### http://w3id.org/BadmintONTO/atCourtArea
:atCourtArea rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :PlayerLocation
:ShuttleLocation
)
] ;
rdfs:range :CourtArea ;
rdfs:comment "atCourtArea is to represent the location of a player/shuttle at a specific court area." ;
rdfs:label "at court area" .
### http://w3id.org/BadmintONTO/eliminationPlayer
:eliminationPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPlayer ;
rdfs:domain :EliminationInformation ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
:Team
)
] ;
rdfs:comment "elimination player" ,
"eliminationPlayer represents that a elimination tournament can have some players/pairs/teams." .
### http://w3id.org/BadmintONTO/eliminationStage
:eliminationStage rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :EliminationInformation ;
rdfs:range :EliminationStage ;
rdfs:comment "eliminationStage represents in which stage that an elimination play is." .
### http://w3id.org/BadmintONTO/getPointByPair
:getPointByPair rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Pair .
### http://w3id.org/BadmintONTO/getPointByPlayer
:getPointByPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Player .
### http://w3id.org/BadmintONTO/getPointByTeam
:getPointByTeam rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Team .
### http://w3id.org/BadmintONTO/getSetByPair
:getSetByPair rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Pair .
### http://w3id.org/BadmintONTO/getSetByPlayer
:getSetByPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Player .
### http://w3id.org/BadmintONTO/hasAgentRole
:hasAgentRole rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :AgentRole ;
rdfs:comment "hasAgentRole represents that an event can have some agents playing specific roles." ;
rdfs:label "has agent role" .
### http://w3id.org/BadmintONTO/hasDraw
:hasDraw rdf:type owl:ObjectProperty ;
rdfs:domain :Competition ;
rdfs:range :Draw ;
rdfs:comment "hasDraw represents that a particular competition can have different draws (e.g., man single, men doubble, woman single, women double and mix double)." ;
rdfs:label "has draw" .
### http://w3id.org/BadmintONTO/hasHittingArea
:hasHittingArea rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :ShotInformation ;
rdfs:range :HittingArea ;
rdfs:comment "hasHittingArea represents that a shot is hit at a particular area in terms of the player." ;
rdfs:label "has hitting area" .
### http://w3id.org/BadmintONTO/hasHittingStyle
:hasHittingStyle rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :ShotInformation ;
rdfs:range :HittingStyle ;
rdfs:comment "hasHittingStyle represents that if a shuttle is hit backhand or forehand by a player." ;
rdfs:label "has hitting style" .
### http://w3id.org/BadmintONTO/hasLocation
:hasLocation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :PlayerInformation
:ShotInformation
)
] ;
rdfs:range :Location ;
rdfs:comment "has Location" ,
"hasLocation represents that some entities can associate with locations." .
### http://w3id.org/BadmintONTO/hasMatchType
:hasMatchType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :MatchInformation ;
rdfs:range :MatchType ;
rdfs:comment "hasMatchType represents that the match type is captured by a match-information object." ;
rdfs:label "has match type" .
### http://w3id.org/BadmintONTO/hasPlayer
:hasPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :InformationObject ;
rdfs:range :Player ;
rdfs:comment "hasPlayer represents that some entities can associate with players/pairs/teams." ;
rdfs:label "has player" .
### http://w3id.org/BadmintONTO/hasRoleA
:hasRoleA rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :MatchInformation
:SetInformation
:ShotInformation
)
] ;
rdfs:range :SinglePlayerRole .
### http://w3id.org/BadmintONTO/hasRoleB
:hasRoleB rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :MatchInformation
:SetInformation
:ShotInformation
)
] ;
rdfs:range :SinglePlayerRole .
### http://w3id.org/BadmintONTO/hasRoute
:hasRoute rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :ShotInformation ;
rdfs:range :ShuttleRoute ;
rdfs:comment "hasRoute represents that the route of a shuttle after hitting." ;
rdfs:label "has route" .
### http://w3id.org/BadmintONTO/hasShotType
:hasShotType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :ShotInformation ;
rdfs:range :ShotType ;
rdfs:comment "hasShotType represents that the shot type is captured by a shot-information object." ;
rdfs:label "has shot type" .
### http://w3id.org/BadmintONTO/hasSubEvent
:hasSubEvent rdf:type owl:ObjectProperty ;
owl:inverseOf :hasSuperEvent ;
rdfs:domain :Event ;
rdfs:range :Event ;
rdfs:comment "hasSubEvent represents that an event can have another event as a sub-event." ;
rdfs:label "has sub-event" .
### http://w3id.org/BadmintONTO/hasSuperEvent
:hasSuperEvent rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Event ;
rdfs:comment "hasSuperEvent represents that an event can have another event as a super-event." ;
rdfs:label "has super-event" .
### http://w3id.org/BadmintONTO/hittingPlayer
:hittingPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPlayer ;
rdfs:domain :ShotInformation ;
rdfs:range :Player ;
rdfs:comment "hittingPlayer represents that the player who hits a shot is captured by a shot-information object." ;
rdfs:label "hitting player" .
### http://w3id.org/BadmintONTO/inStage
:inStage rdf:type owl:ObjectProperty ;
rdfs:domain :MatchInformation ;
rdfs:range :TournamentStage .
### http://w3id.org/BadmintONTO/isDescribedBy
:isDescribedBy rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :InformationObject ;
rdfs:comment "isDescribedBy represents that an event can be described an information object that captures relevant information." ;
rdfs:label "is described by" .
### http://w3id.org/BadmintONTO/isInformationAbout
:isInformationAbout rdf:type owl:ObjectProperty ;
rdfs:domain :InformationObject .
### http://w3id.org/BadmintONTO/isPerformedBy
:isPerformedBy rdf:type owl:ObjectProperty ;
rdfs:domain :AgentRole ;
rdfs:range <http://xmlns.com/foaf/0.1/Agent> ;
rdfs:comment "isPerformedBy represents that an agent role is performed by an agent." ;
rdfs:label "is performed by" .
### http://w3id.org/BadmintONTO/occursAtLocation
:occursAtLocation rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Location ;
rdfs:comment "occursAtLocation represents that an event takes place at a location." ;
rdfs:label "occurs at location" .
### http://w3id.org/BadmintONTO/occursAtTime
:occursAtTime rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range <http://www.w3.org/2006/time#TemporalEntity> ;
rdfs:comment "occursAtTime represents that an event takes place at a time." ;
rdfs:label "occurs at time" .
### http://w3id.org/BadmintONTO/playedBy
:playedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isPerformedBy ;
rdfs:domain :PlayerRole ;
rdfs:range :Player ;
rdfs:comment "played By" ,
"playedBy represents that a player role is performed by a player." .
### http://w3id.org/BadmintONTO/playerLocation
:playerLocation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasLocation ;
rdfs:domain :PlayerInformation ;
rdfs:range :PlayerLocation ;
rdfs:comment "playerLocation represents that a player's location is captured by a player-information object." ;
rdfs:label "player location" .
### http://w3id.org/BadmintONTO/qualifiedPlayer
:qualifiedPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPlayer ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :EliminationInformation
:RoundRobinGroupInformation
)
] ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
:Team
)
] ;
rdfs:comment "The players/pairs/teams are qualified in a round-robin group or elimination stage." ;
rdfs:label "qualified player" .
### http://w3id.org/BadmintONTO/receivingPlayer
:receivingPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPlayer ;
rdfs:domain :ShotInformation ;
rdfs:range :Player ;
rdfs:comment "receivingPlayer represents that the player who will receive a shot is captured by a shot-information object." ;
rdfs:label "receiving player" .
### http://w3id.org/BadmintONTO/relatesToCompetition
:relatesToCompetition rdf:type owl:ObjectProperty ;
rdfs:domain :CompetitionEvent ;
rdfs:range :Competition ;
rdfs:comment "relatesToCompetition represents the type of competition for a competition event." ;
rdfs:label "relates to competition" .
### http://w3id.org/BadmintONTO/roundRobinGroupStage
:roundRobinGroupStage rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:domain :RoundRobinGroupInformation ;
rdfs:range :RoundRobinStage ;
rdfs:comment "roundRobinGroupStage represents in which stage that a round-robin play is." .
### http://w3id.org/BadmintONTO/roundRobinPlayer
:roundRobinPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPlayer ;
rdfs:domain :RoundRobinGroupInformation ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
:Team
)
] ;
rdfs:comment "roundRobinPlayer represents that a group in a round robin tournament can have some players/pairs/teams." ;
rdfs:label "round robin player" .
### http://w3id.org/BadmintONTO/shuttleHitLocation
:shuttleHitLocation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasLocation ;
rdfs:domain :ShotInformation ;
rdfs:range :ShuttleLocation ;
rdfs:comment "shuttleHitLocation represents that a shuttle's hit location is captured by a shot-information object." ;
rdfs:label "shuttle hit location" .
### http://w3id.org/BadmintONTO/shuttleLandingLocation
:shuttleLandingLocation rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasLocation ;
rdfs:domain :ShotInformation ;
rdfs:range :ShuttleLocation ;
rdfs:comment "shuttleLandingLocation represents that a shuttle's landing location is captured by a shot-information object." ;
rdfs:label "shuttle landing location" .
### http://w3id.org/BadmintONTO/winBy
:winBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isInformationAbout ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
:Team
)
] .
### http://w3id.org/BadmintONTO/winByPair
:winByPair rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Pair .
### http://w3id.org/BadmintONTO/winByPlayer
:winByPlayer rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :winBy ;
rdfs:range :Player .
#################################################################
# Data properties
#################################################################
### http://w3id.org/BadmintONTO/belongToCountry
:belongToCountry rdf:type owl:DatatypeProperty ;
rdfs:domain :Location ;
rdfs:range xsd:string ;
rdfs:comment "ISO (3166) country code" ;
rdfs:label "belong to country" .
### http://w3id.org/BadmintONTO/currentWorldRanking
:currentWorldRanking rdf:type owl:DatatypeProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
)
] ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The current world ranking of a player/pair." ;
rdfs:label "current working ranking" .
### http://w3id.org/BadmintONTO/hasInformationValue
:hasInformationValue rdf:type owl:DatatypeProperty ;
rdfs:domain :InformationObject .
### http://w3id.org/BadmintONTO/highestWorldRanking
:highestWorldRanking rdf:type owl:DatatypeProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
)
] ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The highest world ranking of a player/pair." ;
rdfs:label "highest world ranking" .
### http://w3id.org/BadmintONTO/inCompetition
:inCompetition rdf:type owl:DatatypeProperty ;
rdfs:domain :Competition ;
rdfs:range xsd:string .
### http://w3id.org/BadmintONTO/matchScoreA
:matchScoreA rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :MatchInformation ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The match score of player/pair A." ;
rdfs:label "match score A" .
### http://w3id.org/BadmintONTO/matchScoreB
:matchScoreB rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :MatchInformation ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The match score of player/pair B." ;
rdfs:label "match score B" .
### http://w3id.org/BadmintONTO/personFullName
:personFullName rdf:type owl:DatatypeProperty ;
rdfs:domain :Person ;
rdfs:range xsd:string ;
rdfs:comment "The full name of a person." ;
rdfs:label "person full name" .
### http://w3id.org/BadmintONTO/playerAge
:playerAge rdf:type owl:DatatypeProperty ;
rdfs:domain :Player ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The age of a player." ;
rdfs:label "player age" .
### http://w3id.org/BadmintONTO/playerHeight
:playerHeight rdf:type owl:DatatypeProperty ;
rdfs:domain :Player ;
rdfs:range xsd:double ;
rdfs:comment "The height of a player." ;
rdfs:label "player height" .
### http://w3id.org/BadmintONTO/rallyLoseReason
:rallyLoseReason rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :RallyInformation ;
rdfs:range xsd:string ;
rdfs:comment "The lose reason of a rally." ;
rdfs:label "rally lose reason" .
### http://w3id.org/BadmintONTO/rallyWinReason
:rallyWinReason rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :RallyInformation ;
rdfs:range xsd:string ;
rdfs:comment "The win reason of a rally." ;
rdfs:label "rally win reason" .
### http://w3id.org/BadmintONTO/roundRobinGroup
:roundRobinGroup rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :RoundRobinGroupInformation ;
rdfs:range xsd:string ;
rdfs:comment "round-robin group number." ;
rdfs:label "round robin group" .
### http://w3id.org/BadmintONTO/roundScoreA
:roundScoreA rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :RallyInformation
:ShotInformation
)
] ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The set score of player/pair A." ;
rdfs:label "round score A" .
### http://w3id.org/BadmintONTO/roundScoreB
:roundScoreB rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :RallyInformation
:ShotInformation
)
] ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The round score of player/pair B." ;
rdfs:label "round score B" .
### http://w3id.org/BadmintONTO/setNumber
:setNumber rdf:type owl:DatatypeProperty ;
rdfs:domain :MatchInformation ;
rdfs:range xsd:nonNegativeInteger .
### http://w3id.org/BadmintONTO/setScoreA
:setScoreA rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :SetInformation ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The set score of player/pair A." ;
rdfs:label "set score A" .
### http://w3id.org/BadmintONTO/setScoreB
:setScoreB rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :SetInformation ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The set score of player/pair B." ;
rdfs:label "set score B" .
### http://w3id.org/BadmintONTO/shotNumber
:shotNumber rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasInformationValue ;
rdfs:domain :RallyInformation ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "The number of shots in a rally." ;
rdfs:label "shot number" .
### http://www.opengis.net/ont/geosparql#asWKT
<http://www.opengis.net/ont/geosparql#asWKT> rdf:type owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range <http://www.opengis.net/ont/geosparql#wktLiteral> ;
rdfs:comment "The WKT serialization of a Geometry." ;
rdfs:isDefinedBy <http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-as-wkt-literal> .
#################################################################
# Classes
#################################################################
### http://w3id.org/BadmintONTO/AgentRole
:AgentRole rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :isPerformedBy ;
owl:someValuesFrom <http://xmlns.com/foaf/0.1/Agent>
]
[ rdf:type owl:Restriction ;
owl:onProperty :isPerformedBy ;
owl:allValuesFrom <http://xmlns.com/foaf/0.1/Agent>
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "A role that an agent can take in a specific context." ;
rdfs:label "Agent Role" .
### http://w3id.org/BadmintONTO/BWFTeamCompetition
:BWFTeamCompetition rdf:type owl:Class ;
rdfs:subClassOf :Competition ;
rdfs:comment "Team competitions organized by the Badminton World Federation (BWF)." ;
rdfs:label "BWF Team Competition" .
### http://w3id.org/BadmintONTO/BWFTournamentCompetition
:BWFTournamentCompetition rdf:type owl:Class ;
rdfs:subClassOf :Competition ;
rdfs:comment "Tournamen competitions organized by BWF." ;
rdfs:label "BWF Tournament Competition" .
### http://w3id.org/BadmintONTO/ChallengeEvent
:ChallengeEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "A challenge event called by a player to challenge a judgement." ;
rdfs:label "Challenge Event" .
### http://w3id.org/BadmintONTO/ChangeCourtEvent
:ChangeCourtEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "A change-court event can happen between sets, or after one player or one pair firstly wins 11 points." ;
rdfs:label "Change-Court Event" .
### http://w3id.org/BadmintONTO/Competition
:Competition rdf:type owl:Class ;
rdfs:comment "Different Competition Types in badminton." ;
rdfs:label "Competition" .
### http://w3id.org/BadmintONTO/CompetitionEvent
:CompetitionEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasSubEvent ;
owl:someValuesFrom :MatchEvent
] ;
rdfs:comment "A competition event takes place in period of time, composing different draws and matches." ;
rdfs:label "Competition Event" .
### http://w3id.org/BadmintONTO/CourtArea
:CourtArea rdf:type owl:Class ;
rdfs:comment "A court area indicates a particular area in a court." ;
rdfs:label "Court Area" .
### http://w3id.org/BadmintONTO/DoublePlayerRole
:DoublePlayerRole rdf:type owl:Class ;
rdfs:subClassOf :PlayerRole ;
rdfs:comment "A role that a player takes in a double match." ;
rdfs:label "Double Player Role" .
### http://w3id.org/BadmintONTO/Draw
:Draw rdf:type owl:Class ;
owl:equivalentClass :MatchType ;
rdfs:comment "The different match types in badminton (i.e., man single, men double, woman single, women double and mix double)." ;
rdfs:label "Draw" .
### http://w3id.org/BadmintONTO/EliminationEvent
:EliminationEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "The event for the elimination stage at a tournament." ;
rdfs:label "Elimination Event" .
### http://w3id.org/BadmintONTO/EliminationInformation
:EliminationInformation rdf:type owl:Class ;
rdfs:subClassOf :InformationObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :eliminationPlayer ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
:Team
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :qualifiedPlayer ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( :Pair
:Player
:Team
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :eliminationStage ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :EliminationStage
] ;
rdfs:comment "An information object captures relevant information of the elimination tournament stage." ;
rdfs:label "Elimination Information" .
### http://w3id.org/BadmintONTO/EliminationStage
:EliminationStage rdf:type owl:Class ;
rdfs:subClassOf :TournamentStage ;
rdfs:comment "Sudden-death play." ;
rdfs:label "Elimination Stage" .
### http://w3id.org/BadmintONTO/Equipment
:Equipment rdf:type owl:Class ;
rdfs:comment "Equipments in badmintion domain." ;
rdfs:label "Equipment" .
### http://w3id.org/BadmintONTO/Event
:Event rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :hasAgentRole ;
owl:someValuesFrom :AgentRole
]
[ rdf:type owl:Restriction ;
owl:onProperty :hasAgentRole ;
owl:allValuesFrom :AgentRole
]
) ;
rdf:type owl:Class
] ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :isDescribedBy ;
owl:someValuesFrom :InformationObject
]
[ rdf:type owl:Restriction ;
owl:onProperty :isDescribedBy ;
owl:allValuesFrom :InformationObject
]
) ;
rdf:type owl:Class
] ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :occursAtLocation ;
owl:someValuesFrom :Location
]
[ rdf:type owl:Restriction ;
owl:onProperty :occursAtLocation ;
owl:allValuesFrom :Location
]
) ;
rdf:type owl:Class
] ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :occursAtTime ;
owl:someValuesFrom <http://www.w3.org/2006/time#TemporalEntity>
]
[ rdf:type owl:Restriction ;
owl:onProperty :occursAtTime ;
owl:allValuesFrom <http://www.w3.org/2006/time#TemporalEntity>
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "Activities that take place within a given context or timeframe." ;
rdfs:label "Event" .
### http://w3id.org/BadmintONTO/EventInformation
:EventInformation rdf:type owl:Class ;
rdfs:subClassOf :InformationObject ;
rdfs:comment "An information object captures relevant information of an event." ;
rdfs:label "Event Information" .
### http://w3id.org/BadmintONTO/GameEvent
:GameEvent rdf:type owl:Class ;
owl:equivalentClass :SetEvent ;
rdfs:subClassOf :Event ;
rdfs:comment "A set (game) in a match." ;
rdfs:label "Game Event" .
### http://w3id.org/BadmintONTO/Geometry
:Geometry rdf:type owl:Class ;
rdfs:comment "http://www.opengis.net/ont/geosparql#Geometry" ;
rdfs:label "Geometry" ;
<http://www.w3.org/2004/02/skos/core#definition> "A coherent set of direct positions in space. The positions are held within a Spatial Reference System (SRS)." .
### http://w3id.org/BadmintONTO/GetPointEvent
:GetPointEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "A get-point event is as the last sub-event in a rally event." ;
rdfs:label "Get-Point Event" .
### http://w3id.org/BadmintONTO/HittingArea
:HittingArea rdf:type owl:Class ;
rdfs:comment "The hitting area in terms of a player when the player hits a shuttle." ;
rdfs:label "Hitting Area" .
### http://w3id.org/BadmintONTO/HittingStyle
:HittingStyle rdf:type owl:Class ;
rdfs:comment "A hitting style indicates if a shot is hit backhand or forehand." ;
rdfs:label "Hittting Style" .
### http://w3id.org/BadmintONTO/InformationObject
:InformationObject rdf:type owl:Class ;
rdfs:label "Information Object" ;
rdfs:seeAlso "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject" .
### http://w3id.org/BadmintONTO/Location
:Location rdf:type owl:Class ;
rdfs:subClassOf :Geometry ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :atCourtArea ;
owl:someValuesFrom :CourtArea
]
[ rdf:type owl:Restriction ;
owl:onProperty :atCourtArea ;
owl:allValuesFrom :CourtArea
]
) ;
rdf:type owl:Class
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.opengis.net/ont/geosparql#asWKT> ;
owl:someValuesFrom <http://www.opengis.net/ont/geosparql#wktLiteral>
] ;
rdfs:comment "The geometric location." ;
rdfs:label "Location" .
### http://w3id.org/BadmintONTO/MatchDateTimeDescription
:MatchDateTimeDescription rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/2006/time#GeneralDateTimeDescription> .
### http://w3id.org/BadmintONTO/MatchDurationDescription
:MatchDurationDescription rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/2006/time#DurationDescription> ;
rdfs:comment "To describe a match duration." ;
rdfs:label "Match Duration Description" .
### http://w3id.org/BadmintONTO/MatchEvent
:MatchEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasSubEvent ;
owl:someValuesFrom :SetEvent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :isDescribedBy ;
owl:someValuesFrom :MatchInformation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :occursAtTime ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :MatchTimeEntity
] ;
rdfs:comment "A match event is participated by two single players or two pairs, and contains 3 sets at most." ;
rdfs:label "Match Event" .
### http://w3id.org/BadmintONTO/MatchInformation
:MatchInformation rdf:type owl:Class ;
rdfs:subClassOf :InformationObject ,
[ rdf:type owl:Class ;
owl:unionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :winByPair ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Pair
]
[ rdf:type owl:Restriction ;
owl:onProperty :winByPlayer ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Player
]
)
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPlayer ;
owl:someValuesFrom :Player
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasMatchType ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :MatchType
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :inCompetition ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :matchScoreA ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :matchScoreB ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:nonNegativeInteger
] ;
rdfs:comment "An information object captures relevant information of a match." ;
rdfs:label "Match Information" .
### http://w3id.org/BadmintONTO/MatchTimeEntity
:MatchTimeEntity rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/2006/time#TemporalEntity> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.w3.org/2006/time#hasBeginning> ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass <http://www.w3.org/2006/time#Instant>
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.w3.org/2006/time#hasDurationDescription> ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :MatchDurationDescription
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.w3.org/2006/time#hasEnd> ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass <http://www.w3.org/2006/time#Instant>
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.w3.org/2006/time#inDateTime> ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :MatchDateTimeDescription
] ;
rdfs:comment "Temporal entity for a match." ;
rdfs:label "Match Time Entity" .
### http://w3id.org/BadmintONTO/MatchType
:MatchType rdf:type owl:Class ;
rdfs:comment "The different match types in badminton (i.e., man single, men double, woman single, women double and mix double)." ;
rdfs:label "Match Type" .
### http://w3id.org/BadmintONTO/MedicalPauseEvent
:MedicalPauseEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "A medical pause event can be asked by a player." ;
rdfs:label "Medical Pause Event" .
### http://w3id.org/BadmintONTO/Pair
:Pair rdf:type owl:Class ;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Agent> ;
rdfs:comment "Pairs in double plays (i.e., men double, women double and mix double)." ;
rdfs:label "Pair" .
### http://w3id.org/BadmintONTO/PairPlayersRole
:PairPlayersRole rdf:type owl:Class ;
rdfs:subClassOf :PlayerRole ;
rdfs:comment "A role that a pair of two players takes in a match." ;
rdfs:label "Pair-Player Role" .
### http://w3id.org/BadmintONTO/PenaltyEvent
:PenaltyEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "A penalty event can be called by an umpire." ;
rdfs:label "Penalty Event" .