-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathontouml.ttl
1580 lines (1275 loc) · 86.6 KB
/
ontouml.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 dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ontouml: <https://w3id.org/ontouml#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@base <https://w3id.org/ontouml> .
#################################################################
# Metadata
#################################################################
<https://w3id.org/ontouml> rdf:type owl:Ontology , dct:Standard ;
################################################################# VERSIONING
owl:versionIRI <https://w3id.org/ontouml/vocabulary/v1.1.0> ;
owl:versionInfo "General review for compliance with the OntoUML Metamodel 1.1.1."@en ;
owl:priorVersion <https://w3id.org/ontouml/vocabulary/v1.0.0> ;
dct:issued "2022-04-03"^^xsd:date ;
dct:modified "2023-07-27"^^xsd:date ;
################################################################# IDENTIFICATION
dct:title "OntoUML Vocabulary"@en ;
dct:description "An OWL vocabulary to allow the serialization and exchanging of OntoUML models in conformance with the Ontouml Metamodel."@en ;
dct:identifier "https://w3id.org/ontouml"^^xsd:anyURI ;
dct:license <https://creativecommons.org/licenses/by-sa/4.0> ;
dct:conformsTo <https://w3id.org/ontouml/metamodel/v1.1.1> ;
dcat:landingPage <https://w3id.org/ontouml/vocabulary> ;
foaf:homepage <https://w3id.org/ontouml/vocabulary/docs> ;
vann:preferredNamespacePrefix "ontouml" ;
vann:preferredNamespaceUri "https://w3id.org/ontouml#"^^xsd:anyURI ;
dct:language <http://id.loc.gov/vocabulary/iso639-1/en> ;
dct:isReferencedBy <https://dblp.org/rec/conf/jowo/FonsecaSVFGA21.html> ,
<https://doi.org/10.1007/978-3-031-17995-2_1> ;
dcat:keyword "OntoUML"@en ,
"OntoUML-Metamodel"@en ,
"Ontology-Driven Conceptual Modeling"@en ;
################################################################# AUTHORSHIP
dct:publisher <https://www.utwente.nl/en/eemcs/scs/> ;
dct:creator <https://orcid.org/0000-0002-5385-5761> ,
<https://orcid.org/0000-0003-2528-3118> ,
<https://orcid.org/0000-0003-2736-7817> ;
dct:contributor <https://orcid.org/0000-0003-3385-4769> .
<https://www.inf.unibz.it/krdb/> rdf:type foaf:Organization ;
foaf:name "KRDB Research Centre for Knowledge and Data, Free University of Bozen-Bolzano, Italy" ;
foaf:homepage "https://www.inf.unibz.it/krdb/"^^xsd:anyURI ;
foaf:member <https://orcid.org/0000-0003-3385-4769> .
<https://www.utwente.nl/en/eemcs/scs/> rdf:type foaf:Organization ;
foaf:name "Semantics, Cybersecurity & Services (SCS), University of Twente, the Netherlands" ;
foaf:homepage "https://www.utwente.nl/en/eemcs/scs/"^^xsd:anyURI ;
foaf:member <https://orcid.org/0000-0002-5385-5761> ,
<https://orcid.org/0000-0003-2528-3118> ,
<https://orcid.org/0000-0003-2736-7817> .
<https://orcid.org/0000-0003-3385-4769> foaf:name "Mattia Fumagalli" ;
foaf:mbox "mattia.fumagalli@unibz.it" .
<https://orcid.org/0000-0002-5385-5761> foaf:name "Tiago Prince Sales" ;
foaf:mbox "t.princesales@utwente.nl" .
<https://orcid.org/0000-0003-2528-3118> foaf:name "Claudenir M. Fonseca" ;
foaf:mbox "c.moraisfonseca@utwente.nl" .
<https://orcid.org/0000-0003-2736-7817> foaf:name "Pedro Paulo Favato Barcelos" ;
foaf:mbox "p.p.favatobarcelos@uwente.nl" .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/ontouml#aggregationKind
ontouml:aggregationKind rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Property ;
rdfs:range ontouml:AggregationKind ;
rdfs:label "aggregationKind"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Characterizes an ontouml:Property with an ontouml:AggregationKind instance, i.e., indicates whether the ontouml:Property is a simple (ontouml:none), a shared (ontouml:shared), or a composite (ontouml:composite) property."@en .
### https://w3id.org/ontouml#attribute
ontouml:attribute rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ontouml:property ;
rdfs:domain ontouml:Class ;
rdfs:range ontouml:Property ;
rdfs:label "attribute"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an instance of an ontouml:Class to its properties, which are instances of the ontouml:Property class."@en .
### https://w3id.org/ontouml#cardinality
ontouml:cardinality rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Property ;
rdfs:range ontouml:Cardinality ;
rdfs:label "cardinality"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies the individual of type ontouml:Cardinality that represents the cardinalities of an ontouml:Property."@en .
### https://w3id.org/ontouml#categorizer
ontouml:categorizer rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:GeneralizationSet ;
rdfs:range ontouml:Class ;
rdfs:label "categorizer"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment " Identifies the ontouml:Class that is instantiated by the specific classes of the ontouml:Generalization type composing the ontouml:GeneralizationSet"@en ;
rdfs:seeAlso <https://doi.org/10.1016/j.datak.2022.102012> ,
<https://doi.org/10.1007/978-3-031-17995-2_2> .
### https://w3id.org/ontouml#containsModelElement
ontouml:containsModelElement rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Package ;
rdfs:range ontouml:ModelElement ;
rdfs:label "containsModelElement"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an instance of type ontouml:ModelElement that composes in an ontouml:Package."@en ,
"It is mapped to the OntoUML Metamodel's 'contents' relation between the Package and ModelElement classes."@en .
### https://w3id.org/ontouml#containsView
ontouml:containsView rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Diagram ;
rdfs:range ontouml:ElementView ;
rdfs:label "containsView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an instance of type ontouml:ElementView that is contained in an ontouml:Diagram, representing the concrete diagramation of an ontouml:ModelElement."@en .
### https://w3id.org/ontouml#diagram
ontouml:diagram rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Project ;
rdfs:range ontouml:Diagram ;
rdfs:label "diagram"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies which entities of type ontouml:Diagram are part of an ontouml:Project."@en ,
"It is mapped to the OntoUML Metamodel's 'diagrams' relation between the Project and Diagram classes."@en .
### https://w3id.org/ontouml#general
ontouml:general rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Generalization ;
rdfs:range ontouml:Classifier ;
rdfs:label "general"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies the parent ontouml:Classifier (e.g., a superclass) that participates in an ontouml:Generalization relation."@en .
### https://w3id.org/ontouml#generalization
ontouml:generalization rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:GeneralizationSet ;
rdfs:range ontouml:Generalization ;
rdfs:label "generalization"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an ontouml:Generalization that participates in an ontouml:GeneralizationSet."@en .
### https://w3id.org/ontouml#isViewOf
ontouml:isViewOf rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:ElementView ;
rdfs:range ontouml:ModelElement ;
rdfs:label "isViewOf"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:ElementView to ontouml:ModelElement, indicating the diagrammatical representation of the latter in an ontouml:Diagram."@en .
### https://w3id.org/ontouml#literal
ontouml:literal rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Class ;
rdfs:range ontouml:Literal ;
rdfs:label "literal"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:Literal to its container enumeration class (an ontouml:Class that has the ontouml:stereotype property with ontouml:enumeration)."@en .
### https://w3id.org/ontouml#model
ontouml:model rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Project ;
rdfs:range ontouml:Package ;
rdfs:label "model"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:Project to an ontouml:Package that is part of it."@en .
### https://w3id.org/ontouml#owner
ontouml:owner rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Diagram ;
rdfs:range ontouml:ModelElement ;
rdfs:label "owner"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:Diagram to an ontouml:ModelElement that is represented on it, i.e., to an ontouml:ModelElement that has an ontouml:ElementView on that ontouml:Diagram."@en .
### https://w3id.org/ontouml#point
ontouml:point rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Path ;
rdfs:range ontouml:Point ;
rdfs:label "point"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:Path to an ontouml:Point that composes it."@en .
### https://w3id.org/ontouml#project
ontouml:project rdf:type owl:ObjectProperty ;
rdfs:domain [ owl:intersectionOf ( [ rdf:type owl:Class ;
owl:unionOf ( ontouml:Diagram
ontouml:DiagramElement
ontouml:ModelElement
)
]
[ rdf:type owl:Class ;
owl:complementOf ontouml:Project
]
) ;
rdf:type owl:Class
] ;
rdfs:range ontouml:Project ;
rdfs:label "project"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:OntoumlElement different than ontouml:Project to an ontouml:Project that it composes."@en .
### https://w3id.org/ontouml#property
ontouml:property rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Classifier ;
rdfs:range ontouml:Property ;
rdfs:label "property"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Aggregates its subproperties ontouml:attribute and ontouml:relationEnd. Should not be directly used."@en ,
"Identifies an ontouml:Property exhibited by an ontouml:Classifier. If the ontouml:Classifier is of type ontouml:Class, the ontouml:property is specialized in ontouml:attribute. If the ontouml:Classifier is an ontouml:Relation, the property is specialized in ontouml:relationEnd."@en .
### https://w3id.org/ontouml#propertyType
ontouml:propertyType rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Property ;
rdfs:range ontouml:Classifier ;
rdfs:label "propertyType"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an ontouml:Class or ontouml:Relation (i.e., an ontouml:Classifier) to which an ontouml:Property refers."@en .
### https://w3id.org/ontouml#redefinesProperty
ontouml:redefinesProperty rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Property ;
rdfs:range ontouml:Property ;
rdfs:label "redefinesProperty"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies a target ontouml:Property that is redefined by a source ontouml:Property."@en .
### https://w3id.org/ontouml#relationEnd
ontouml:relationEnd rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ontouml:property ;
rdfs:domain ontouml:Relation ;
rdfs:range ontouml:Property ;
rdfs:label "relationEnd"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies a property that represents one end (source or target) of an ontouml:Relation."@en .
### https://w3id.org/ontouml#restrictedTo
ontouml:restrictedTo rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Class ;
rdfs:range ontouml:OntologicalNature ;
rdfs:label "restrictedTo"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Associates an ontouml:Class to an ontouml:OntologicalNature, restricting its allowed values."@en .
### https://w3id.org/ontouml#shape
ontouml:shape rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:ElementView ;
rdfs:range ontouml:Shape ;
rdfs:label "shape"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:ElementView to an ontouml:Shape that contains the diagramation's data (size and position) about the ontouml:ModelElement it is a view of."@en .
### https://w3id.org/ontouml#sourceEnd
ontouml:sourceEnd rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ontouml:relationEnd ;
rdfs:domain ontouml:Relation ;
rdfs:range ontouml:Property ;
rdfs:label "sourceEnd"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an ontouml:Property that represents the source side of an ontouml:Relation."@en .
### https://w3id.org/ontouml#sourceView
ontouml:sourceView rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:ConnectorView ;
rdfs:range ontouml:ElementView ;
rdfs:label "sourceView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an ontouml:ElementView that participates as source of an ontouml:RelationView or ontouml:GeneralizationView."@en .
### https://w3id.org/ontouml#specific
ontouml:specific rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Generalization ;
rdfs:range ontouml:Classifier ;
rdfs:label "specific"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies the child ontouml:Classifier (e.g., a subclass) that participates in an ontouml:Generalization relation."@en .
### https://w3id.org/ontouml#stereotype
ontouml:stereotype rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:DecoratableElement ;
rdfs:range ontouml:Stereotype ;
rdfs:label "stereotype"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies the ontouml:Stereotype applied to the ontouml:DecoratableElement."@en .
### https://w3id.org/ontouml#subsetsProperty
ontouml:subsetsProperty rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:Property ;
rdfs:range ontouml:Property ;
rdfs:label "subsetsProperty"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies a target ontouml:Property that is subsetted by a source ontouml:Property."@en .
### https://w3id.org/ontouml#targetEnd
ontouml:targetEnd rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf ontouml:relationEnd ;
rdfs:domain ontouml:Relation ;
rdfs:range ontouml:Property ;
rdfs:label "targetEnd"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an ontouml:Property that represents the target side of an ontouml:Relation."@en .
### https://w3id.org/ontouml#targetView
ontouml:targetView rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:ConnectorView ;
rdfs:range ontouml:ElementView ;
rdfs:label "targetView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Identifies an ontouml:ElementView that participates as target of an ontouml:ConnectorView."@en .
### https://w3id.org/ontouml#topLeftPosition
ontouml:topLeftPosition rdf:type owl:ObjectProperty ;
rdfs:domain ontouml:RectangularShape ;
rdfs:range ontouml:Point ;
rdfs:label "topLeftPosition"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Relates an ontouml:RectangularShape to an ontouml:Point that contains the horizontal and vertical coordinates (ontouml:xCoordinate and ontouml:yCoordinate, respectively) representing the former's top left position in an ontouml:Diagram."@en,
"Is direct mapped to the OntoUML Metamodel's 'topLeft' relationship between the classes RectangularShape and Point."@en .
#################################################################
# Data properties
#################################################################
### https://w3id.org/ontouml#cardinalityValue
ontouml:cardinalityValue rdfs:label "cardinalityValue"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Cardinality ;
rdfs:range xsd:string ;
rdfs:comment "Provides the complete (i.e., both lower and upper cardinality's bounds) cardinalities of an ontouml:Property via its related ontouml:Cardinality."@en .
### https://w3id.org/ontouml#description
ontouml:description rdfs:label "description"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:OntoumlElement ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:unionOf ( rdf:langString
xsd:string
)
] ;
rdfs:comment "Relates an ontouml:OntoumlElement to a string representing its description in free textual format."@en .
### https://w3id.org/ontouml#height
ontouml:height rdfs:label "height"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:RectangularShape ;
rdfs:range xsd:positiveInteger ;
rdfs:comment "Indicates the height of an ontouml:RectangularShape that is represented in an ontouml:Diagram."@en .
### https://w3id.org/ontouml#isAbstract
ontouml:isAbstract rdfs:label "isAbstract"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Classifier ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if the ontouml:Classifier can have direct instances. If set to true, the classifier must be specialized before being instantiated. Otherwise, it can have direct instances."@en .
### https://w3id.org/ontouml#isComplete
ontouml:isComplete rdfs:label "isComplete"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:GeneralizationSet ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:GeneralizationSet is complete, i.e., if it does not admit further generalizations."@en .
### https://w3id.org/ontouml#isDerived
ontouml:isDerived rdfs:label "isDerived"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:DecoratableElement ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:DecoratableElement can be defined through a derivation rule."@en .
### https://w3id.org/ontouml#isDisjoint
ontouml:isDisjoint rdfs:label "isDisjoint"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:GeneralizationSet ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:GeneralizationSet is disjoint, i.e., it does not admit generalizations having overlapping subclasses."@en .
### https://w3id.org/ontouml#isExtensional
ontouml:isExtensional rdfs:label "isExtensional"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Class ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:Class is extensionally defined (i.e., it's parts cannot change)."@en .
### https://w3id.org/ontouml#isOrdered
ontouml:isOrdered rdfs:label "isOrdered"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Property ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:Property is ordered or not, i.e., if it requires an exact order of its values or not."@en .
### https://w3id.org/ontouml#isPowertype
ontouml:isPowertype rdfs:label "isPowertype"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Class ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:Class is a powertype in multi-level modeling."@en ,
"The ontouml:Class data property ontouml:isPowertype must not be true when it has an ontouml:order equal to one."@en ;
rdfs:seeAlso <https://doi.org/10.1007/978-3-031-17995-2_2> .
### https://w3id.org/ontouml#isReadOnly
ontouml:isReadOnly rdfs:label "isReadOnly"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Property ;
rdfs:range xsd:boolean ;
rdfs:comment "Indicates if an ontouml:Property can or cannot be updated or modified."@en .
### https://w3id.org/ontouml#lowerBound
ontouml:lowerBound rdfs:label "lowerBound"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Cardinality ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "An ontouml:Cardinality's lower bound must correspond to the one indicated by its ontouml:cardinalityValue property." ,
"E.g., if the ontouml:cardinalityValue set is [1..*] then the lower bound is '1'."@en ,
"Identifies the lower bound of an ontouml:Cardinality."@en .
### https://w3id.org/ontouml#name
ontouml:name rdfs:label "name"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:OntoumlElement ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:unionOf ( rdf:langString
xsd:string
)
] ;
rdfs:comment "A string that identifies or names an ontouml:OntoumlElement."@en .
### https://w3id.org/ontouml#order
ontouml:order rdfs:label "order"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Class ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:comment "Constraint: an ontouml:Class that has an ontouml:stereotype property with an ontouml:Stereotype different than ontouml:type must have an ontouml:order value equal to 1."@en ,
"Constraint: an ontouml:Class that has an ontouml:stereotype property with an ontouml:Stereotype ontouml:type must have an ontouml:order value grater than 1."@en ,
"Indicates the order of an ontouml:Class, enabling multi-level modeling."@en ;
rdfs:seeAlso <https://doi.org/10.1007/978-3-031-17995-2_2> .
### https://w3id.org/ontouml#text
ontouml:text rdfs:label "text"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Note ;
rdfs:range xsd:string ;
rdfs:comment "A string that register any information of an ontouml:Note"@en .
### https://w3id.org/ontouml#upperBound
ontouml:upperBound rdfs:label "upperBound"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Cardinality ;
rdfs:range rdfs:Literal ;
rdfs:comment "An ontouml:Cardinality's upper bound must correspond to the one indicated by its ontouml:cardinalityValue property." ,
"E.g., if the ontouml:cardinalityValue set is [1..*] then the upper bound is '*'."@en ,
"Identifies the upper bound of an ontouml:Cardinality."@en .
### https://w3id.org/ontouml#width
ontouml:width rdfs:label "width"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:RectangularShape ;
rdfs:range xsd:positiveInteger ;
rdfs:comment "Indicates the width of an ontouml:RectangularShape that is represented in an ontouml:Diagram."@en .
### https://w3id.org/ontouml#xCoordinate
ontouml:xCoordinate rdfs:label "xCoordinate"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Point ;
rdfs:range xsd:integer ;
rdfs:comment "Is direct mapped to the metamodel's 'x' attribute of the Point class."@en ,
"Relates an ontouml:Point to the value indicating the specific x (horizontal) coordinate of the top left position of an ontouml:RectangularShape."@en .
### https://w3id.org/ontouml#yCoordinate
ontouml:yCoordinate rdfs:label "yCoordinate"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:DatatypeProperty ;
rdfs:domain ontouml:Point ;
rdfs:range xsd:integer ;
rdfs:comment "Is direct mapped to the metamodel's 'y' attribute of the Point class."@en ,
"Relates an ontouml:Point to the value indicating the specific y (vertical) coordinate of the top left position of an ontouml:RectangularShape."@en .
#################################################################
# Classes
#################################################################
### https://w3id.org/ontouml#AggregationKind
ontouml:AggregationKind rdfs:label "AggregationKind"@en ;
rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( ontouml:composite
ontouml:none
ontouml:shared
)
] ;
rdfs:comment "Groups all possible aggregation kinds to which an ontouml:Property can be related."@en ,
"This class is an enumeration of its individuals, which are: ontouml:composite, ontouml:none, and ontouml:shared."@en .
### https://w3id.org/ontouml#Cardinality
ontouml:Cardinality rdf:type owl:Class ;
rdfs:label "Cardinality"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:comment "Represents the cardinality of an ontouml:Property through its data property ontouml:cardinalityValue."@en .
### https://w3id.org/ontouml#Class
ontouml:Class rdfs:label "Class"@en ;
rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdfs:subClassOf ontouml:Classifier ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty ontouml:stereotype ;
owl:allValuesFrom ontouml:ClassStereotype
]
[ rdf:type owl:Restriction ;
owl:onProperty ontouml:stereotype ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass ontouml:ClassStereotype
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "Represents a type defined in the ontology."@en ,
"An ontouml:Class have exactly one ontouml:Stereotype (i.e., it is a mandatory property) of specific type ontouml:ClassStereotype. This information is formalized by the ontouml:stereotype property."@en .
### https://w3id.org/ontouml#ClassStereotype
ontouml:ClassStereotype rdfs:label "ClassStereotype"@en ;
rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( ontouml:abstract
ontouml:category
ontouml:collective
ontouml:datatype
ontouml:enumeration
ontouml:event
ontouml:historicalRole
ontouml:historicalRoleMixin
ontouml:kind
ontouml:mixin
ontouml:mode
ontouml:phase
ontouml:phaseMixin
ontouml:quality
ontouml:quantity
ontouml:relator
ontouml:role
ontouml:roleMixin
ontouml:situation
ontouml:subkind
ontouml:type
)
] ;
rdfs:subClassOf ontouml:Stereotype ;
rdfs:comment "Aggregates all possible instances that can be assigned via an ontouml:stereotype property to an ontouml:Class."@en ,
"This class is an enumeration of its individuals, which are: ontouml:abstract, ontouml:category, ontouml:collective, ontouml:datatype, ontouml:enumeration, ontouml:event, ontouml:historicalRole, ontouml:historicalRoleMixin, ontouml:kind, ontouml:mixin, ontouml:mode, ontouml:phase, ontouml:phaseMixin, ontouml:quality, ontouml:quantity, ontouml:relator, ontouml:role, ontouml:roleMixin, ontouml:situation, ontouml:subkind, and ontouml:type."@en .
### https://w3id.org/ontouml#ClassView
ontouml:ClassView rdfs:label "ClassView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:NodeView ;
rdfs:comment "Does not directly contain data about the visual representation (rectangular shape's size and position) itself, but is related to this information via the ontouml:shape property."@en ,
"Represents the diagramation (i.e., the visual representation) of an ontouml:Class in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#Classifier
ontouml:Classifier rdfs:label "Classifier"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:DecoratableElement ;
owl:disjointUnionOf ( ontouml:Class
ontouml:Relation
) ;
rdfs:comment "Abstract class that groups the classes ontouml:Class and ontouml:Relation."@en .
### https://w3id.org/ontouml#ConnectorView
ontouml:ConnectorView rdfs:label "ConnectorView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ElementView ;
owl:disjointUnionOf ( ontouml:GeneralizationView
ontouml:RelationView
) ;
rdfs:comment "Abstract class that groups the classes ontouml:RelationView and ontouml:GeneralizationView."@en .
### https://w3id.org/ontouml#DecoratableElement
ontouml:DecoratableElement rdfs:label "DecoratableElement"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ModelElement ;
owl:disjointUnionOf ( ontouml:Classifier
ontouml:Property
) ;
rdfs:comment "Abstract class that groups the classes ontouml:Classifier and the ontouml:Property."@en .
### https://w3id.org/ontouml#Diagram
ontouml:Diagram rdfs:label "Diagram"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:OntoumlElement ;
rdfs:comment "A visual representation of an OntoUML model or of a portion of it."@en .
### https://w3id.org/ontouml#DiagramElement
ontouml:DiagramElement rdfs:label "DiagramElement"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:OntoumlElement ;
owl:disjointUnionOf ( ontouml:ElementView
ontouml:Shape
) ;
rdfs:comment "Abstract class that groups the classes ontouml:ElementView and the ontouml:Shape."@en .
### https://w3id.org/ontouml#ElementView
ontouml:ElementView rdfs:label "ElementView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:DiagramElement ;
owl:disjointUnionOf ( ontouml:ConnectorView
ontouml:GeneralizationSetView
ontouml:NodeView
) ;
rdfs:comment "E.g., an ontouml:ClassView is created whenever an ontouml:ModelElement is represented in an ontouml:Diagram."@en ,
"Represents the diagramatical representation of an element on an ontouml:Diagram."@en ,
"Abstract class that groups the classes ontouml:ConnectorView, ontouml:GeneralizationSetView, and ontouml:NodeView."@en .
### https://w3id.org/ontouml#Generalization
ontouml:Generalization rdfs:label "Generalization"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ModelElement ;
rdfs:comment "Represents a generalization defined in an ontology."@en .
### https://w3id.org/ontouml#GeneralizationSet
ontouml:GeneralizationSet rdfs:label "GeneralizationSet"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ModelElement ;
rdfs:comment "Represents a generalization set defined in the ontology."@en .
### https://w3id.org/ontouml#GeneralizationSetView
ontouml:GeneralizationSetView rdfs:label "GeneralizationSetView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ElementView ;
rdfs:comment "Represents the diagramation (i.e., the visual representation) of an ontouml:GeneralizationSet in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#GeneralizationView
ontouml:GeneralizationView rdfs:label "GeneralizationView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ConnectorView ;
rdfs:comment "Represents the diagramation (i.e., the visual representation) of an ontouml:Generalization in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#Literal
ontouml:Literal rdfs:label "Literal"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ModelElement ;
rdfs:comment "Represents a possible value for an ontouml:Class defined by an ontouml:enumeration."@en .
### https://w3id.org/ontouml#ModelElement
ontouml:ModelElement rdfs:label "ModelElement"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:OntoumlElement ;
owl:disjointUnionOf ( ontouml:DecoratableElement
ontouml:Generalization
ontouml:GeneralizationSet
ontouml:Literal
ontouml:Note
ontouml:Package
) ;
rdfs:comment "Abstract class that groups diverse elements that can be represented in on OntoUML model."@en .
### https://w3id.org/ontouml#NodeView
ontouml:NodeView rdfs:label "NodeView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ElementView ;
owl:disjointUnionOf ( ontouml:ClassView
ontouml:NoteView
ontouml:PackageView
) ;
rdfs:comment "Abstract class that groups the classes ontouml:NoteView, ontouml:ClassView, and ontouml:PackageView."@en .
### https://w3id.org/ontouml#Note
ontouml:Note rdfs:label "Note"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ModelElement ;
rdfs:comment "Type of ontouml:ModelElement used to represent textual information."@en .
### https://w3id.org/ontouml#NoteView
ontouml:NoteView rdfs:label "NoteView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:NodeView ;
rdfs:comment "Represents the diagramation (i.e., the visual representation) of an ontouml:Note in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#OntologicalNature
ontouml:OntologicalNature rdfs:label "OntologicalNature"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( ontouml:abstractNature
ontouml:collectiveNature
ontouml:eventNature
ontouml:extrinsicModeNature
ontouml:functionalComplexNature
ontouml:intrinsicModeNature
ontouml:qualityNature
ontouml:quantityNature
ontouml:relatorNature
ontouml:situationNature
ontouml:typeNature
)
] ;
rdfs:comment "Collection of individuals that represent fundamental conceptual modeling issues according to the Unified Foundational Ontology (UFO) theory."@en ,
"This class is an enumeration of its individuals, which are: ontouml:abstractNature, ontouml:collectiveNature, ontouml:eventNature, ontouml:extrinsicModeNature, ontouml:functionalComplexNature, ontouml:intrinsicModeNature, ontouml:qualityNature, ontouml:quantityNature, ontouml:relatorNature, ontouml:situationNature, and ontouml:typeNature."@en ;
rdfs:seeAlso <https://doi.org/10.3233/AO-150157> .
### https://w3id.org/ontouml#OntoumlElement
ontouml:OntoumlElement rdfs:label "OntoumlElement"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
owl:disjointUnionOf ( ontouml:Diagram
ontouml:DiagramElement
ontouml:ModelElement
ontouml:Project
) ;
rdfs:comment "Abstract class that groups different elements an ontoUML model can have."@en .
### https://w3id.org/ontouml#Package
ontouml:Package rdfs:label "Package"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ModelElement ;
rdfs:comment "Aggregates ontology components, working as a container."@en .
### https://w3id.org/ontouml#PackageView
ontouml:PackageView rdfs:label "PackageView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:NodeView ;
rdfs:comment "Represents the diagramation (i.e., the visual representation) of an ontouml:Package in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#Path
ontouml:Path rdfs:label "Path"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:Shape ;
rdfs:comment "A list of connected ontouml:Point values to represent an ontouml:ElementView's shape."@en .
### https://w3id.org/ontouml#Point
ontouml:Point rdfs:label "Point"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:comment "Contains the ontouml:xCoordinate value and ontouml:yCoordinate value. These values represent the top left position of an ontouml:RectangularShape, to which the ontouml:Point is related vian ontouml:topLeftPosition property."@en .
### https://w3id.org/ontouml#Project
ontouml:Project rdfs:label "Project"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:OntoumlElement ;
rdfs:comment "Aggregates all entities that are part of a same conceptual model, including concepts declaration and their visual representation."@en ,
"It is the upper non-abstract class available in the OntoUML Vocabulary."@en .
### https://w3id.org/ontouml#Property
ontouml:Property rdfs:label "Property"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:DecoratableElement ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty ontouml:stereotype ;
owl:allValuesFrom ontouml:PropertyStereotype
]
[ rdf:type owl:Restriction ;
owl:onProperty ontouml:stereotype ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass ontouml:PropertyStereotype
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "Represents a property defined in the ontology. Properties contained by classes are deemed attributes and those contained by relations are deemed association ends."@en ,
"An ontouml:Property may have at most one ontouml:Stereotype (i.e., it is an optional property) of specific type ontouml:PropertyStereotype. This information is formalized by the ontouml:stereotype property."@en .
### https://w3id.org/ontouml#PropertyStereotype
ontouml:PropertyStereotype rdfs:label "PropertyStereotype"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( ontouml:begin
ontouml:end
)
] ;
rdfs:subClassOf ontouml:Stereotype ;
rdfs:comment "Aggregates all possible instances that can be assigned via an ontouml:stereotype property to an ontouml:Property."@en ,
"This class is an enumeration of its individuals, which are: ontouml:begin, and ontouml:end."@en .
### https://w3id.org/ontouml#Rectangle
ontouml:Rectangle rdfs:label "Rectangle"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:RectangularShape ;
rdfs:comment "A particular type of ontouml:RectangularShape, mainly used to represent entities of type ontouml:Class."@en .
### https://w3id.org/ontouml#RectangularShape
ontouml:RectangularShape rdfs:label "RectangularShape"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:Shape ;
owl:disjointUnionOf ( ontouml:Rectangle
ontouml:Text
) ;
rdfs:comment "Represents a rectangular shape in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#Relation
ontouml:Relation rdfs:label "Relation"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:Classifier ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty ontouml:stereotype ;
owl:allValuesFrom ontouml:RelationStereotype
]
[ rdf:type owl:Restriction ;
owl:onProperty ontouml:stereotype ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass ontouml:RelationStereotype
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "Represents a relation defined in the ontology."@en ,
"An ontouml:Relation may have at most one ontouml:Stereotype (i.e., it is an optional property) of specific type ontouml:RelationStereotype. This information is formalized by the ontouml:stereotype property."@en .
### https://w3id.org/ontouml#RelationStereotype
ontouml:RelationStereotype rdfs:label "RelationStereotype"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( ontouml:bringsAbout
ontouml:characterization
ontouml:comparative
ontouml:componentOf
ontouml:creation
ontouml:derivation
ontouml:externalDependence
ontouml:historicalDependence
ontouml:instantiation
ontouml:manifestation
ontouml:material
ontouml:mediation
ontouml:memberOf
ontouml:participation
ontouml:participational
ontouml:subCollectionOf
ontouml:subQuantityOf
ontouml:termination
ontouml:triggers
)
] ;
rdfs:subClassOf ontouml:Stereotype ;
rdfs:comment "Aggregates all possible instances that can be assigned via an ontouml:stereotype property to an ontouml:Relation."@en ,
"This class is an enumeration of its individuals, which are: ontouml:bringsAbout, ontouml:characterization, ontouml:comparative, ontouml:componentOf, ontouml:creation, ontouml:derivation, ontouml:externalDependence, ontouml:historicalDependence, ontouml:instantiation, ontouml:manifestation, ontouml:material, ontouml:mediation, ontouml:memberOf, ontouml:participation, ontouml:participational, ontouml:subCollectionOf, ontouml:subQuantityOf, ontouml:termination, and ontouml:triggers."@en .
### https://w3id.org/ontouml#RelationView
ontouml:RelationView rdfs:label "RelationView"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:ConnectorView ;
rdfs:comment "Represents the diagramation (i.e., the visual representation) of an ontouml:Relation in a given ontouml:Diagram."@en .
### https://w3id.org/ontouml#Shape
ontouml:Shape rdfs:label "Shape"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
rdfs:subClassOf ontouml:DiagramElement ;
owl:disjointUnionOf ( ontouml:Path
ontouml:RectangularShape
) ;
rdfs:comment "Contains information about the diagramation of an ontouml:ModelElement through its relation with an ontouml:ElementView."@en .
### https://w3id.org/ontouml#Stereotype
ontouml:Stereotype rdfs:label "Stereotype"@en ;
rdfs:isDefinedBy <https://w3id.org/ontouml> ;
rdf:type owl:Class ;
owl:disjointUnionOf ( ontouml:ClassStereotype