diff --git a/dependencies/catalog-v001.xml b/dependencies/catalog-v001.xml index 4d8518b..19a428f 100644 --- a/dependencies/catalog-v001.xml +++ b/dependencies/catalog-v001.xml @@ -1,4 +1,4 @@ - + diff --git a/dependencies/imports-transitive.ttl b/dependencies/imports-transitive.ttl index 6426696..90929eb 100644 --- a/dependencies/imports-transitive.ttl +++ b/dependencies/imports-transitive.ttl @@ -1,16 +1,1612 @@ -@prefix ex: . +@prefix : . +@prefix dc: . +@prefix dct: . +@prefix foaf: . +@prefix gufo: . @prefix owl: . @prefix rdf: . @prefix rdfs: . -@prefix xs: . +@prefix time: . +@prefix vann: . +@prefix xml: . +@prefix xsd: . - + a owl:Ontology ; - owl:versionIRI ex:0.0.1 ; + rdfs:comment """The objective of gUFO is to provide a lightweight implementation of the Unified Foundational Ontology (UFO) [1-5] suitable for Semantic Web OWL 2 DL applications. + +Intended users are those implementing UFO-based lightweight ontologies that reuse gUFO by specializing and instantiating its elements. + +There are three implications of the use of the term lightweight. First of all, we have employed little expressive means in an effort to retain computational properties for the resulting OWL ontology. Second, we have selected a subset of UFO-A [1, 2] and UFO-B [3] to include here. In particular, there is minimalistic support for UFO-B (only that which is necessary to establish the participation of objects in events and to capture historical dependence between events). Third, a lightweight ontology, differently from a reference ontology, is designed with the purpose of providing an implementation artifact to structure a knowledge base (or knowledge graph). This has driven a number of pragmatic implementation choices which are discussed in comments annotated to the various elements of this implementation. + +The 'g' in gUFO stands for gentle. At the same time, \"gufo\" is the Italian word for \"owl\". + +For background information on the reference ontology on which this implementation is based, see: + +1. G. Guizzardi, G. Wagner, J. P. A. Almeida, R. S. S. Guizzardi, “Towards ontological foundations for conceptual modeling: The unified foundational ontology (UFO) story,” Applied Ontology (Online), vol. 10, p. 259–271, 2015. +2. G. Guizzardi, Ontological Foundations for Structural Conceptual Models, +PhD Thesis, University of Twente, The Netherlands, 2005. +3. G. Guizzardi, G. Wagner, R. A. Falbo, R. S. S. Guizzardi, and J. P. A. Almeida, “Towards Ontological Foundations for the Conceptual Modeling of Events,” in Proc. 32th International Conference, ER 2013, 2013, p. 327–341. +4. G. Guizzardi, C. M. Fonseca, A. B. Benevides, J. P. A. Almeida, D. Porello, T. P. Sales, “Endurant Types in Ontology-Driven Conceptual Modeling: Towards OntoUML 2.0,” in Conceptual Modeling – 37th International Conference, ER 2018, 2018, p. 136–150. +5. C. M. Fonseca, D. Porello, G. Guizzardi, J. P. A. Almeida, and N. Guarino, “Relations in ontology-driven conceptual modeling,” in 38th International Conference on Conceptual Modeling (ER 2019), LNCS, 2019. v. 11788, 2019, p. 1–15. + +Cite this work as: + +J. P. A. Almeida, G. Guizzardi, T. P. Sales, R. A. Falbo, \"gUFO: A Lightweight Implementation of the Unified Foundational Ontology (UFO)\", 2019, http://purl.org/nemo/doc/gufo + +This work is distributed under Creative Commons Attribution License CC BY 4.0 . + +For the source repository, see: """@en ; + dc:creator + "Almeida, João Paulo A." , + "Falbo, Ricardo A." , + "Guizzardi, Giancarlo" , + "Sales, Tiago P." + ; + dc:title "gUFO: A Lightweight Implementation of the Unified Foundational Ontology (UFO)"@en ; + dct:bibliographicCitation 'J. P. A. Almeida, G. Guizzardi, T. P. Sales, R. A. Falbo, "gUFO: A Lightweight Implementation of the Unified Foundational Ontology (UFO)", 2019, http://purl.org/nemo/doc/gufo'@en ; + dct:created "2019-11-11"^^xsd:date ; + dct:license ; + dct:modified "2021-11-01"^^xsd:date ; + vann:preferredNamespacePrefix "gufo"@en ; + vann:preferredNamespaceUri "http://purl.org/nemo/gufo#"^^xsd:anyURI ; + owl:versionIRI ; + owl:versionInfo "1.0.0"@en ; + . + +dc:creator + a owl:AnnotationProperty ; + . + +dc:title + a owl:AnnotationProperty ; + . + +dct:bibliographicCitation + a owl:AnnotationProperty ; + . + +dct:created + a owl:AnnotationProperty ; + . + +dct:license + a owl:AnnotationProperty ; + . + +dct:modified + a owl:AnnotationProperty ; + . + +gufo:AbstractIndividual + a owl:Class ; + rdfs:subClassOf gufo:Individual ; + rdfs:label "AbstractIndividual"@en ; + rdfs:comment """A gufo:Individual that does not exist in space-time in the same way as a gufo:ConcreteIndividual does. A gufo:AbstractIndividual has no spatiotemporal qualities in its own right. Hence, it does not make sense to ask how much space it now occupies (Gideon, 2018) and when it was created or destroyed. + +Examples include the number ten, the null set, and the proposition that 'Obama was the president of the United States'. + +Rosen, Gideon, \"Abstract Objects\", The Stanford Encyclopedia of Philosophy (Winter 2018 Edition), Edward N. Zalta (ed.), """@en ; + owl:disjointWith gufo:ConcreteIndividual ; + . + +gufo:AbstractIndividualType + a owl:Class ; + rdfs:subClassOf gufo:Type ; + rdfs:label "AbstractIndividualType"@en ; + rdfs:comment '''A gufo:Type whose instances are abstract individuals. + +Instances of gufo:AbstractIndividualType are subclasses of gufo:AbstractIndividual. + +Examples include the types "NaturalNumber", "Set", "Proposition".'''@en ; + owl:disjointWith + gufo:ConcreteIndividualType , + gufo:RelationshipType + ; + . + +gufo:AntiRigidType + a owl:Class ; + rdfs:subClassOf gufo:NonRigidType ; + rdfs:label "AntiRigidType"@en ; + rdfs:comment '''A gufo:NonRigidType that applies contingently to all its instances (see Guizzardi, 2005, chapter 4). + +Examples include the gufo:Phase "Child", the gufo:PhaseMixin "InfantAnimal", the gufo:Role "Student", and the gufo:RoleMixin "Customer".'''@en ; + owl:disjointWith gufo:SemiRigidType ; + . + +gufo:Aspect + a owl:Class ; + rdfs:subClassOf gufo:Endurant ; + rdfs:label "Aspect"@en ; + rdfs:comment """A gufo:Endurant that depends on at least one other concrete individual for its existence. A gufo:Aspect is a characteristic or trait of a concrete individual that is itself conceived as an individual. + +Examples include: intrinsic physical aspects, such as the Moon's mass, Lassie's fur color; mental dispositions, such as Bob's math skills, his belief that the number one is odd; as well as relational aspects, such as John's love for Mary and the marriage between John and Mary. + +The specific sort of existential dependence connecting aspects to their bearers is called inherence. + +Corresponds to \"Moment\" in Guizzardi (2005). + +Also termed \"property instance\", \"particularized property\", \"individual accident\", or \"(variable) trope\" in the philosophical literature."""@en ; + owl:disjointUnionOf ( + gufo:ExtrinsicAspect + gufo:IntrinsicAspect + ) ; + owl:disjointWith gufo:Object ; + . + +gufo:Category + a owl:Class ; + rdfs:subClassOf + gufo:NonSortal , + gufo:RigidType + ; + rdfs:label "Category"@en ; + rdfs:comment '''A gufo:EndurantType that is both non-sortal and rigid. It captures essential properties that apply to instances of different kinds. + +For example, "PhysicalObject" may be considered a gufo:Category, encompassing objects such as cars, planets, trees. "Agent" may be a gufo:Category that classifies both people and organizations.'''@en ; + . + +gufo:Collection + a owl:Class ; + rdfs:subClassOf gufo:Object ; + rdfs:label "Collection"@en ; + rdfs:comment '''A complex gufo:Object whose parts (the members of the collection) have a uniform structure (i.e., members are conceived as playing the same role in the collection). Collections may have a fixed or variable membership, which can be asserted using gufo:FixedCollection and gufo:VariableCollection respectively. + +Examples include a deck of cards, a pile of bricks, a forest (conceived as a collection of trees), and a group of people. + +Collections in many cases constitute a functional complex. For example, a pile of bricks may constitute a wall, a group of people may constitute a football team. + +A gufo:Collection may be decomposed into "smaller" collections. For instance, a group of people may be decomposed into a group of English speakers and a group of Italian speakers. Sub collections may or may not share members among them.'''@en ; + owl:disjointUnionOf ( + gufo:FixedCollection + gufo:VariableCollection + ) ; + . + +gufo:ComparativeRelationshipType + a owl:Class ; + rdfs:subClassOf gufo:RelationshipType ; + rdfs:label "ComparativeRelationshipType"@en ; + rdfs:comment '''A gufo:RelationshipType derived from intrinsic aspects of the related entities. + +For example, "heavierThan", "olderThan". + +For a gufo:ComparativeRelationshipType it is recommended to identify the types of intrinsic aspects from which it is derived (see gufo:isDerivedFrom). For example "heavierThan" is derived from the "Weight" quality type. + +Note that, in the case of relationships that may change in different circumstances or times, the use of a qualified relation pattern enables indicating the period of time in which the relationship holds. See gufo:TemporaryRelationshipSituation. + +Corresponds to "comparative formal relation" in Guizzardi (2005) and "Comparative Relation" in Fonseca et al. (2019).'''@en ; + rdfs:seeAlso gufo:isDerivedFrom ; + owl:disjointWith gufo:MaterialRelationshipType ; + . + +gufo:ConcreteIndividual + a owl:Class ; + rdfs:subClassOf gufo:Individual ; + rdfs:label "ConcreteIndividual"@en ; + rdfs:comment """A gufo:Individual that exists in space-time. + +Concrete individuals comprise not only object-like entities (a car, a mountain, a person, a marriage, a belief), but also events (a business meeting, a soccer match) and situations (the situation in which a person weighs 80 kilograms, the situation in which a bank account is overdrawn)."""@en ; + owl:disjointUnionOf ( + gufo:Endurant + gufo:Event + gufo:Situation + ) ; + . + +gufo:ConcreteIndividualType + a owl:Class ; + rdfs:subClassOf gufo:Type ; + rdfs:label "ConcreteIndividualType"@en ; + rdfs:comment '''A gufo:Type whose instances are concrete individuals. + +Instances of gufo:ConcreteIndividualType are subclasses of gufo:ConcreteIndividual. + +Examples include the gufo:Kind "Person", the gufo:Category "Physical Object", the gufo:EventType "Business Meeting".'''@en ; + owl:disjointWith gufo:RelationshipType ; + . + +gufo:Endurant + a owl:Class ; + rdfs:subClassOf gufo:ConcreteIndividual ; + rdfs:label "Endurant"@en ; + rdfs:comment """A gufo:ConcreteIndividual that endures in time and may change qualitatively while keeping its identity. + +Examples include: ordinary objects of everyday experience, such as a person, a house, and a car; reified relationships, such as a marriage, a rental contract, and a person's love for another; and existentially-dependent aspects of objects, such as a car's weight, a person's language skills, and a house's color. + +Also termed \"continuant\" in the philosophical literature."""@en ; + owl:disjointUnionOf ( + gufo:Aspect + gufo:Object + ) ; + . + +gufo:EndurantType + a owl:Class ; + rdfs:subClassOf gufo:ConcreteIndividualType ; + rdfs:label "EndurantType"@en ; + rdfs:comment '''A gufo:Type whose instances are endurants. + +Instances of gufo:EndurantType are subclasses of gufo:Endurant. + +Examples include the object kind "Person", the phase "Child", the relator kind "Marriage". + +See Guizzardi et al. (2018) for details concerning the taxonomy of endurant types included here.'''@en ; + owl:disjointUnionOf + ( + gufo:NonRigidType + gufo:RigidType + ) , + ( + gufo:NonSortal + gufo:Sortal + ) + ; + owl:disjointWith + gufo:EventType , + gufo:SituationType + ; + . + +gufo:Event + a owl:Class ; + rdfs:subClassOf gufo:ConcreteIndividual ; + rdfs:label "Event"@en ; + rdfs:comment """A gufo:ConcreteIndividual that 'occurs' or 'happens' in time. They may be instantaneous or long-running. Events are those \"things that happen to or are performed by\" (Casati and Varzi, 2015) endurants. + +Examples include actions and processes, such as a business meeting, a communicative act, a soccer match, a goal kick, the clicking of a mouse button; as well as natural occurrences such as an earthquake, the fall of the meteor that caused the extinction of the dinosaurs. + +Also termed \"happening\", \"occurrence\", \"perdurant\" or \"occurrent\" in the philosophical literature. + +Casati, R. & Varzi, A. (2015). Events. In E.N. Zalta (Ed.), The Stanford Encyclopedia of Philosophy (Winter 2015 ed.). 19 Metaphysics Research Lab, Stanford University. https://plato.stanford.edu/archives/win2015/entries/events/"""@en ; + rdfs:seeAlso gufo:participatedIn ; + . + +gufo:EventType + a owl:Class ; + rdfs:subClassOf gufo:ConcreteIndividualType ; + rdfs:label "EventType"@en ; + rdfs:comment '''A gufo:Type whose instances are events. + +Instances of gufo:EventType are subclasses of gufo:Event. + +Examples include "Business Meeting", "Birth", "Musical Performance".'''@en ; + owl:disjointWith gufo:SituationType ; + . + +gufo:ExtrinsicAspect + a owl:Class ; + rdfs:subClassOf gufo:Aspect ; + rdfs:label "ExtrinsicAspect"@en ; + rdfs:comment """A gufo:Aspect that depends on one or more concrete individuals. + +Extrinsic (or \"relational\") aspects are reified relationships, e.g., John and Mary's marriage, Mary's employment contract at Nasa, or parts of those relationships, e.g., John's obligations towards Mary in the scope of the marriage, Mary's reciprocal claims, Mary's obligations towards John, John's reciprocal claims. Extrinsic aspects can also be reified one-sided relationships, e.g., John's admiration for Obama (which depends on Obama but does not characterize him). + +Corresponds to \"Extrinsic Moment\" in Fonseca et al (2019). Encompasses \"Externally Depedent Mode\", \"Qua Individual\" and \"Relator\" in Guizzardi (2005)."""@en ; + owl:disjointUnionOf ( + gufo:ExtrinsicMode + gufo:Relator + ) ; + owl:disjointWith gufo:IntrinsicAspect ; + . + +gufo:ExtrinsicMode + a owl:Class ; + rdfs:subClassOf + gufo:ExtrinsicAspect , + [ + a owl:Restriction ; + owl:onProperty gufo:inheresIn ; + owl:onClass gufo:ConcreteIndividual ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty gufo:externallyDependsOn ; + owl:someValuesFrom gufo:ConcreteIndividual ; + ] + ; + rdfs:label "ExtrinsicMode"@en ; + rdfs:comment """A gufo:ExtrinsicAspect that inheres in a concrete individual and depends on others for its existence. + +A gufo:ExtrinsicMode can be understood as a reified one-sided relationship, such as John's admiration for Mary. + +Corresponds to \"Extrinsic Moment\" in Fonseca et al (2019). Encompasses what \"Externally Dependent Mode\", \"Qua Individual\" and \"Relator\" in Guizzardi (2005)."""@en ; + rdfs:seeAlso + gufo:externallyDependsOn , + gufo:inheresIn + ; + owl:disjointWith gufo:Relator ; + . + +gufo:FixedCollection + a owl:Class ; + rdfs:subClassOf gufo:Collection ; + rdfs:label "FixedCollection"@en ; + rdfs:comment """A gufo:Collection for which no change in membership is possible. + +Such a collection obeys an extensional principle of identity, i.e., two fixed collections are the same if, and only if, they have the same members. + +Consider, for example, a group of people understood as a gufo:FixedCollection. In this case, any change in the membership of the group (e.g., the addition of one person) would in fact create a different group of people. In this case, the gufo:FixedCollection may be contrasted with the complexes they constitute. For instance, The Beatles (the band conceived as a gufo:FunctionalComplex) was in a certain circumstance constituted by the collection {John, Paul, George, Pete} and in another one constituted by the collection {John, Paul, George, Ringo}. The replacement of Pete Best by Ringo Star does not alter the identity of the band, but creates a different group of people."""@en ; + rdfs:seeAlso + gufo:isCollectionMemberOf , + gufo:isSubCollectionOf + ; + owl:disjointWith gufo:VariableCollection ; + . + +gufo:FunctionalComplex + a owl:Class ; + rdfs:subClassOf gufo:Object ; + rdfs:label "FunctionalComplex"@en ; + rdfs:comment + """A complex gufo:Object whose parts (components) play different roles in its composition. + +For example, a person could be considered a gufo:FunctionalComplex with the various organs (heart, brain, lungs, etc.) playing different roles. Another example is a scrum team, which is composed by people playing the roles of scrum master, product owner, developer, etc. + +To explicitly capture temporary components, use gufo:TemporaryParthoodSituation."""@en , + gufo:isComponentOf + ; + rdfs:seeAlso gufo:TemporaryParthoodSituation ; + . + +gufo:Individual + a owl:Class ; + rdfs:label "Individual"@en ; + rdfs:comment """An entity that (unlike a gufo:Type) cannot be instantiated. + +Individuals may be either concrete (e.g., the Earth, Mick Jagger, Brazil, the 1985 Mexico City Earthquake) or abstract (e.g., the number two, the proposition that 'three is a prime number'). + +Also known as \"particular\" in the philosophical literature."""@en ; + owl:disjointUnionOf ( + gufo:AbstractIndividual + gufo:ConcreteIndividual + ) ; + owl:disjointWith gufo:Type ; + . + +gufo:IntrinsicAspect + a owl:Class ; + rdfs:subClassOf + gufo:Aspect , + [ + a owl:Restriction ; + owl:onProperty gufo:inheresIn ; + owl:onClass gufo:ConcreteIndividual ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "IntrinsicAspect"@en ; + rdfs:comment """A gufo:Aspect that depends on a single concrete individual in which it inheres. + +Examples include intrinsic physical aspects, such as the Moon's mass, Lassie's fur color; the fragility of John Lennon's glasses; mental dispositions, such as Bob's math skills, his belief that the number one is odd. + +A gufo:IntrinsicAspect is classified as a gufo:Quality (e.g., an apple's weight, the height of the Statue of Liberty) if it is measurable by a certain value space, or as a gufo:IntrinsicMode (e.g. Bob's belief that the Eiffel Tower is in Paris) otherwise. + +Corresponds to \"Instrinsic Moment\" in Guizzardi (2005). Different from Guizzardi (2005), here we consider that aspects can inhere in concrete individuals in general, and not only in endurants."""@en ; + rdfs:seeAlso gufo:inheresIn ; + owl:disjointUnionOf ( + gufo:IntrinsicMode + gufo:Quality + ) ; + . + +gufo:IntrinsicMode + a owl:Class ; + rdfs:subClassOf gufo:IntrinsicAspect ; + rdfs:label "IntrinsicMode"@en ; + rdfs:comment """A gufo:IntrinsicAspect that is not measurable. + +For example, Bob's belief that the Eiffel Tower is in Paris, his math skills, his headache. + +Corresponds to \"Mode\" in Guizzardi (2005)."""@en ; + owl:disjointWith gufo:Quality ; + . + +gufo:Kind + a owl:Class ; + rdfs:subClassOf + gufo:RigidType , + gufo:Sortal + ; + rdfs:label "Kind"@en ; + rdfs:comment '''A gufo:EndurantType that is both sortal and rigid. It provides a uniform principle of identity for its instances. Every gufo:Endurant instantiates one and only one gufo:Kind. + +Examples include kinds of ordinary objects of everyday experience, such as: "Person", "House", "Car"; kinds of relators, such as "Marriage", "RentalContract"; kinds of existentially-dependent aspects of objects, such as "Weight", "Belief", "Vulnerability".'''@en ; + owl:disjointWith gufo:SubKind ; + . + +gufo:MaterialRelationshipType + a owl:Class ; + rdfs:subClassOf gufo:RelationshipType ; + rdfs:label "MaterialRelationshipType"@en ; + rdfs:comment '''A gufo:RelationshipType derived from extrinsic aspects of the related entities. + +For example, "marriedWith", "employedBy", "enrolledIn", "admires". + +For a gufo:MaterialRelationshipType it is recommended to identify the type of extrinsic aspect from which the material relationship type is derived (see gufo:isDerivedFrom). For example "marriedWith" can be derived from the "Marriage" relator type, "employedBy" can be derived from the "Employment" relator type. + +Encompasses "Material Relation" in Guizzardi (2005) and corresponds to "Material Relation" in Fonseca et al. (2019).'''@en ; + rdfs:seeAlso gufo:isDerivedFrom ; + . + +gufo:Mixin + a owl:Class ; + rdfs:subClassOf + gufo:NonSortal , + gufo:SemiRigidType + ; + rdfs:label "Mixin"@en ; + rdfs:comment '''A gufo:EndurantType that is both non-sortal and semi-rigid. As a semi-rigid type, it applies necessarily to some of its instances and contingently to some others. As a non-sortal, it captures properties shared by instances of different kinds. + +For example, the type "FemaleAnimal" may be considered a gufo:Mixin as it applies necessarily to animals of certain species, e.g., lions and sharks, while it applies contingently to animals of other species such as clownfish and mushroom corals (which may change sex given certain conditions).'''@en ; + . + +gufo:NonRigidType + a owl:Class ; + rdfs:subClassOf gufo:EndurantType ; + rdfs:label "NonRigidType"@en ; + rdfs:comment '''A gufo:EndurantType that does not apply necessarily to at least one of its instances (see Guizzardi, 2005, chapter 4). + +Examples include anti-rigid types, such as the role "Student" and the phase "Child", and semi-rigid types, such as the mixin "MusicalArtist" (which necessarily characterizes bands, but contingently characterizes people) and the mixin "FemaleAnimal" (which is necessarily characterizes female dogs, but contigently characterizes clownfish).'''@en ; + owl:disjointUnionOf ( + gufo:AntiRigidType + gufo:SemiRigidType + ) ; + owl:disjointWith gufo:RigidType ; + . + +gufo:NonSortal + a owl:Class ; + rdfs:subClassOf gufo:EndurantType ; + rdfs:label "NonSortal"@en ; + rdfs:comment '''A gufo:EndurantType that applies to individuals of different kinds (see Guizzardi, 2005, chapter 4). + +Non-sortals do not provide a uniform principle of identity for their instances; instead, they just classify things that share common properties but which obey different principles of identity. + +Also termed "dispersive" types in the philosophical literature.'''@en ; + owl:disjointWith gufo:Sortal ; + . + +gufo:Object + a owl:Class ; + rdfs:subClassOf gufo:Endurant ; + rdfs:label "Object"@en ; + rdfs:comment '''A gufo:Endurant that does not depend on another endurant for its existence (excluding its essential parts and aspects). + +Examples of objects include ordinary physical entities, such as a dog, a house, a tomato, a car, Alan Turing, but also socially-defined entities such as The Rolling Stones, the European Union, the Brazilian 1988 Constitution. + +Guizzardi (2005) also included the more abstract notion of "Substantial", which generalizes both objects and amounts of matter. That notion was left out from this implementation, together with the notion of amount of matter. Support for the representation of maximally-self-connected amounts of matter is given by gufo:Quantity.'''@en ; + . + +gufo:Participation + a owl:Class ; + rdfs:subClassOf + gufo:Event , + [ + a owl:Restriction ; + owl:onProperty [ + owl:inverseOf gufo:participatedIn ; + ] ; + owl:onClass gufo:Object ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "Participation"@en ; + rdfs:comment """A gufo:Event that depends on a single object. + +Participations can be used to partition an event into portions, each of which depend exclusively on a single object. Consider a business meeting with multiple participants, including John and Mary. John's participation in the meeting encompasses all events that are part of the meeting and that depend solely on him. Likewise, Mary's participation encompasses all events that are part of the meeting and that depend solely on her. Similarly, in Brutus’ stabbing of Caesar, we may identify the participations of Brutus, of Caesar, and of the dagger."""@en ; + rdfs:seeAlso gufo:participatedIn ; + . + +gufo:Phase + a owl:Class ; + rdfs:subClassOf + gufo:AntiRigidType , + gufo:Sortal + ; + rdfs:label "Phase"@en ; + rdfs:comment '''A gufo:EndurantType that is both sortal and anti-rigid. It is defined by instrinsic but contingent instantiation conditions. Phases are relationally independent types that capturec instrinsic properties shared by instances of a given kind. + +For example, "Child" may be considered a gufo:Phase as a subclass of the gufo:Kind "Person", instantiated by persons younger than 12. Another example is the type "IllPerson", which may be considered a gufo:Phase that is instantiated whenever an instance of "Disease" (a gufo:IntrinsicMode) inheres in a person.'''@en ; + owl:disjointWith gufo:Role ; + . + +gufo:PhaseMixin + a owl:Class ; + rdfs:subClassOf + gufo:AntiRigidType , + gufo:NonSortal + ; + rdfs:label "PhaseMixin"@en ; + rdfs:comment '''A gufo:EndurantType that is both non-sortal and anti-rigid. It is defined by instrinsic but contingent instantiation conditions. Phase mixins are relationally independent types that capture instrinsic properties shared by instances of different kinds. + +For example, "LivingAnimal" may be considered a gufo:PhaseMixin as a superclass of the phases "LivingPerson" (specializing the gufo:Kind "Person") and "LivingDog" (specializing the gufo:Kind "Dog").'''@en ; + owl:disjointWith gufo:RoleMixin ; + . + +gufo:Quality + a owl:Class ; + rdfs:subClassOf gufo:IntrinsicAspect ; + rdfs:label "Quality"@en ; + rdfs:comment """A gufo:IntrinsicAspect that is measurable by some value spaces. A quality may be used to compare individuals, on the basis of the value it takes in a certain quality space (for instance, a position within the RGB spectrum). + +Examples include the weight of a person, the name of organization, the color of a car, and the duration of a concert."""@en ; + . + +gufo:QualityValue + a owl:Class ; + rdfs:subClassOf gufo:AbstractIndividual ; + rdfs:label "QualityValue"@en ; + rdfs:comment '''A gufo:AbstractIndividual that can be associated with a gufo:Quality reflecting the perception or conception of the quality in a certain value space. + +Instances of gufo:QualityValue include the rational number 2.5 when used to conceive of the acidity of a portion of wine (in a pH scale), the tuple <38.8897,-77.0089> when used to conceive of the location of a building (in a space formed by latitude and longitude), or the triplet <0,0,0> when used to conceive of the color of a physical object (in a trimensional space formed by red, green and blue color components). + +Corresponds to "Quale" in Guizzardi (2005). + +Use this class only for quality values (qualia) that are to be reified in the A-box and associated with a gufo:ConcreteIndividual through the object property gufo:hasReifiedQualityValue. Otherwise, use the gufo:hasQualityValue data property and a literal to determine the quality value.'''@en ; + rdfs:seeAlso gufo:hasReifiedQualityValue ; + . + +gufo:QualityValueAttributionSituation + a owl:Class ; + rdfs:subClassOf + gufo:Situation , + [ + a owl:Class ; + owl:unionOf ( + [ + a owl:Restriction ; + owl:onProperty gufo:concernsReifiedQualityValue ; + owl:onClass gufo:QualityValue ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + [ + a owl:Restriction ; + owl:onProperty gufo:concernsQualityValue ; + owl:cardinality "1"^^xsd:nonNegativeInteger ; + ] + ) ; + ] , + [ + a owl:Restriction ; + owl:onProperty [ + owl:inverseOf gufo:standsInQualifiedAttribution ; + ] ; + owl:onClass gufo:Endurant ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty gufo:concernsQualityType ; + owl:onClass gufo:EndurantType ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "QualityValueAttributionSituation"@en ; + rdfs:comment """A gufo:Situation in which a quality value is temporarily attributed to a gufo:Endurant. + +A gufo:QualityValueAttributionSituation should be used only for mutable qualities, i.e. those whose value can vary in time. + +Examples include: the situation in which the value of a bitcoin in Euros is 6.526,12, which lasted from 10/12/2019 to 11/12/2019; the situation in which the weight of Mike Tyson was 100 kg; and the situation in which the color of Einstein' hair was grey. + +This is a reification of the quality value attribution (in a solution that is similar to the qualified relation pattern http://patterns.dataincubator.org/book/qualified-relation.html )"""@en ; + rdfs:seeAlso + gufo:concernsQualityValue , + gufo:concernsReifiedQualityValue + ; + owl:disjointWith + gufo:TemporaryConstitutionSituation , + gufo:TemporaryInstantiationSituation , + gufo:TemporaryParthoodSituation , + gufo:TemporaryRelationshipSituation + ; + . + +gufo:Quantity + a owl:Class ; + rdfs:subClassOf gufo:Object ; + rdfs:label "Quantity"@en ; + rdfs:comment '''A complex gufo:Object that is a maximally-connected portion of stuff. A gufo:Quantity has a fixed constitution, and thus, removing or adding a sub-quantity would result in a different quantity. + +Examples include the portion of wine in a wine tank, a lump of clay, the gold that constitutes a wedding ring. + +Also termed "quantity of matter", "objectified portion of matter", "piece" in the philosophical literature.'''@en ; + rdfs:seeAlso gufo:isSubQuantityOf ; + . + +gufo:RelationshipType + a owl:Class ; + rdfs:subClassOf gufo:Type ; + rdfs:label "RelationshipType"@en ; + rdfs:comment '''A gufo:Type whose instances are ordered pairs of related entities. Instances of gufo:RelationshipType are object properties in UFO-based ontologies. + +The object properties "marriedWith" and "enrolledIn" are examples of material relationship types. The object properties "heavierThan", "olderThan" are examples of comparative relationship types. + +The use of gufo:RelationshipType and its subclasses requires OWL 2 punning. + +Corresponds to "Relation" in Guizzardi (2005) and Fonseca et al. (2019).'''@en ; + . + +gufo:Relator + a owl:Class ; + rdfs:subClassOf + gufo:ExtrinsicAspect , + [ + a owl:Restriction ; + owl:onProperty gufo:mediates ; + owl:onClass gufo:Endurant ; + owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "Relator"@en ; + rdfs:comment """A gufo:ExtrinsicAspect that connects (involves, mediates) two or more concrete individuals. Relators are reified relationships composed of reciprocal extrinsic modes. + +Examples of relators include John and Mary's marriage (composed of John's obligations towards Mary in the scope of the marriage, Mary's reciprocal claims, Mary's obligations towards John, John's reciprocal claims), Mary's employment contract at Nasa, a covalent bond between two atoms."""@en ; + rdfs:seeAlso gufo:mediates ; + . + +gufo:RigidType + a owl:Class ; + rdfs:subClassOf gufo:EndurantType ; + rdfs:label "RigidType"@en ; + rdfs:comment '''A gufo:EndurantType which applies necessarily to its instances (see Guizzardi, 2005, chapter 4). + +Examples include the types "Agent", "Person", "Animal", "PhysicalObject", "Car", and "Tree".'''@en ; + . + +gufo:Role + a owl:Class ; + rdfs:subClassOf + gufo:AntiRigidType , + gufo:Sortal + ; + rdfs:label "Role"@en ; + rdfs:comment '''A gufo:EndurantType that both sortal and anti-rigid. It is defined by relational instantiation conditions. Roles are relationally dependent types, capturing relational properties shared by instances of a given kind. + +For example, "Student" may be considered a gufo:Role as a subclass of the gufo:Kind "Person", instantiated by all persons enrolled in a school. "'''@en ; + . + +gufo:RoleMixin + a owl:Class ; + rdfs:subClassOf + gufo:AntiRigidType , + gufo:NonSortal + ; + rdfs:label "RoleMixin"@en ; + rdfs:comment '''A gufo:EndurantType that is both non-sortal and anti-rigid. It is defined by relational instantiation conditions. Role mixins are relationally dependent types, capturing relational properties shared by instances of different kinds. + +For example, "Customer" may be considered a gufo:RoleMixin as a superclass of the roles "CorporateCustomer" (specializing the gufo:Kind "BusinessOrganization") and "PersonalCustomer" (specializing the gufo:Kind "Person").'''@en ; + . + +gufo:SemiRigidType + a owl:Class ; + rdfs:subClassOf gufo:NonRigidType ; + rdfs:label "SemiRigidType"@en ; + rdfs:comment "A gufo:NonRigidType that applies necessarily to some of its instances and contingently to some others (see Guizzardi, 2005, chapter 4)."@en ; + . + +gufo:Situation + a owl:Class ; + rdfs:subClassOf gufo:ConcreteIndividual ; + rdfs:label "Situation"@en ; + rdfs:comment """A gufo:ConcreteIndividual that is a particular configuration of a part of reality which can be understood as a whole and in which entities stand in relations. A situation may be counterfactual or actual. An actual situation (or in other words, a \"fact\") \"obtains\" in a certain time instant or during a time interval. + +Note that, in Guizzardi et al. (2013), situations were considered to obtain at a specific point in time. Here, instead, they obtain in a time interval when begin and end points differ. + +The various subclasses of Situation in this implementation are used to capture \"mutable\" facts which obtain during some time and fail to obtain at other times. This includes the contingent instantiation of non-rigid types (e.g., as someone is a child at one point in time and a teenager later), the attribution of value to mutable qualities (such as a person's weight) and temporary participation in part-whole relations for replaceable parts (such as a car's tires). Other subclasses may be created to capture domain-specific notions such as \"HazardousSituation\", \"PersonHasFever\"."""@en ; + . + +gufo:SituationType + a owl:Class ; + rdfs:subClassOf gufo:ConcreteIndividualType ; + rdfs:label "SituationType"@en ; + rdfs:comment '''A gufo:Type whose instances are situations. + +Instances of gufo:SituationType are subclasses of gufo:Situation. + +Examples include "HazardousSituation", "PersonHasFever", "PersonIsStudent".'''@en ; + . + +gufo:Sortal + a owl:Class ; + rdfs:subClassOf gufo:EndurantType ; + rdfs:label "Sortal"@en ; + rdfs:comment "A gufo:EndurantType which carries (or supplies) a principle of identity for its instances (see Guizzardi, 2005, chapter 4)."@en ; + . + +gufo:SubKind + a owl:Class ; + rdfs:subClassOf + gufo:RigidType , + gufo:Sortal + ; + rdfs:label "SubKind"@en ; + rdfs:comment '''A gufo:EndurantType that is both sortal and rigid. It specializes a gufo:Kind carrying the principle of identity supplied by that kind. Every gufo:SubKind should directly or indirectly specialize a gufo:Kind. + +For example, the gufo:Kind "Lion" may be specialized into the "Lionness" and "Male Lion" subkinds, while the gufo:Kind "Computer" may be specialized into the "Laptop" and "Desktop" subkinds.'''@en ; + . + +gufo:TemporaryConstitutionSituation + a owl:Class ; + rdfs:subClassOf + gufo:Situation , + [ + a owl:Restriction ; + owl:onProperty gufo:concernsConstitutedEndurant ; + owl:onClass gufo:Object ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty [ + owl:inverseOf gufo:standsInQualifiedConstitution ; + ] ; + owl:onClass gufo:Object ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "TemporaryConstitutionSituation"@en ; + rdfs:comment """A gufo:Situation in which a gufo:Endurant temporarly constitutes another gufo:Endurant. + +When constitution of an object may change in time, it may be qualified by the period in time in which the relation applies. + +Examples include: the situation in which the Beatles is constituted by the group composed of {John,Paul,Ringo,George}; and the situation in which the statue of Venus de Milo was constituted by its original quantity of marble (including its arms). + +This is a reification of constitution (in a solution that is similar to the qualified relation pattern http://patterns.dataincubator.org/book/qualified-relation.html)"""@en ; + owl:disjointWith + gufo:TemporaryInstantiationSituation , + gufo:TemporaryRelationshipSituation + ; + . + +gufo:TemporaryInstantiationSituation + a owl:Class ; + rdfs:subClassOf + gufo:Situation , + [ + a owl:Restriction ; + owl:onProperty [ + owl:inverseOf gufo:standsInQualifiedInstantiation ; + ] ; + owl:onClass gufo:Endurant ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty gufo:concernsNonRigidType ; + owl:onClass gufo:NonRigidType ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "TemporaryInstantiationSituation"@en ; + rdfs:comment """A gufo:Situation in which a gufo:Endurant temporarily instantiates a gufo:NonRigidType. + +A gufo:TemporaryInstantiationSituation can account for the time period in which a particular instantiation holds. + +Examples include: the situation in which Obama instantiates the role of president, which began in 20/01/2009 and lasted until 20/01/2017; the situation in which Coatria instantiates the role of EU Member, which began in 01/07/2013 (and is still on-going); and the situation in which Steve Jobs instantiates the child phase, which began in 24/02/1955 and lasted until 24/02/1965. + +This solution is inspired in the qualified relation pattern (http://patterns.dataincubator.org/book/qualified-relation.html)."""@en ; + owl:disjointWith + gufo:TemporaryParthoodSituation , + gufo:TemporaryRelationshipSituation + ; + . + +gufo:TemporaryParthoodSituation + a owl:Class ; + rdfs:subClassOf + gufo:Situation , + [ + a owl:Restriction ; + owl:onProperty gufo:concernsTemporaryWhole ; + owl:onClass gufo:Endurant ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty [ + owl:inverseOf gufo:standsInQualifiedParthood ; + ] ; + owl:onClass gufo:Endurant ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] + ; + rdfs:label "TemporaryParthoodSituation"@en ; + rdfs:comment """A gufo:Situation in which a gufo:Endurant is temporarily a part of another gufo:Endurant. + +A gufo:TemporaryParthoodSituation should only be used for mutable parts. It may be qualified by the period in time in which the relation applies. + +Examples include: the situation in which the United Kingdom is a member of the European Union; the situation in which Messi is a a member of the Barcelona FC squad; the situation in which an engine is part of a car; and the situation in which a transplanted heart is part of a person. + +Note that, since every instance of gufo:Quantity or gufo:FixedCollection only has essential parts, the gufo:TemporaryParthoodSituation should not be used to represent these parthood relations. + +This solution is inspired in the qualified relation pattern (http://patterns.dataincubator.org/book/qualified-relation.html).""" ; + owl:disjointWith gufo:TemporaryRelationshipSituation ; + . + +gufo:TemporaryRelationshipSituation + a owl:Class ; + rdfs:subClassOf + gufo:Situation , + [ + a owl:Restriction ; + owl:onProperty [ + owl:inverseOf gufo:standsInQualifiedRelationship ; + ] ; + owl:onClass gufo:Endurant ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty gufo:concernsRelationshipType ; + owl:onClass gufo:RelationshipType ; + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; + ] , + [ + a owl:Restriction ; + owl:onProperty gufo:concernsRelatedEndurant ; + owl:someValuesFrom gufo:Endurant ; + ] + ; + rdfs:label "TemporaryRelationshipSituation"@en ; + rdfs:comment """A gufo:Situation in which a gufo:Endurant temporarily stands in a relation with another gufo:Endurant (or other endurants in the case of n-ary relationships). + +Reification of a gufo:TemporaryRelationshipSituation allows qualification of the relationship with the period in time in which it applies. + +Examples include: the situation in which Einstein works at the Swiss Patent Office in Bern; the situation in which Elon Musk studies at the University of Pennsylvania; the situation in which John Lennon is married to Yoko Ono; and the situation in which Facebook has a lower market value than Amazon. + +For material relationships, prefer the use of gufo:Relator. + +This is a reification of the relationship (in a solution that is similar to the qualified relation pattern http://patterns.dataincubator.org/book/qualified-relation.html)."""@en ; + . + +gufo:Type + a owl:Class ; + rdfs:label "Type"@en ; + rdfs:comment '''An entity that may be instantiated by (or predicated over) other entities. Types encompass what we often call "sorts", "kinds", "categories", etc. + +Examples include the kind "Person", the event type "Earthquake", and the abstract individual type "NaturalNumber". Relations, such as "marriedTo" and "olderThan", are also considered as types. + +Instances of gufo:Type are classes, and should specialize the taxonomy of individuals of gUFO. For example, "Person" is a gufo:Type (more specifically a gufo:Kind), specializing gufo:Object. The mechanism that allows for this is called punning in OWL 2. + +Encompasses the notion of "Universal" in Guizzardi (2005).'''@en ; + . + +gufo:VariableCollection + a owl:Class ; + rdfs:subClassOf gufo:Collection ; + rdfs:label "VariableCollection"@en ; + rdfs:comment + """A gufo:Collection for which change in membership is possible. + +Such a collection obeys an intensional principle of identity, i.e., change in membership does not necessarily create a different collection. + +For example, KLM's fleet of airplanes could be understood as a gufo:VariableCollection. In this case, when the company acquires (or retires) an airplane, the fleet changes. Note that, in this case, the airplanes are conceptualized as playing the role of \"member of a fleet\". If various roles for the parts of a fleet were envisioned (such as \"cargo airplane\", \"passenger airplane\"), then a fleet would be best understood as a gufo:FunctionalComplex. + +See gufo:TemporaryParthoodSituation for the pattern to represent the relation of a variable collection to its temporary parts."""@en , + gufo:TemporaryParthoodSituation + ; + . + +gufo:broughtAbout + a owl:ObjectProperty ; + rdfs:label "broughtAbout"@en ; + rdfs:comment '''Identifies a gufo:Situation that is brought about by the gufo:Event. + +Guizzardi et al. (2013) included a notion of "brings-about" that related events to a single ("maximal") situation, embodying all the effects of the event at the time it ends. This implementation of gufo:broughtAbout diverges from "brings-about" in that work because gufo:broughtAbout can be used to relate events to more than one gufo:Situation. Each gufo:Situation identified through gufo:broughtAbout should be understood as an (improper) part of the maximal situation.'''@en ; + rdfs:domain gufo:Event ; + rdfs:range gufo:Situation ; + . + +gufo:categorizes + a owl:ObjectProperty ; + rdfs:label "categorizes"@en ; + rdfs:comment '''Identifies a gufo:Type whose instances may be classified by instances of the categorizing higher-order type. + +For example, "ShipType" gufo:categorizes "Ship". Instances of "ShipType" such as "Supercarrier" and "Cargoship" should be declared subclasses of "Ship". OWL 2 punning should be used to capture the two facets of "Supercarrier" and "Cargoship" in this example: (i) as instances of "ShipType", and (ii) as subclasses of "Ship". + +The categorized type is termed the "base type" in the "powertype pattern" see Carvalho et al (2017), the higher-order type is often called the "powertype". + +gufo:categorizes is the general (unspecific) form of categorization. See gufo:partitions for a more specific form, in which instances of the categorized type are classified by exactly one instance of the higher-order type. + +The domain is gufo:Type excluding gufo:AbstractIndividualType as well as gufo:ConcreteIndividualTypes because those types are first-order types (their instances are individuals). Only instances of gufo:Type representing higher-order types can categorize a base type. + +For further details and formalization of "categorization", see Carvalho et al (2017) which combines UFO with MLT (a multi-level modeling theory). + +V. A. Carvalho, J. P. A. Almeida, C. M. Fonseca, and G. Guizzardi, “Multi-level ontology-based conceptual modeling,” Data & Knowledge Engineering, vol. 109, p. 3–24, 2017. '''@en ; + rdfs:domain [ + a owl:Class ; + owl:intersectionOf ( + gufo:Type + [ + a owl:Class ; + owl:complementOf gufo:AbstractIndividualType ; + ] + [ + a owl:Class ; + owl:complementOf gufo:ConcreteIndividualType ; + ] + ) ; + ] ; + rdfs:range gufo:Type ; + . + +gufo:concernsConstitutedEndurant + a owl:ObjectProperty ; + rdfs:label "concernsConstitutedEndurant"@en ; + rdfs:comment "Identifies the constituted gufo:Endurant in the gufo:TemporaryConstitutionSituation."@en ; + rdfs:domain gufo:TemporaryConstitutionSituation ; + rdfs:range gufo:Endurant ; + . + +gufo:concernsNonRigidType + a + owl:ObjectProperty , + owl:FunctionalProperty + ; + rdfs:label "concernsNonRigidType"@en ; + rdfs:comment "Identifies the gufo:NonRigidType that is instantiated by the endurant that stands in a gufo:TemporaryInstantiationSituation."@en ; + rdfs:domain gufo:TemporaryInstantiationSituation ; + rdfs:range gufo:NonRigidType ; + . + +gufo:concernsQualityType + a + owl:ObjectProperty , + owl:FunctionalProperty + ; + rdfs:label "concernsQualityType"@en ; + rdfs:comment "Identifies the quality type (a gufo:EndurantType subclassing gufo:Quality) whose value is attributed in the gufo:QualityValueAttributionSituation."@en ; + rdfs:domain gufo:QualityValueAttributionSituation ; + rdfs:range gufo:EndurantType ; + . + +gufo:concernsQualityValue + a owl:DatatypeProperty ; + rdfs:label "concernsQualityValue"@en ; + rdfs:comment '''Determines a quality value associated with the gufo:ConcreteIndividual that stands in the gufo:QualityValueAttributionSituation. + +Use gufo:concernsReifiedQualityValue instead when quality values are refied. + +It is recommended that subproperties of gufo:concernsQualityValue are created, possibly identifying the datatype to be used. For example, "concernsTemperatureValue" could be defined as a sub-property of gufo:concernsQualityValue with range xsd:double.'''@en ; + rdfs:domain gufo:QualityValueAttributionSituation ; + rdfs:seeAlso gufo:concernsReifiedQualityValue ; + . + +gufo:concernsReifiedQualityValue + a + owl:ObjectProperty , + owl:FunctionalProperty + ; + rdfs:label "concernsReifiedQualityValue"@en ; + rdfs:comment + "Identifies the gufo:QualityValue (i.e., the reified quality value) associated with the endurant that stands in the gufo:QualityValueAttributionSituation."@en , + gufo:concernsQualityValue + ; + rdfs:domain gufo:QualityValueAttributionSituation ; + rdfs:range gufo:QualityValue ; + . + +gufo:concernsRelatedEndurant + a + owl:ObjectProperty , + owl:FunctionalProperty + ; + rdfs:label "concernsRelatedEndurant"@en ; + rdfs:comment "Identifies the related gufo:Endurant in the gufo:TemporaryRelationshipSituation."@en ; + rdfs:domain gufo:TemporaryRelationshipSituation ; + rdfs:range gufo:Endurant ; + . + +gufo:concernsRelationshipType + a + owl:ObjectProperty , + owl:FunctionalProperty + ; + rdfs:label "concernsRelationshipType"@en ; + rdfs:comment "Identifies the gufo:RelationshipType instantiated in the gufo:TemporaryRelationshipSituation."@en ; + rdfs:domain gufo:TemporaryRelationshipSituation ; + rdfs:range gufo:RelationshipType ; + . + +gufo:concernsTemporaryWhole + a + owl:ObjectProperty , + owl:FunctionalProperty + ; + rdfs:label "concernsTemporaryWhole"@en ; + rdfs:comment "Identifies the whole (a gufo:Endurant) of which the endurant that stands in the gufo:TemporaryParthoodSituation is part."@en ; + rdfs:domain gufo:TemporaryParthoodSituation ; + rdfs:range gufo:Endurant ; + . + +gufo:constitutes + a owl:ObjectProperty ; + rdfs:label "constitutes"@en ; + rdfs:comment """Identifies a gufo:ConcreteIndividual that is constituted (partially) by the constituent individual. + +For example, the gufo:Collection of persons whose members are John, Paul, George, Ringo constituted the beatles, the gufo:Quantity of marble that constitutes the statue of Venus de Milo, and the gufo:Event of Paul raising his arm in a meeting that constitutes his voting (also a gufo:Event). + +In case constitution changes in time, see gufo:standsInQualifiedConstitution."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range gufo:ConcreteIndividual ; + rdfs:seeAlso gufo:standsInQualifiedConstitution ; + . + +gufo:contributedToTrigger + a owl:ObjectProperty ; + rdfs:label "contributedToTrigger"@en ; + rdfs:comment '''Identifies a gufo:Event that the gufo:Situation contributed to trigger. + +Guizzardi et al. (2013) defined a notion of "triggers" to relate the situation satisfying all the sufficient and necessary conditions with the triggered event. This implementation differs from "triggers" as defined in that work because gufo:contributedToTrigger can be used to relate more than one gufo:Situation to a gufo:Event. Each gufo:Situation identified through gufo:contributedToTrigger should be understood as an (improper) part of the situation that triggered the event.'''@en ; + rdfs:domain gufo:Situation ; + rdfs:range gufo:Event ; + . + +gufo:externallyDependsOn + a + owl:ObjectProperty , + owl:IrreflexiveProperty + ; + rdfs:label "externallyDependsOn"@en ; + rdfs:comment """Identifies a gufo:Endurant on which the gufo:ExtrinsicMode depends. + +For example, John's duty to return the book he borrowed from Mary (a gufo:ExtrinsicMode) depends externally on Mary. + +The identifed gufo:Endurant should be external to the bearer of the extrinsic mode (see Guizzardi, 2005, p. 239). In other words, the identified endurant should not be a part or an intrisic aspect of the bearer of the extrinsic mode."""@en ; + rdfs:domain gufo:ExtrinsicMode ; + rdfs:range gufo:Endurant ; + . + +gufo:hasAssociatedQualityValueType + a owl:ObjectProperty ; + rdfs:label "hasAssociatedQualityValueType"@en ; + rdfs:comment '''Identifies a quality value type to which the quality type is associated. + +For example, a "Color" quality type may be associated with a "ColorValueInRGB" quality value type. + +It relates a specialization of gufo:Quality (an instance of gufo:EndurantType) to a specialization of gufo:QualityValue (an instance of gufo:AbstractIndividualType). + +To be used only when quality values are reified.'''@en ; + rdfs:domain gufo:EndurantType ; + rdfs:range gufo:AbstractIndividualType ; + . + +gufo:hasBeginPoint + a owl:ObjectProperty ; + rdfs:label "hasBeginPoint"@en ; + rdfs:comment """Identifies the begin point for a gufo:ConcreteIndividual, in the case in which time instants are reified. + +In the case of endurants, this identifies the time point when the endurant comes into existence. In the case of events, this identifies the time point when the event starts to take place. In the case of situation, this identifies the time point when the situation begins to hold. + +If time instants are not reified, use gufo:hasBeginPointInXSDDate or gufo:hasBeginPointInXSDDateTimeStamp."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range time:Instant ; + rdfs:seeAlso + gufo:hasBeginPointInXSDDate , + gufo:hasBeginPointInXSDDateTimeStamp + ; + . + +gufo:hasBeginPointInXSDDate + a + owl:DatatypeProperty , + owl:FunctionalProperty + ; + rdfs:label "hasBeginPointInXSDDate"@en ; + rdfs:comment """Determines the begin point for a gufo:ConcreteIndividual, using a xsd:date literal. + +In the case of endurants, gufo:asBeginPointInXSDDate determines the time point when the endurant comes into existence. In the case of events, this data property determines the time point when the event starts to take place. In the case of situation, it determines the time point when the situation begins to hold. + +Use gufo:hasBeginPoint instead when temporal entities are reified."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range xsd:date ; + rdfs:seeAlso + gufo:hasBeginPoint , + gufo:hasBeginPointInXSDDateTimeStamp + ; + . + +gufo:hasBeginPointInXSDDateTimeStamp + a + owl:DatatypeProperty , + owl:FunctionalProperty + ; + rdfs:label "hasBeginPointInXSDDateTimeStamp"@en ; + rdfs:comment """Determines the begin point for a gufo:ConcreteIndividual, using a xsd:dateTimeStamp literal. + +In the case of endurants, gufo:hasBeginPointInXSDDateTimeStamp determines the time point when the endurant comes into existence. In the case of events, this data property determines the time point when the event starts to take place. In the case of situation, it determines the time point when the situation begins to hold. + +Use gufo:hasBeginPoint instead when temporal entities are reified."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range xsd:dateTimeStamp ; + rdfs:seeAlso + gufo:hasBeginPoint , + gufo:hasBeginPointInXSDDate + ; + . + +gufo:hasEndPoint + a owl:ObjectProperty ; + rdfs:label "hasEndPoint"@en ; + rdfs:comment """Identifies the end point for a gufo:ConcreteIndividual, in the case in which time instants are reified. + +In the case of endurants, this identifies the time point when the endurant ceases to exist. In the case of events, this identifies the time point when the event ends. In the case of situation, this identifies the time point when the situation ceases to hold."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range time:Instant ; + rdfs:seeAlso + gufo:hasEndPointInXSDDate , + gufo:hasEndPointInXSDDateTimeStamp + ; + . + +gufo:hasEndPointInXSDDate + a + owl:DatatypeProperty , + owl:FunctionalProperty + ; + rdfs:label "hasEndPointInXSDDate"@en ; + rdfs:comment """Determines the end point for a gufo:ConcreteIndividual using a xsd:date literal. + +In the case of endurants, gufo:hasEndPointInXSDDate determines the time point when the endurant ceases to exist. In the case of events, this data property determines the time point when the event ends. In the case of situation, it determines the time point when the situation ceases to hold. + +Use gufo:hasEndPoint instead when temporal entities are reified."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range xsd:date ; + rdfs:seeAlso + gufo:hasEndPoint , + gufo:hasEndPointInXSDDateTimeStamp + ; + . + +gufo:hasEndPointInXSDDateTimeStamp + a + owl:DatatypeProperty , + owl:FunctionalProperty + ; + rdfs:label "hasEndPointInXSDDateTimeStamp"@en ; + rdfs:comment """Determines the end point for a gufo:ConcreteIndividual using a xsd:dateTimeStamp literal. + +In the case of endurants, gufo:hasEndPointInXSDDateTimeStamp determines the time point when the endurant ceases to exist. In the case of events, this data property determines the time point when the event ends. In the case of situation, it determines the time point when the situation ceases to hold. + +Use gufo:hasEndPoint instead when temporal entities are reified."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range xsd:dateTimeStamp ; + rdfs:seeAlso + gufo:hasEndPoint , + gufo:hasEndPointInXSDDate + ; + . + +gufo:hasQualityValue + a owl:DatatypeProperty ; + rdfs:label "hasQualityValue"@en ; + rdfs:comment '''Determines a quality value associated with the concrete individual. + +Use gufo:hasReifiedQualityValue instead when quality values are reified. + +It is recommended that subproperties of gufo:hasQualityValue are created, possibly identifying the datatype to be used. For example, "hasTemperatureValue" could be defined as a sub-property of gufo:hasQualityValue whose domain is "Temperature" (specializing gufo:Quality) and whose range is xsd:double.'''@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:seeAlso gufo:hasReifiedQualityValue ; . -ex:Object +gufo:hasReifiedQualityValue + a owl:ObjectProperty ; + rdfs:label "hasReifiedQualityValue"@en ; + rdfs:comment """Identifies an instance of gufo:QualityValue to reflect the perception or conception of a quality in a certain value space. + +Use this property only for quality values that are to be reified in the A-box and associated with a gufo:ConcreteIndividual. Otherwise, use the gufo:hasQualityValue data property and a literal to determine the quality value. + +The full representation pattern for quality values involves first identifying a gufo:Quality that inheres in a concrete individual and then associating it with a reified quality value. For example, let us consider the color of Yves Klein's \"Blue Monochrome\" painting made in 1961 (MoMA's object with number 618.1967). In the full pattern, an instance of gufo:Quality that inheres in the physical object (the color of that painting) is associated with a gufo:QualityValue (say the triplet <0, 47, 167> for that painting) through gufo:hasReifiedQualityValue. The full pattern is recommended when different quality spaces are expected to be used for the same quality. For example, the color of that painting could also be associated with a quadruple <100, 72, 0, 35> representing the same color in a CMYK space. + +When the full pattern is not required, gufo:hasReifiedQualityValue can also be used to directly associate a concrete individual (without identifying the quality) with a quality value."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range gufo:QualityValue ; + rdfs:seeAlso gufo:hasQualityValue ; + . + +gufo:hasValueComponent + a owl:DatatypeProperty ; + rdfs:label "hasValueComponent"@en ; + rdfs:comment '''This property is used for quality values that are defined in terms of a multidimensional quality structure (such as color conceived in terms of hue, saturation and brightness). Each value component of a quality value (a particular value for hue, a particular value for saturation, a particular value for brightness) is determined with this property. + +It is recommended that subproperties of gufo:hasValueComponent are created to indicate values for particular dimensions, possibly identifying the datatype to be used. For example "hasHueComponent", "hasSaturationComponent" and "hasBrightnessComponent" could be used as data properties specializing gufo:hasValueComponent with the xsd:double datatype.'''@en ; + rdfs:domain gufo:QualityValue ; + . + +gufo:historicallyDependsOn + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:label "historicallyDependsOn"@en ; + rdfs:comment """Identifies a gufo:ConcreteIndividual on which the concrete individual depends historically. + +For example, a person is historically dependent on his/her ancestors. + +When used between events, historical dependence encompasses causation (when the event is caused by the other), but also other cases where there is dependence but not causation (when the event brings about a situation that is either insufficient or more than sufficient to trigger the historically dependent event). + +For example, Real Madrid's goal in the 60th minute of the 2016 FIFA Club World Cup Final is historically dependent on (and in this case caused by) a penalty kick by Cristiano Ronaldo. The penalty kick itself is historically dependent on (but not caused by) a penalty (the occurrence of the penalty is necessary but not sufficient to cause the penalty kick as authorization of the referee is required). + +Historical dependence is transitive. Hence, in the example above, Real Madrid's goal is historically dependent on the penalty."""@en ; + rdfs:domain gufo:ConcreteIndividual ; + rdfs:range gufo:ConcreteIndividual ; + . + +gufo:inheresIn + a + owl:ObjectProperty , + owl:AsymmetricProperty , + owl:FunctionalProperty , + owl:IrreflexiveProperty + ; + rdfs:label "inheresIn"@en ; + rdfs:comment '''Identifies the gufo:ConcreteIndividual in which the gufo:Aspect inheres. Inherence is a sort of existential dependence. The identified concrete individual is the "bearer" of the aspect. + +For example, the color of an object inheres in the object and the average speed of a flight inheres in the flight.'''@en ; + rdfs:domain gufo:Aspect ; + rdfs:range gufo:ConcreteIndividual ; + . + +gufo:isAspectProperPartOf + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:subPropertyOf gufo:isProperPartOf ; + rdfs:label "isAspectProperPartOf"@en ; + rdfs:comment """Identifies a gufo:Aspect of which the aspect is a proper part. + +For example, John's obligations towards Mary in the scope of their marriage is an aspect proper part of their marriage (and same can be said of Mary's extrinsic aspects in the scope of their marriage.) + +This property can be used to represent the composition of a relator from extrisinc aspects, but also to represent complex extrisinc aspects. + +gufo:isAspectProperPartOf is transitive."""@en ; + rdfs:domain gufo:Aspect ; + rdfs:range gufo:Aspect ; + . + +gufo:isCollectionMemberOf + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:isObjectProperPartOf ; + rdfs:label "isCollectionMemberOf"@en ; + rdfs:comment """Identifies a gufo:Collection of which the object is a member. + +This is the relation between John and a group of persons, and between a cow and its herd. + +gufo:isCollectionMemberOf is intransitive (Guizzardi, 2005, p. 185). + +For membership in a gufo:VariableCollection, see gufo:standsInQualifiedParthood."""@en ; + rdfs:domain gufo:Object ; + rdfs:range gufo:Collection ; + rdfs:seeAlso gufo:standsInQualifiedParthood ; + . + +gufo:isComponentOf + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:isObjectProperPartOf ; + rdfs:label "isComponentOf"@en ; + rdfs:comment """Identifies a gufo:FunctionalComplex of which the object is a component. + +For example, the habitation module is a component of the International Space Station, and so are each of the solar panels; Obama's brain is a component of his body, and so is his heart; the engine is a component of the HMS Queen Elizabeth (R08). + +gufo:isComponentOf is not transitive in the general case. Particular sub-properties may be transitive (Guizzardi, 2005, p. 183). + +When a component may change its relation to be whole, see gufo:standsInQualifiedParthood."""@en ; + rdfs:domain gufo:Object ; + rdfs:range gufo:FunctionalComplex ; + rdfs:seeAlso gufo:standsInQualifiedParthood ; + . + +gufo:isDerivedFrom + a owl:ObjectProperty ; + rdfs:label "isDerivedFrom"@en ; + rdfs:comment '''Identifies a gufo:EndurantType from which the material or comparative relation can be derived. The identified gufo:EndurantType should be a subclass of gufo:Aspect, more specifically a subclass of gufo:ExtrinsicAspect in the case of a gufo:MaterialRelationshipType, and a subclass of gufo:IntrinsicAspect in the case of a gufo:ComparativeRelationshipType. + +For example, "marriedWith" can be derived from "Marriage", "heavierThan" can be derived from "Weight". + +See Fonseca et al. (2019).'''@en ; + rdfs:domain [ + a owl:Class ; + owl:unionOf ( + gufo:ComparativeRelationshipType + gufo:MaterialRelationshipType + ) ; + ] ; + rdfs:range gufo:EndurantType ; + . + +gufo:isEventProperPartOf + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:subPropertyOf gufo:isProperPartOf ; + rdfs:label "isEventProperPartOf"@en ; + rdfs:comment """Identifies a gufo:Event of which the event is part. + +For example, Cristiano Ronaldo's penalty kick is an event proper part of the 2016 FIFA Club World Cup Final, having ocurred in the 60th minute of that match. That match is itself an event proper part of the 2016 FIFA Club World Cup. + +The match can be decomposed in different ways. For example, we can identify the participation of each player in the match (instances of gufo:Participation that are proper parts of the match) or decomposed the match using some temporal segmentation (each minute of the match, each of which is a proper part of the match). + +gufo:isEventProperPartOf is transitive."""@en ; + rdfs:domain gufo:Event ; + rdfs:range gufo:Event ; + . + +gufo:isObjectProperPartOf + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:subPropertyOf gufo:isProperPartOf ; + rdfs:label "isObjectProperPartOf"@en ; + rdfs:comment """Identifies a gufo:Object of which the object is a part. + +This is a general parthood relation between objects. Use the various sub-properties provided in order to represent specific types of parthood, each of which has specialized semantics (and different formal properties in this implementation, in particular, transitivity (Guizzardi, 2005, section 5.6)."""@en ; + rdfs:domain gufo:Object ; + rdfs:range gufo:Object ; + . + +gufo:isProperPartOf + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:label "isProperPartOf"@en ; + rdfs:comment """Identifies a whole of which the entity is a proper part. + +gufo:isProperPartOf is the most generic parthood relation in this implementation. Use the various sub-properties provided in order to represent specific types of parthood. + +Proper parthood (and each of its sub-properties) is asymmetric and irreflexive. Nevertheless, these characteristics are not declared in this implementation since that would violate rules of OWL 2 DL that guarantee decidability of reasoning. Instead, we have focused only on declaring transitivity where applicable. + +Note that gufo:isProperPartOf (as the most general notion of parthood) is transitive, although the various sub-properties may not be transitive."""@en ; + rdfs:domain owl:Thing ; + rdfs:range owl:Thing ; + . + +gufo:isSituationProperPartOf + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:isProperPartOf ; + rdfs:label "isSituationProperPartOf"@en ; + rdfs:comment """Identifies a gufo:Situation of which the situation is a part. + +Examples include: the situation in which John has influenza is part of the situation in which John has influenza and he is tired; the situation in which John is friends with Mary is part of the situation in which he is friends with Mary and Alice; the situation in which John is married to Alice is part of the situation in which John is married to Alice, while she works at the Free University of Bozen-Bolzano."""@en ; + rdfs:domain gufo:Situation ; + rdfs:range gufo:Situation ; + . + +gufo:isSubCollectionOf + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:subPropertyOf gufo:isObjectProperPartOf ; + rdfs:label "isSubCollectionOf"@en ; + rdfs:comment """Identifies a gufo:Collection of which the collection is a sub-collection. All members of the sub-collection are members of the identified super-collection. + +gufo:isSubCollectionOf is transitive (Guizzardi, 2005, p. 186). + +For parthood involving one or more varied collections, see gufo:standsInQualifiedParthood."""@en ; + rdfs:domain gufo:Collection ; + rdfs:range gufo:Collection ; + rdfs:seeAlso gufo:standsInQualifiedParthood ; + . + +gufo:isSubQuantityOf + a + owl:ObjectProperty , + owl:TransitiveProperty + ; + rdfs:subPropertyOf gufo:isObjectProperPartOf ; + rdfs:label "isSubQuantityOf"@en ; + rdfs:comment """Identifies a gufo:Quantity of which the quantity is a part. + +For example, the quantity of water in a wine glass is a sub-quantity of the wine in that glass. + +gufo:isSubQuantityOf is transitive (Guizzardi, 2005, p. 184). + +Sub-quantities are always essential parts of their wholes. Thus, gufo:standsInQualifiedParthood is not applicable for sub-quantities."""@en ; + rdfs:domain gufo:Quantity ; + rdfs:range gufo:Quantity ; + . + +gufo:manifestedIn + a owl:ObjectProperty ; + rdfs:label "manifestedIn"@en ; + rdfs:comment """Identifies a gufo:Event in which the gufo:Aspect is manifested. + +For example, the passing of an electrical current in a conductor is an event that encompasses the manifestation of an aspect inhering in a copper wire (the wire's electrical conductivity)."""@en ; + rdfs:domain gufo:Aspect ; + rdfs:range gufo:Event ; + . + +gufo:mediates + a + owl:ObjectProperty , + owl:AsymmetricProperty , + owl:IrreflexiveProperty + ; + rdfs:label "mediates"@en ; + rdfs:comment """Identifies the endurants mediated by a gufo:Relator. + +For example, John and Mary's marriage mediates John and Mary."""@en ; + rdfs:domain gufo:Relator ; + rdfs:range gufo:Endurant ; + . + +gufo:participatedIn + a owl:ObjectProperty ; + rdfs:label "participatedIn"@en ; + rdfs:comment """Identifies a gufo:Event in which the gufo:Object participated. + +Examples include the participation of Freddy Mercury in Queen's Live Aid Concert and the participation of an airplane in a flight."""@en ; + rdfs:domain gufo:Object ; + rdfs:range gufo:Event ; + . + +gufo:partitions + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:categorizes ; + rdfs:label "partitions"@en ; + rdfs:comment '''Identifies a gufo:Type whose instances are classified by exactly one instance of the partitioning higher-order type. + +For example, "AnimalSpecies" gufo:partitions "Animal". Instances of "AnimalSpecies" such as "Lion", "Hiena" must be disjoint subclasses of "Animal". OWL 2 punning should be used to capture the two facets of "Lion" and "Hiena" in this example: (i) as instances of "AnimalSpecies", and (ii) as subclasses of "Animal". + +Note that the partitioned type (in the example "Animal") may or may not be declared to be a disjoint union of the explicitly enumerated subclasses (such as "Lion", "Hiena"). This is because other instances of the higher-order type ("AnimalSpecies") may exist that are not explicitly enumerated in the ontology. + +The partitioned type is termed the "base type" in the "powertype pattern" see Carvalho et al (2017), the higher-order type is often called the "powertype". + +For further details and formalization of "partitioning", see Carvalho et al (2017) which combines UFO with MLT (a multi-level modeling theory). + +V. A. Carvalho, J. P. A. Almeida, C. M. Fonseca, and G. Guizzardi, “Multi-level ontology-based conceptual modeling,” Data & Knowledge Engineering, vol. 109, p. 3–24, 2017. '''@en ; + rdfs:domain [ + a owl:Class ; + owl:intersectionOf ( + gufo:Type + [ + a owl:Class ; + owl:complementOf gufo:AbstractIndividualType ; + ] + [ + a owl:Class ; + owl:complementOf gufo:ConcreteIndividualType ; + ] + ) ; + ] ; + . + +gufo:standsIn + a owl:ObjectProperty ; + rdfs:label "standsIn"@en ; + rdfs:comment """Identifies a gufo:Situation in which the entity stands. + +This implementation includes sub-properties of gufo:standsIn to identify situations concerning the attribution of (mutable) values to qualities, variable relationships, the instantiation of non-contingent types, temporary parthood and temporary constitution."""@en ; + rdfs:domain owl:Thing ; + rdfs:range gufo:Situation ; + . + +gufo:standsInQualifiedAttribution + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:standsIn ; + rdfs:label "standsInQualifiedAttribution"@en ; + rdfs:comment "Identifies a gufo:QualityValueAttributionSituation in which the endurant stands. The identified gufo:QualityValueAttributionSituation is then used with the gufo:concernsQualityValue data property or the gufo:concernsReifiedQualityValue object property to indicate a quality value attributed to the gufo:Endurant standing in the situation. This forms a pattern to represent that quality values may differ in different situations."@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:QualityValueAttributionSituation ; + rdfs:seeAlso gufo:QualityValueAttributionSituation ; + . + +gufo:standsInQualifiedConstitution + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:standsIn ; + rdfs:label "standsInQualifiedConstitution"@en ; + rdfs:comment """Identifies a gufo:TemporaryConstitutionSituation in which an endurant stands temporarily (as a constituent). The identified gufo:TemporaryConstitutionSituation is further related with an endurant (the whole) through the gufo:concernsConstitutedEndurant object property. This forms a pattern to represent temporary constitution, in which the relationships between constituents and constituted endurant vary in different situations. + +Consider, for example, a group of people (understood as a gufo:FixedCollection) constituting a band (understood as a gufo:FunctionalComplex). In this case, any change in the membership of the group (e.g., the replacement of one person) creates a different group of people. Therefore, the band's constitution can change in time, and the pattern using gufo:TemporaryConstitutionSituation is applicable."""@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:TemporaryConstitutionSituation ; + rdfs:seeAlso gufo:TemporaryConstitutionSituation ; + . + +gufo:standsInQualifiedInstantiation + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:standsIn ; + rdfs:label "standsInQualifiedInstantiation"@en ; + rdfs:comment "Identifies a gufo:TemporaryInstantiationSituation in which the endurant stands. The identified gufo:TemporaryInstantiationSituation is further related with a gufo:NonRigidType through the gufo:concernsNonRigidType object property. This forms a pattern to represent the contigent instantiation of a non-rigid type by the endurant, in which case instantiation may vary in different situations."@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:TemporaryInstantiationSituation ; + rdfs:seeAlso gufo:TemporaryInstantiationSituation ; + . + +gufo:standsInQualifiedParthood + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:standsIn ; + rdfs:label "standsInQualifiedParthood"@en ; + rdfs:comment "Identifies a gufo:TemporaryParthoodSituation in which the endurant stands (as a temporary part). The identified gufo:TemporaryParthoodSituation is further related with an endurant (the whole) through the gufo:concernsTemporaryWhole object property. This forms a pattern to represent temporary parthood, in which the relationships between parts and wholes vary in different situations. In particular, this pattern is useful in case parts may be separated from their wholes, attached to other wholes, replaced."@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:TemporaryParthoodSituation ; + rdfs:seeAlso gufo:TemporaryParthoodSituation ; + . + +gufo:standsInQualifiedRelationship + a owl:ObjectProperty ; + rdfs:subPropertyOf gufo:standsIn ; + rdfs:label "standsInQualifiedRelationship"@en ; + rdfs:comment '''Identifies a gufo:TemporaryRelationshipSituation in which the endurant stands. The identified gufo:TemporaryRelationshipSituation is then used with the gufo:concernsRelatedEndurant and the gufo:concernsRelationshipType object properties to indicate the related element and the type of relationship that applies. This forms a pattern to represent that relationships that may change in different situations. For example, "heavierThan" may change when the objects involved gain or lose weight. + +For material relations, prefer the use of gufo:Relator.'''@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:TemporaryRelationshipSituation ; + rdfs:seeAlso + gufo:Relator , + gufo:TemporaryRelationshipSituation + ; + . + +gufo:wasCreatedIn + a owl:ObjectProperty ; + rdfs:label "wasCreatedIn"@en ; + rdfs:comment '''Identifies the gufo:Event which brought the gufo:Endurant into existence. + +For example, a musical piece is created in an act of composition (or in an event that is part of it), a piece of legislation is created in a complex legislative process. + +Benevides et al. (2019) only discussed creation of objects; gufo:wasCreatedIn is extended to endurants in general. Further, in that work "createdBy" required the event to "bring about" a situation in which the created object is present. We relax this requirement here, such that the object may be created and terminated in the scope of the identified gufo:Event. + +A. B. Benevides, J. R. Bourguet, G. Guizzardi, R. Penãloza, and J. P. A. Almeida, “Representing a reference foundational ontology of events in SROIQ,” Applied ontology, vol. 14, iss. 3, p. 293–334, 2019. '''@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:Event ; + . + +gufo:wasTerminatedIn + a owl:ObjectProperty ; + rdfs:label "wasTerminatedIn"@en ; + rdfs:comment '''Identifies the gufo:Event in which the gufo:Endurant was brought to an end. + +For example, the Space Shuttle Challenger (OV-099) (a gufo:FunctionalComplex) was destroyed during the launch of its tenth flight (a gufo:Event). + +Benevides et al. (2019) only discussed termination of objects; gufo:wasCreatedIn is extended to endurants in general. This means that a gufo:Relator (such as a marriage) can be declared terminated. Further, in that work "terminatedBy" required the event to be "triggered" by a situation in which the terminated object is present. We relax this requirement here, such that the object may be created and terminated in the scope of the identified gufo:Event. + +A. B. Benevides, J. R. Bourguet, G. Guizzardi, R. Penãloza, and J. P. A. Almeida, “Representing a reference foundational ontology of events in SROIQ,” Applied ontology, vol. 14, iss. 3, p. 293–334, 2019. '''@en ; + rdfs:domain gufo:Endurant ; + rdfs:range gufo:Event ; + . + +vann:preferredNamespacePrefix + a owl:AnnotationProperty ; + . + +vann:preferredNamespaceUri + a owl:AnnotationProperty ; + . + +xsd:date + a rdfs:Datatype ; + . + +time:Instant a owl:Class ; - rdfs:subClassOf owl:Thing ; + rdfs:subClassOf gufo:AbstractIndividual ; + rdfs:label "Instant"@en ; + rdfs:comment "An gufo:AbstractIndividual that reifies time instants. It is used as a target of the gufo:hasBeginPoint and gufo:hasEndPoint object properties."@en ; + . + +[] + a owl:AllDisjointClasses ; + owl:members ( + gufo:Collection + gufo:FunctionalComplex + gufo:Quantity + ) ; + . + +[] + a owl:AllDisjointClasses ; + owl:members ( + gufo:Endurant + gufo:Event + gufo:Situation + ) ; . diff --git a/ontology/catalog-v001.xml b/ontology/catalog-v001.xml index 33718cd..7d5c6b9 100644 --- a/ontology/catalog-v001.xml +++ b/ontology/catalog-v001.xml @@ -1,5 +1,6 @@ + @@ -20,6 +21,5 @@ - - +