@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
                                         ontouml:PropertyStereotype
                                         ontouml:RelationStereotype
                                       ) ;
                   rdfs:comment "Indicates meta-properties of classes, properties, or relations."@en .


###  https://w3id.org/ontouml#Text
ontouml:Text rdfs:label "Text"@en ;
             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
             rdf:type owl:Class ;
             rdfs:subClassOf ontouml:RectangularShape ;
             rdfs:comment "An ontouml:RectangularShape used to represent some textual information in an ontouml:Diagram."@en .


#################################################################
#    Individuals
#################################################################

###  https://w3id.org/ontouml#abstract
ontouml:abstract rdfs:label "abstract"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:ClassStereotype ;
                 rdfs:comment "An individual of the ontouml:ClassStereotype used to assign the corresponding stereotype to a given ontouml:Class."@en .


###  https://w3id.org/ontouml#abstractNature
ontouml:abstractNature rdfs:label "abstractNature"@en ;
                       rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                       rdf:type owl:NamedIndividual ,
                       ontouml:OntologicalNature ;
                       rdfs:comment "Indicates that the restricted type includes abstract individuals among its instances."@en .


###  https://w3id.org/ontouml#begin
ontouml:begin rdfs:label "begin"@en ;
              rdfs:isDefinedBy <https://w3id.org/ontouml> ;
              rdf:type owl:NamedIndividual ,
              ontouml:PropertyStereotype ;
              rdfs:comment "An individual of the ontouml:PropertyStereotype used to assign the corresponding stereotype to a given ontouml:Property."@en ;
              rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#bringsAbout
ontouml:bringsAbout rdfs:label "bringsAbout"@en ;
                    rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                    rdf:type owl:NamedIndividual ,
                    ontouml:RelationStereotype ;
                    rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en ;
                    rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#category
ontouml:category rdfs:label "category"@en ;
                          rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                          rdf:type owl:NamedIndividual ,
                          ontouml:ClassStereotype ;
                          rdfs:comment "A rigid mixin that does not require a dependency to be specified. It is used to aggregate essential properties of individuals following different identity principles."@en ;
                          rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/nonsortals/category/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#characterization
ontouml:characterization rdfs:label "characterization"@en ;
                         rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                         rdf:type owl:NamedIndividual ,
                         ontouml:RelationStereotype ;
                         rdfs:comment "An ontouml:RelationStereotype attributed to a relation between a bearer type and its feature."@en ;
                         rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/relationships/characterization/index.html"^^xsd:anyURI ,
                                      <https://doi.org/10.1007/978-3-030-33223-5_4> .


###  https://w3id.org/ontouml#collective
ontouml:collective rdfs:label "collective"@en ;
                   rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                   rdf:type owl:NamedIndividual ,
                   ontouml:ClassStereotype ;
                   rdfs:comment "An ontouml:ClassStereotype used to represent rigid concepts that provide an identity principle for their instances."@en ;
                   rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/collective/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#collectiveNature
ontouml:collectiveNature rdfs:label "collectiveNature"@en ;
                         rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                         rdf:type owl:NamedIndividual ,
                         ontouml:OntologicalNature ;
                         rdfs:comment "Indicates that the restricted type includes collective individuals among its instances."@en .


###  https://w3id.org/ontouml#comparative
ontouml:comparative rdfs:label "comparative"@en ;
                    rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                    rdf:type owl:NamedIndividual ,
                    ontouml:RelationStereotype ;
                    rdfs:comment "The stereotype for comparative relations (e.g., heavier-than). Decorates relations that always hold between any two individuals bearing the same relevant quality."@en ;
                    rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_4> .


###  https://w3id.org/ontouml#componentOf
ontouml:componentOf rdfs:label "componentOf"@en ;
                    rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                    rdf:type owl:NamedIndividual ,
                    ontouml:RelationStereotype ;
                    rdfs:comment "A parthood relation between two complexes."@en ;
                    rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/relationships/aggregations/componentOf/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#composite
ontouml:composite rdfs:label "composite"@en ;
                  rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                  rdf:type owl:NamedIndividual ,
                  ontouml:AggregationKind ;
                  rdfs:comment "The value denoting that an ontouml:Property represents a composite aggregation, i.e., a strong form of aggregation."@en .


###  https://w3id.org/ontouml#creation
ontouml:creation rdfs:label "creation"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:RelationStereotype ;
                 rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en ;
                 rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#datatype
ontouml:datatype rdfs:label "datatype"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:ClassStereotype ;
                 rdfs:comment "An individual of the ontouml:ClassStereotype used to assign the corresponding stereotype to a given ontouml:Class."@en .


###  https://w3id.org/ontouml#derivation
ontouml:derivation rdfs:label "derivation"@en ;
                   rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                   rdf:type owl:NamedIndividual ,
                   ontouml:RelationStereotype ;
                   rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en .


###  https://w3id.org/ontouml#end
ontouml:end rdfs:label "end"@en ;
            rdfs:isDefinedBy <https://w3id.org/ontouml> ;
            rdf:type owl:NamedIndividual ,
            ontouml:PropertyStereotype ;
            rdfs:comment "An individual of the ontouml:PropertyStereotype used to assign the corresponding stereotype to a given ontouml:Property."@en ;
            rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#enumeration
ontouml:enumeration rdfs:label "enumeration"@en ;
                    rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                    rdf:type owl:NamedIndividual ,
                    ontouml:ClassStereotype ;
                    rdfs:comment "Represents the enumeration stereotype, having values represented using ontouml:Literal instances."@en .


###  https://w3id.org/ontouml#event
ontouml:event rdfs:label "event"@en ;
              rdfs:isDefinedBy <https://w3id.org/ontouml> ;
              rdf:type owl:NamedIndividual ,
              ontouml:ClassStereotype ;
              rdfs:comment "Things that happen to or are performed by endurants (Casati and Varzi, 2015)."@en ;
              rdfs:comment "An individual of the ontouml:ClassStereotype used to assign the corresponding stereotype to a given ontouml:Class."@en ;
              rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#eventNature
ontouml:eventNature rdfs:label "eventNature"@en ;
                    rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                    rdf:type owl:NamedIndividual ,
                    ontouml:OntologicalNature ;
                    rdfs:comment "Indicates that the restricted type includes event individuals among its instances."@en .


###  https://w3id.org/ontouml#externalDependence
ontouml:externalDependence rdfs:label "externalDependence"@en ;
                           rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                           rdf:type owl:NamedIndividual ,
                           ontouml:RelationStereotype ;
                           rdfs:comment "Identifies an endurant on which the extrinsicMode depends."@en ;
                           rdfs:seeAlso "https://nemo-ufes.github.io/gufo/#externallyDependsOn"^^xsd:anyURI ,
                                        <https://doi.org/10.1007/978-3-030-33223-5_4> .


###  https://w3id.org/ontouml#extrinsicModeNature
ontouml:extrinsicModeNature rdfs:label "extrinsicModeNature"@en ;
                            rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                            rdf:type owl:NamedIndividual ,
                            ontouml:OntologicalNature ;
                            rdfs:comment "Identifies what inheres in a concrete individual and depends on others for its existence."@en .


###  https://w3id.org/ontouml#functionalComplexNature
ontouml:functionalComplexNature rdfs:label "functionalComplexNature"@en ;
                                rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                                rdf:type owl:NamedIndividual ,
                                ontouml:OntologicalNature ;
                                rdfs:comment "Identifies the nature of a complex object whose parts (components) play different roles in its composition."@en .


###  https://w3id.org/ontouml#historicalDependence
ontouml:historicalDependence rdfs:label "historicalDependence"@en ;
                             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                             rdf:type owl:NamedIndividual ,
                             ontouml:RelationStereotype ;
                             rdfs:comment "Identifies a concrete individual on which another concrete individual depends historically."@en ;
                             rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#historicalRole
ontouml:historicalRole rdfs:label "historicalRole"@en ;
                       rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                       rdf:type owl:NamedIndividual ,
                       ontouml:ClassStereotype ;
                       rdfs:comment "Denotes the role of an endurant in virtue of having participated in an event of a particular type."@en ;
                       rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#historicalRoleMixin
ontouml:historicalRoleMixin rdfs:label "historicalRoleMixin"@en ;
                            rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                            rdf:type owl:NamedIndividual ,
                            ontouml:ClassStereotype ;
                            rdfs:comment "Denotes the equivalent of historicalRole for types that aggregate instances with different identity principles."@en ;
                            rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#instantiation
ontouml:instantiation rdfs:label "instantiation"@en ;
                      rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                      rdf:type owl:NamedIndividual ,
                      ontouml:RelationStereotype ;
                      rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en .


###  https://w3id.org/ontouml#intrinsicModeNature
ontouml:intrinsicModeNature rdfs:label "intrinsicModeNature"@en ;
                            rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                            rdf:type owl:NamedIndividual ,
                            ontouml:OntologicalNature ;
                            rdfs:comment "Indicates that the restricted type includes intrinsic mode individuals among its instances."@en .


###  https://w3id.org/ontouml#kind
ontouml:kind rdfs:label "kind"@en ;
             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
             rdf:type owl:NamedIndividual ,
             ontouml:ClassStereotype ;
             rdfs:comment "Used to represent rigid concepts that provide an identity principle for their instances and do not require a relational dependency."@en ;
             rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/kind/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#manifestation
ontouml:manifestation rdfs:label "manifestation"@en ;
                      rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                      rdf:type owl:NamedIndividual ,
                      ontouml:RelationStereotype ;
                      rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en .


###  https://w3id.org/ontouml#material
ontouml:material rdfs:label "material"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:RelationStereotype ;
                 rdfs:comment "Identifies relations that have material structure on their own and include examples such as employments, kisses, enrollments, flight, connections and commitments."@en ;
                 rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/relationships/material/index.html"^^xsd:anyURI ,
                              <https://doi.org/10.1007/978-3-030-33223-5_4> .


###  https://w3id.org/ontouml#mediation
ontouml:mediation rdfs:label "mediation"@en ;
                  rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                  rdf:type owl:NamedIndividual ,
                  ontouml:RelationStereotype ;
                  rdfs:comment "A type of existential dependence relation (a form of nonfunctional inherence). It can be derived from the relation between the relata and the qua individuals that compose the relator and that inhere in the relata."@en ;
                  rdfs:seeAlso  "https://ontouml.readthedocs.io/en/latest/relationships/mediation/index.html"^^xsd:anyURI ,
                                <https://doi.org/10.1007/978-3-030-33223-5_4> .


###  https://w3id.org/ontouml#memberOf
ontouml:memberOf rdfs:label "memberOf"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:RelationStereotype ;
                 rdfs:comment "A parthood relation between a functional complex or a Collective (as a part) and a Collective (as a whole)."@en ;
                 rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/relationships/aggregations/memberOf/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#mixin
ontouml:mixin rdfs:label "mixin"@en ;
              rdfs:isDefinedBy <https://w3id.org/ontouml> ;
              rdf:type owl:NamedIndividual ,
              ontouml:ClassStereotype ;
              rdfs:comment "Represents a semi-rigid type, i.e., it behaves as a rigid type for some individuals and as an anti-rigid one for others."@en ;
              rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/nonsortals/mixin/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#mode
ontouml:mode rdfs:label "mode"@en ;
             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
             rdf:type owl:NamedIndividual ,
             ontouml:ClassStereotype ;
             rdfs:comment "A particular type of intrinsic property that has no structured value."@en ;
             rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/aspects/mode/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#none
ontouml:none rdfs:label "none"@en ;
             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
             rdf:type owl:NamedIndividual ,
             ontouml:AggregationKind ;
             rdfs:comment "Denotes that an ontouml:Property is neither ontouml:shared nor ontouml:composite, but just an aggregation."@en .


###  https://w3id.org/ontouml#participation
ontouml:participation rdfs:label "participation"@en ;
                      rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                      rdf:type owl:NamedIndividual ,
                      ontouml:RelationStereotype ;
                      rdfs:comment "A relation for representing when an event depends on a single object."@en ;
                      rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#participational
ontouml:participational rdfs:label "participational"@en ;
                        rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                        rdf:type owl:NamedIndividual ,
                        ontouml:RelationStereotype ;
                        rdfs:comment "Denotes a kind of event decomposition."@en ;
                        rdfs:seeAlso <https://doi.org/10.1007/978-3-030-33223-5_39> .


###  https://w3id.org/ontouml#phase
ontouml:phase rdfs:label "phase"@en ;
              rdfs:isDefinedBy <https://w3id.org/ontouml> ;
              rdf:type owl:NamedIndividual ,
              ontouml:ClassStereotype ;
              rdfs:comment "Used to represent anti-rigid subtypes of identity providers (Kind, Collective, Quantity, Relator, Mode, and Quantity) that are instantiated by changes in intrinsic properties (e.g., the age of a person, the color of an object, the condition of a car).Phases always come in partitions."@en ;
              rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/phase/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#phaseMixin
ontouml:phaseMixin rdfs:label "phaseMixin"@en ;
                   rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                   rdf:type owl:NamedIndividual ,
                   ontouml:ClassStereotype ;
                   rdfs:comment "The equivalent of Phase for types that aggregate instances with different identity principles. A class stereotyped as PhaseMixin is also an anti-rigid type. PhaseMixin is similar semantically to RoleMixin with the difference in relational dependency."@en ;
                   rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/nonsortals/phasemixin/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#quality
ontouml:quality rdfs:label "quality"@en ;
                rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                rdf:type owl:NamedIndividual ,
                ontouml:ClassStereotype ;
                rdfs:comment "A Quality is a particular type of intrinsic property that has a structured value. Qualities are things that existentially depend on the things they characterize, called their bearers."@en ;
                rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/aspects/quality/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#qualityNature
ontouml:qualityNature rdfs:label "qualityNature"@en ;
                      rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                      rdf:type owl:NamedIndividual ,
                      ontouml:OntologicalNature ;
                      rdfs:comment "Indicates that the restricted type includes quality individuals among its instances."@en .


###  https://w3id.org/ontouml#quantity
ontouml:quantity rdfs:label "quantity"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:ClassStereotype ;
                 rdfs:comment "Construct used to represent rigid concepts that provide an identity principle for their instances."@en ;
                 rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/quantity/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#quantityNature
ontouml:quantityNature rdfs:label "quantityNature"@en ;
                       rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                       rdf:type owl:NamedIndividual ,
                       ontouml:OntologicalNature ;
                       rdfs:comment "Indicates that the restricted type includes quantity individuals among its instances."@en .


###  https://w3id.org/ontouml#relator
ontouml:relator rdfs:label "relator"@en ;
                rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                rdf:type owl:NamedIndividual ,
                ontouml:ClassStereotype ;
                rdfs:comment "A construct used to represent truth-makers of material relations, i.e., the things that must exist for two or more individuals to be connected by material relations."@en ;
                rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/relator/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#relatorNature
ontouml:relatorNature rdfs:label "relatorNature"@en ;
                      rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                      rdf:type owl:NamedIndividual ,
                      ontouml:OntologicalNature ;
                      rdfs:comment "Indicates that the restricted type includes relator individuals among its instances."@en .


###  https://w3id.org/ontouml#role
ontouml:role rdfs:label "role"@en ;
             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
             rdf:type owl:NamedIndividual ,
             ontouml:ClassStereotype ;
             rdfs:comment "Used to represent anti-rigid specializations of identity providers (Kind, Collective, Quantity, Relator, Mode, and Quantity) that are instantiated in relational contexts."@en ;
             rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/role/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#roleMixin
ontouml:roleMixin rdfs:label "roleMixin"@en ;
                  rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                  rdf:type owl:NamedIndividual ,
                  ontouml:ClassStereotype ;
                  rdfs:comment "The equivalent of Role for types that aggregate instances with different identity principles."@en ;
                  rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/nonsortals/rolemixin/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#shared
ontouml:shared rdfs:label "shared"@en ;
               rdfs:isDefinedBy <https://w3id.org/ontouml> ;
               rdf:type owl:NamedIndividual ,
               ontouml:AggregationKind ;
               rdfs:comment "Indicates that the ontouml:Property has shared aggregation semantics."@en .


###  https://w3id.org/ontouml#situation
ontouml:situation rdfs:label "situation"@en ;
                  rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                  rdf:type owl:NamedIndividual ,
                  ontouml:ClassStereotype ;
                  rdfs:comment "Can be used to represent certain configurations of entities that can be comprehended as a whole."@en .


###  https://w3id.org/ontouml#situationNature
ontouml:situationNature rdfs:label "situationNature"@en ;
                        rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                        rdf:type owl:NamedIndividual ,
                        ontouml:OntologicalNature ;
                        rdfs:comment "Indicates that the restricted type includes situation individuals among its instances."@en .


###  https://w3id.org/ontouml#subCollectionOf
ontouml:subCollectionOf rdfs:label "subCollectionOf"@en ;
                        rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                        rdf:type owl:NamedIndividual ,
                        ontouml:RelationStereotype ;
                        rdfs:comment "A parthood relation between two collectives."@en ;
                        rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/relationships/aggregations/subCollectionOf/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#subQuantityOf
ontouml:subQuantityOf rdfs:label "subQuantityOf"@en ;
                      rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                      rdf:type owl:NamedIndividual ,
                      ontouml:RelationStereotype ;
                      rdfs:comment "A parthood relation between two quantities."@en ;
                      rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/relationships/aggregations/subQuantityOf/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#subkind
ontouml:subkind rdfs:label "subkind"@en ;
                rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                rdf:type owl:NamedIndividual ,
                ontouml:ClassStereotype ;
                rdfs:comment "Used to represent rigid specializations of identity providers (Kind, Collective, Quantity, Relator, Mode, and Quantity)."@en ;
                rdfs:seeAlso "https://ontouml.readthedocs.io/en/latest/classes/sortals/subkind/index.html"^^xsd:anyURI .


###  https://w3id.org/ontouml#termination
ontouml:termination rdfs:label "termination"@en ;
                    rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                    rdf:type owl:NamedIndividual ,
                    ontouml:RelationStereotype ;
                    rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en .


###  https://w3id.org/ontouml#triggers
ontouml:triggers rdfs:label "triggers"@en ;
                 rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                 rdf:type owl:NamedIndividual ,
                 ontouml:RelationStereotype ;
                 rdfs:comment "An individual of the ontouml:RelationStereotype used to assign the corresponding stereotype to a given ontouml:Relation."@en .


###  https://w3id.org/ontouml#type
ontouml:type rdfs:label "type"@en ;
             rdfs:isDefinedBy <https://w3id.org/ontouml> ;
             rdf:type owl:NamedIndividual ,
             ontouml:ClassStereotype ;
             rdfs:comment "The stereotype for high-order types."@en ;
             rdfs:seeAlso <https://doi.org/10.1007/978-3-031-17995-2_2> .


###  https://w3id.org/ontouml#typeNature
ontouml:typeNature rdfs:label "typeNature"@en ;
                   rdfs:isDefinedBy <https://w3id.org/ontouml> ;
                   rdf:type owl:NamedIndividual ,
                   ontouml:OntologicalNature ;
                   rdfs:comment "Indicates that the restricted type includes type individuals among its instances."@en .


#################################################################
#    General axioms
#################################################################

[ rdf:type owl:AllDisjointClasses ;
  owl:members ( ontouml:AggregationKind
                ontouml:Cardinality
                ontouml:OntologicalNature
                ontouml:OntoumlElement
                ontouml:Point
                ontouml:Stereotype
              )
] .

[ rdf:type owl:AllDifferent ;
  owl:distinctMembers ( <https://w3id.org/ontouml>
                        ontouml:abstract
                        ontouml:abstractNature
                        ontouml:begin
                        ontouml:bringsAbout
                        ontouml:category
                        ontouml:characterization
                        ontouml:collective
                        ontouml:collectiveNature
                        ontouml:comparative
                        ontouml:componentOf
                        ontouml:composite
                        ontouml:creation
                        ontouml:datatype
                        ontouml:derivation
                        ontouml:end
                        ontouml:enumeration
                        ontouml:event
                        ontouml:eventNature
                        ontouml:externalDependence
                        ontouml:extrinsicModeNature
                        ontouml:functionalComplexNature
                        ontouml:historicalDependence
                        ontouml:historicalRole
                        ontouml:historicalRoleMixin
                        ontouml:instantiation
                        ontouml:intrinsicModeNature
                        ontouml:kind
                        ontouml:manifestation
                        ontouml:material
                        ontouml:mediation
                        ontouml:memberOf
                        ontouml:mixin
                        ontouml:mode
                        ontouml:none
                        ontouml:participation
                        ontouml:participational
                        ontouml:phase
                        ontouml:phaseMixin
                        ontouml:quality
                        ontouml:qualityNature
                        ontouml:quantity
                        ontouml:quantityNature
                        ontouml:relator
                        ontouml:relatorNature
                        ontouml:role
                        ontouml:roleMixin
                        ontouml:shared
                        ontouml:situation
                        ontouml:situationNature
                        ontouml:subCollectionOf
                        ontouml:subQuantityOf
                        ontouml:subkind
                        ontouml:termination
                        ontouml:triggers
                        ontouml:type
                        ontouml:typeNature
                        <https://www.inf.unibz.it/krdb/>
                        <https://www.utwente.nl/en/eemcs/scs/>
                      )
] .