Merge pull request #217 from CommonCoreOntology/build-new-version-1.5

New release of CCO, v1.5-2024-02-14
This commit is contained in:
Mark Jensen
2024-02-14 12:36:03 -05:00
committed by GitHub
45 changed files with 30132 additions and 3644 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@
\build
*.py
*.rq
.DS_Store

View File

@@ -11,12 +11,12 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/AgentOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/AgentOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
dcterms:license <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent agents, especially persons and organizations, and their roles."@en ;
rdfs:label "Agent Ontology"@en ;
owl:versionInfo "Version 1.4"@en .
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
@@ -48,7 +48,7 @@ skos:prefLabel rdf:type owl:AnnotationProperty .
### http://www.ontologyrepository.com/CommonCoreOntologies/agent_in
cco:agent_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
owl:inverseOf cco:has_agent ;
cco:definition "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
@@ -68,7 +68,7 @@ cco:aggregate_has_capability rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/capability_of
cco:capability_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000052 ;
rdfs:subPropertyOf obo:BFO_0000197 ;
owl:inverseOf cco:has_capability ;
rdfs:domain cco:AgentCapability ;
rdfs:range cco:Agent ;
@@ -120,7 +120,7 @@ cco:has_affiliate rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_agent
cco:has_agent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
cco:definition "x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "has agent"@en .
@@ -152,7 +152,7 @@ cco:has_brother_in_law rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_capability
cco:has_capability rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000053 ;
rdfs:subPropertyOf obo:BFO_0000196 ;
rdfs:domain cco:Agent ;
rdfs:range cco:AgentCapability ;
cco:definition "x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y."@en ;
@@ -404,7 +404,7 @@ cco:has_paternal_uncle rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_recipient
cco:has_recipient rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
owl:inverseOf cco:receives ;
rdfs:range cco:Agent ;
cco:definition "x has_recipient y iff y is an instance of Agent and x is an instance of Act Of Communication, such that y is the recipient and decoder of the InformationContentEntity intended for communication in x."@en ;
@@ -414,7 +414,7 @@ cco:has_recipient rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_sender
cco:has_sender rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
owl:inverseOf cco:sends ;
rdfs:range cco:Agent ;
cco:definition "y has_sender x iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ;
@@ -695,9 +695,9 @@ cco:is_husband_of rdf:type owl:ObjectProperty ;
cco:is_in_law_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_familial_relationship_to ;
owl:inverseOf cco:is_in_law_of ;
rdf:type owl:SymmetricProperty ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "is in-law of"@en .
rdfs:label "is in-law of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_interest_of
@@ -836,39 +836,36 @@ cco:is_paternal_uncle_of rdf:type owl:ObjectProperty ;
cco:is_permitted_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribed_by ;
owl:inverseOf cco:permits ;
rdf:type owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range cco:ActionRegulation ;
cco:definition "y is_permitted_by x at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent may be agent in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "is permitted by"@en .
rdfs:label "is permitted by"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_prohibited_by
cco:is_prohibited_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribed_by ;
owl:inverseOf cco:prohibits ;
rdf:type owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range cco:ActionRegulation ;
cco:definition "y is_prohibited_by y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must not be agent in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "is prohibited by"@en .
rdfs:label "is prohibited by"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_required_by
cco:is_required_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribed_by ;
owl:inverseOf cco:requires ;
rdf:type owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range cco:ActionRegulation ;
cco:definition "y is_required_by x at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must be agent in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "is required by"@en .
rdfs:label "is required by"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_second_cousin_of
@@ -921,9 +918,9 @@ cco:is_son_of rdf:type owl:ObjectProperty ;
cco:is_spouse_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_familial_relationship_to ;
owl:inverseOf cco:is_spouse_of ;
rdf:type owl:SymmetricProperty ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "is spouse of"@en .
rdfs:label "is spouse of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_step_brother_of
@@ -937,9 +934,9 @@ cco:is_step_brother_of rdf:type owl:ObjectProperty ;
cco:is_step_sibling_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_familial_relationship_to ;
owl:inverseOf cco:is_step_sibling_of ;
rdf:type owl:SymmetricProperty ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "is step-sibling of"@en .
rdfs:label "is step-sibling of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_step_sister_of
@@ -1015,30 +1012,28 @@ cco:is_wife_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/permits
cco:permits rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribes ;
rdf:type owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain cco:ActionRegulation ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x permits y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent may be agent in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "permits"@en .
rdfs:label "permits"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/prohibits
cco:prohibits rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribes ;
rdf:type owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain cco:ActionRegulation ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x prohibits y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must not be agent in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "prohibits"@en .
rdfs:label "prohibits"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/receives
cco:receives rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
rdfs:domain cco:Agent ;
cco:definition "x receives y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the recipient and decoder of the InformationContentEntity intended for communication in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
@@ -1048,18 +1043,17 @@ cco:receives rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/requires
cco:requires rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribes ;
rdf:type owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain cco:ActionRegulation ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x requires y at t iff: x is an instance of Action Regulation at time t, and y is an instance of Act at time t, and x prescribes that some agent must be agent in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "requires"@en .
rdfs:label "requires"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/sends
cco:sends rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
rdfs:domain cco:Agent ;
cco:definition "x sends y iff x is an instance of Agent and y is an instance of Act Of Communication, such that x is the initiator and encoder of the InformationContentEntity intended for communication in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
@@ -1193,7 +1187,7 @@ cco:AllegianceRole rdf:type owl:Class ;
cco:AlliedPerson rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Person
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:AllyRole
]
) ;
@@ -1271,7 +1265,7 @@ cco:CarrierAirWing rdf:type owl:Class ;
cco:Citizen rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Person
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:CitizenRole
]
) ;
@@ -1305,7 +1299,7 @@ cco:City rdf:type owl:Class ;
cco:CivilOrganization rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Organization
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:CivilianRole
]
) ;
@@ -1329,7 +1323,7 @@ cco:CivilianRole rdf:type owl:Class ;
cco:CommercialOrganization rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Organization
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:CommercialRole
]
) ;
@@ -1429,7 +1423,7 @@ cco:Disease rdf:type owl:Class ;
cco:DivisonOfGeopoliticalEntity rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialRegion ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:DelimitingDomain
] ;
cco:definition "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ;
@@ -1452,7 +1446,7 @@ cco:EducationalOrganization rdf:type owl:Class ;
cco:Enemy rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Person
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:EnemyRole
]
) ;
@@ -1506,7 +1500,7 @@ cco:Eye rdf:type owl:Class ;
cco:EyeColor rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000019 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:Iris
] ;
cco:definition "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."@en ;
@@ -1560,7 +1554,7 @@ cco:FinancialValueOfProperty rdf:type owl:Class ;
cco:FirstOrderAdministrativeRegion rdf:type owl:Class ;
rdfs:subClassOf cco:GeopoliticalEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:Country
] ;
cco:definition "A Government Domain that is a primary administrative division of a Country."@en ;
@@ -1574,7 +1568,7 @@ cco:FirstOrderAdministrativeRegion rdf:type owl:Class ;
cco:FourthOrderAdministrativeRegion rdf:type owl:Class ;
rdfs:subClassOf cco:GeopoliticalEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:ThirdOrderAdministrativeRegion
] ;
cco:definition "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ;
@@ -1612,7 +1606,7 @@ cco:GeopoliticalEntityBorder rdf:type owl:Class ;
cco:GeopoliticalOrganization rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Organization
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000053 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:GeopoliticalPowerRole
]
) ;
@@ -1635,7 +1629,7 @@ cco:GeopoliticalOrganization rdf:type owl:Class ;
cco:GeopoliticalPowerRole rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000023 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:Organization
] ;
dcterms:bibliographicCitation "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ;
@@ -1668,7 +1662,7 @@ cco:Government rdf:type owl:Class ;
cco:GovernmentAgency rdf:type owl:Class ;
rdfs:subClassOf cco:Organization ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:Government
] ;
cco:definition "An Organization that is part of a Government and is responsible for the oversight and administration of specific governmental functions."@en ;
@@ -1701,11 +1695,11 @@ cco:GovernmentOfACountry rdf:type owl:Class ;
cco:GroupOfAgents rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000027 ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0002351 ;
owl:onProperty obo:BFO_0000115 ;
owl:someValuesFrom cco:Agent
]
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0002351 ;
owl:onProperty obo:BFO_0000115 ;
owl:allValuesFrom cco:Agent
]
) ;
@@ -1720,11 +1714,11 @@ cco:GroupOfAgents rdf:type owl:Class ;
cco:GroupOfOrganizations rdf:type owl:Class ;
rdfs:subClassOf cco:GroupOfAgents ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:Organization
] ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:allValuesFrom cco:Organization
] ;
cco:definition "A Group of Agents that has only Organizations as parts."@en ;
@@ -1736,11 +1730,11 @@ cco:GroupOfOrganizations rdf:type owl:Class ;
cco:GroupOfPersons rdf:type owl:Class ;
rdfs:subClassOf cco:GroupOfAgents ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:Person
] ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:allValuesFrom cco:Person
] ;
cco:definition "A Group of Agents that has only Persons as parts."@en ;
@@ -1799,7 +1793,7 @@ cco:InterpersonalRelationshipRole rdf:type owl:Class ;
cco:Iris rdf:type owl:Class ;
rdfs:subClassOf cco:BodilyComponent ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:Eye
] ;
cco:definition "A Bodily Component that consists of the part of an Eye that is a pigmented, round, contractile membrane, suspended between the cornea and lens and perforated by the pupil, and which canonically regulates the amount of light entering the Eye."@en ;
@@ -1838,7 +1832,7 @@ cco:MaleSex rdf:type owl:Class ;
cco:MaterialTerritoryOfACountry rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:MaterialTerritoryOfAGovernmentDomain
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0001018 ;
owl:onProperty obo:BFO_0000171 ;
owl:someValuesFrom cco:Country
]
) ;
@@ -1858,7 +1852,7 @@ cco:MaterialTerritoryOfACountry rdf:type owl:Class ;
cco:MaterialTerritoryOfAGovernmentDomain rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:PortionOfGeosphere
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0001018 ;
owl:onProperty obo:BFO_0000171 ;
owl:someValuesFrom cco:GeopoliticalEntity
]
) ;
@@ -1974,7 +1968,7 @@ cco:OrganizationCapability rdf:type owl:Class ;
cco:OrganizationMember rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Person
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:OrganizationMemberRole
]
) ;
@@ -2011,7 +2005,7 @@ cco:ParamilitaryForce rdf:type owl:Class ;
cco:PermanentResident rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Person
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:PermanentResidentRole
]
) ;
@@ -2053,7 +2047,7 @@ cco:Person rdf:type owl:Class ;
cco:PlanSpecification rdf:type owl:Class ;
rdfs:subClassOf cco:DirectiveInformationContentEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:Objective
] ;
cco:definition "A Directive Information Content Entity that prescribes some set of intended Intentional Acts through which some Agent expects to achieve some Objective."@en ;
@@ -2135,7 +2129,7 @@ cco:Scar rdf:type owl:Class ;
cco:SecondOrderAdministrativeRegion rdf:type owl:Class ;
rdfs:subClassOf cco:GeopoliticalEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:FirstOrderAdministrativeRegion
] ;
cco:definition "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ;
@@ -2157,7 +2151,7 @@ cco:ServiceProvider rdf:type owl:Class ;
cco:SetOfEyes rdf:type owl:Class ;
rdfs:subClassOf cco:BodilyComponent ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:Eye
] ;
cco:definition "A Bodily Component that consists of two or more Eyes that are part of a single Agent."@en ;
@@ -2221,7 +2215,7 @@ cco:Tattoo rdf:type owl:Class ;
cco:ThirdOrderAdministrativeRegion rdf:type owl:Class ;
rdfs:subClassOf cco:GeopoliticalEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:SecondOrderAdministrativeRegion
] ;
cco:definition "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ;
@@ -2243,7 +2237,7 @@ cco:Town rdf:type owl:Class ;
cco:UnalliedPerson rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:Person
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:NeutralRole
]
) ;

View File

@@ -9,16 +9,16 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AllCoreOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AllCoreOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/AllCoreOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology> ,
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/AllCoreOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology> ;
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "An import of all the Common Core mid-level ontologies into a single file so that content is easy to view. The All Core Ontology is not an ontology in the sense it contains no unique content. As such it should not be added to, but can be extended from."@en ;
rdfs:label "All Core Ontology"@en ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionInfo "Version 1.4"@en .
owl:versionInfo "Version 1.5"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -9,12 +9,20 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/ArtifactOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/ArtifactOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent artifacts that are common to multiple domains along with their models, specifications, and functions."@en ;
rdfs:label "Artifact Ontology"@en ;
owl:versionInfo "Version 1.4"@en ;
rdfs:comment "This ontology is designed to represent artifacts that are common to multiple domains along with their models, specifications, and functions."@en .
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000116
obo:IAO_0000116 rdf:type owl:AnnotationProperty .
#################################################################
# Classes
@@ -199,7 +207,7 @@ cco:ArtifactDimensionSpecification rdf:type owl:Class ;
cco:ArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000034 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:Artifact
] ;
cco:definition "A Function that inheres in some Artifact in virtue of that Artifact being designed to be used in processes that require that Function to be realized."@en ;
@@ -251,7 +259,7 @@ cco:ArtifactIdentifier rdf:type owl:Class ;
cco:ArtifactLocation rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000029
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0001015 ;
owl:onProperty obo:BFO_0000124 ;
owl:someValuesFrom cco:Artifact
]
) ;
@@ -1492,7 +1500,7 @@ cco:ExternalNavigationLightingSystem rdf:type owl:Class ;
cco:Facility rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0001025 ;
owl:onProperty obo:BFO_0000171 ;
owl:someValuesFrom cco:PortionOfGeosphere
] ;
cco:definition "A Material Artifact that is designed as a building or campus dedicated to some specific purpose."@en ;
@@ -2143,12 +2151,12 @@ cco:InfantryFightingVehicle rdf:type owl:Class ;
cco:InformationBearingArtifact rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:someValuesFrom cco:InformationMediumArtifact
owl:onProperty obo:BFO_0000101 ;
owl:someValuesFrom cco:InformationContentEntity
] ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0010002 ;
owl:someValuesFrom cco:InformationContentEntity
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:InformationMediumArtifact
] ;
cco:definition "A Material Artifact that carries an Information Content Entity and is designed to do so using a particular format or structure."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
@@ -2218,7 +2226,7 @@ cco:Infrastructure rdf:type owl:Class ;
cco:InfrastructureElement rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000040
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000053 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom cco:InfrastructureRole
]
) ;
@@ -2972,7 +2980,7 @@ cco:Payload rdf:type owl:Class ;
cco:PayloadCapacity rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:Vehicle
] ;
cco:definition "An Artifact Function that inheres in a Vehicle that is designed to transport Payload, and which is typically characterized by the maximum Weight, Mass, or Volume of Payload that the Vehicle can transport."@en ;
@@ -4080,7 +4088,7 @@ cco:SensorDeploymentArtifactFunction rdf:type owl:Class ;
cco:SensorModalityFunction rdf:type owl:Class ;
rdfs:subClassOf cco:SensorArtifactFunction ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:Sensor
] ;
cco:definition "A Sensor Artifact Function that inheres in some Sensor in virtue of the type of energy the Sensor is capable of converting into an output signal."@en ;
@@ -4440,7 +4448,7 @@ cco:TelecommunicationNetworkLine rdf:type owl:Class ;
cco:TelecommunicationNetworkNode rdf:type owl:Class ;
rdfs:subClassOf cco:CommunicationInstrument ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:TelecommunicationNetwork
] ;
cco:definition "A Communication Artifact that consists of a connection point, redistribution point, or endpoint that is designed to be part of a Telecommunication Network and can be either active or passive."@en ;
@@ -5017,15 +5025,7 @@ cco:WiredCommunicationReceptionArtifactFunction rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationRelayArtifactFunction
cco:WiredCommunicationRelayArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:CommunicationRelayArtifactFunction ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:someValuesFrom cco:RadioCommunicationArtifactFunction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:someValuesFrom cco:RadioCommunicationReceptionArtifactFunction
] ;
rdfs:subClassOf cco:CommunicationRelayArtifactFunction ;
cco:definition "A Communication Relay Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information by means of wires from one Artifact to another for the purpose of communiction."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Wired Communication Relay Artifact Function"@en .
@@ -5059,4 +5059,4 @@ cco:XRayTelescope rdf:type owl:Class ;
rdfs:label "X-ray Telescope"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -9,12 +9,12 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/CurrencyUnitOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/CurrencyUnitOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionInfo "Version 1.4"@en ;
rdfs:comment "This ontology is designed to represent currencies that are issued and used by countries."@en ;
rdfs:label "Currency Unit Ontology"@en .
rdfs:label "Currency Unit Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Classes
@@ -929,4 +929,4 @@ cco:ZambiaKwacha rdf:type owl:NamedIndividual ,
rdfs:label "Zambia Kwacha"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -9,40 +9,27 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/EventOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/EventOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionInfo "Version 1.4"@en ;
rdfs:comment "This ontology is designed to represent processual entities, especially those performed by agents, that occur within multiple domains."@en ;
rdfs:label "Event Ontology"@en .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by
cco:process_preceded_by rdf:type owl:ObjectProperty ;
owl:inverseOf cco:process_precedes ;
cco:definition "p1 preceded_by p2 if and only if p1 and p2 are instances of processes, and t1 and t2 are instances of temporal regions, and p1 occurs_on t1, and p2 occurs_on t2, and t2 interval_is_before t1 or t2 interval_meets t1."@en ;
cco:definition_source "Derived from the deprecated http://www.obofoundry.org/ro/ro.owl#preceded_by" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "process preceded by"@en ;
rdfs:seeAlso "http://purl.obolibrary.org/obo/BFO_0000062" .
### http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes
cco:process_precedes rdf:type owl:ObjectProperty ;
cco:definition "p1 process_precedes p2 if and only if p1 and p2 are instances of processes, and t1 and t2 are instances of temporal regions, and p1 occurs_on t1, and p2 occurs_on t2, and t1 interval_is_before t2 or t1 interval_meets t2."@en ;
cco:definition_source "Derived from the deprecated http://www.obofoundry.org/ro/ro.owl#precedes" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "process precedes"@en ;
rdfs:seeAlso "http://purl.obolibrary.org/obo/BFO_0000063" .
rdfs:label "Event Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Classes
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000144
obo:BFO_0000144 rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000003 ;
cco:definition "An occurrent that is an occurrent part of some process by virtue of the rate, or pattern, or amplitude of change in an attribute of one or more participants of said process."@en ;
cco:elucidation "b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"@en ;
cco:example_of_usage "On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels; One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of Johns heart, or the 120 beats per minute drumming process involved in one of Johns performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.; The simplest type of process profiles are what we shall call quality process profiles, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Process Profile"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Acceleration
cco:Acceleration rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000144 ,
@@ -1473,7 +1460,7 @@ cco:Effect rdf:type owl:Class ;
cco:EffectOfLocationChange rdf:type owl:Class ;
rdfs:subClassOf cco:Effect ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000132 ;
owl:someValuesFrom cco:ActOfLocationChange
] ,
[ rdf:type owl:Restriction ;
@@ -1681,10 +1668,10 @@ cco:GainOfDependentContinuant rdf:type owl:Class ;
cco:GainOfDisposition rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfRealizableEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000091 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom obo:BFO_0000016
]
) ;
@@ -1701,10 +1688,10 @@ cco:GainOfDisposition rdf:type owl:Class ;
cco:GainOfFunction rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfRealizableEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000085 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom obo:BFO_0000034
]
) ;
@@ -1721,10 +1708,10 @@ cco:GainOfFunction rdf:type owl:Class ;
cco:GainOfGenericallyDependentContinuant rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfDependentContinuant ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0010002 ;
owl:onProperty obo:BFO_0000101 ;
owl:someValuesFrom obo:BFO_0000031
]
) ;
@@ -1741,10 +1728,10 @@ cco:GainOfGenericallyDependentContinuant rdf:type owl:Class ;
cco:GainOfQuality rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfSpecificallyDependentContinuant ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000086 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom obo:BFO_0000019
]
) ;
@@ -1761,10 +1748,10 @@ cco:GainOfQuality rdf:type owl:Class ;
cco:GainOfRealizableEntity rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfSpecificallyDependentContinuant ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000053 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom obo:BFO_0000017
]
) ;
@@ -1781,10 +1768,10 @@ cco:GainOfRealizableEntity rdf:type owl:Class ;
cco:GainOfRole rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfRealizableEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000087 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom obo:BFO_0000023
]
) ;
@@ -1801,10 +1788,10 @@ cco:GainOfRole rdf:type owl:Class ;
cco:GainOfSpecificallyDependentContinuant rdf:type owl:Class ;
rdfs:subClassOf cco:GainOfDependentContinuant ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000057 ;
owl:onProperty obo:BFO_0000057 ;
owl:someValuesFrom [ owl:intersectionOf ( obo:BFO_0000004
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000053 ;
owl:onProperty obo:BFO_0000196 ;
owl:someValuesFrom obo:BFO_0000020
]
) ;
@@ -3025,12 +3012,12 @@ cco:WaveCycle rdf:type owl:Class ;
cco:WaveProcess rdf:type owl:Class ;
rdfs:subClassOf cco:NaturalProcess ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:has_process_part ;
owl:someValuesFrom cco:WaveProcessProfile
owl:onProperty obo:BFO_0000062 ;
owl:someValuesFrom cco:WaveProduction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:process_preceded_by ;
owl:someValuesFrom cco:WaveProduction
owl:onProperty cco:has_process_part ;
owl:someValuesFrom cco:WaveProcessProfile
] ;
cco:definition "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Wave&oldid=1062648180"^^xsd:anyURI ;
@@ -3128,4 +3115,4 @@ cco:XrayFrequency rdf:type owl:Class ;
rdfs:label "X-ray Frequency"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -5,24 +5,35 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/ExtendedRelationOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport> ,
obo:bfo.owl ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/ExtendedRelationOntology> ;
owl:imports obo:bfo ;
dcterms:license <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent many of the relations (i.e. object properties) that hold between entities at the level of the mid-level Common Core Ontologies."@en ;
rdfs:label "Extended Relation Ontology"@en ;
owl:versionInfo "Version 1.4"@en .
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/created
dcterms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://www.ontologyrepository.com/CommonCoreOntologies/acronym
cco:acronym rdf:type owl:AnnotationProperty ;
cco:definition "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ;
@@ -44,32 +55,6 @@ cco:code_license rdf:type owl:AnnotationProperty ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "code license"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_disrupted_by
cco:is_disrupted_by rdf:type owl:ObjectProperty ;
dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ;
owl:inverseOf cco:disrupts ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "Inverse of disrupts." ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is disrupted by"@en ;
skos:prefLabel "is disrupted by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/disrupts
cco:disrupts rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_disrupted_by ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:definition "A relation where one process disrupts another process from occurring as it would have."@en ;
cco:elucidation "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "disrupts"@en ;
skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ;
skos:prefLabel "disrupts"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/content_license
cco:content_license rdf:type owl:AnnotationProperty ;
@@ -243,13 +228,21 @@ cco:term_editor rdf:type owl:AnnotationProperty ;
rdfs:label "term editor"@en .
### http://www.w3.org/2004/02/skos/core#editorialNote
skos:editorialNote rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000199
obo:BFO_0000199 owl:inverseOf cco:is_temporal_region_of .
### http://www.ontologyrepository.com/CommonCoreOntologies/accessory_in
cco:accessory_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
owl:inverseOf cco:has_accessory ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000015 ;
@@ -261,7 +254,7 @@ cco:accessory_in rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/accomplice_in
cco:accomplice_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
owl:inverseOf cco:has_accomplice ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000015 ;
@@ -273,7 +266,7 @@ cco:accomplice_in rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/affects
cco:affects rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
owl:inverseOf cco:is_affected_by ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000002 ;
@@ -347,9 +340,24 @@ cco:disposition_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:label "disposition of aggregate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/disrupts
cco:disrupts rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_disrupted_by ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:definition "A relation where one process disrupts another process from occurring as it would have."@en ;
cco:elucidation "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ;
rdfs:label "disrupts"@en ;
skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ;
skos:prefLabel "disrupts"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_accessory
cco:has_accessory rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000040 ;
cco:definition "x has_accessory y iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ;
@@ -360,7 +368,7 @@ cco:has_accessory rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_accomplice
cco:has_accomplice rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000040 ;
cco:definition "A Processual Entity p1 has_accomplice some agent a1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ;
@@ -371,7 +379,7 @@ cco:has_accomplice rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_input
cco:has_input rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
owl:inverseOf cco:is_input_of ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000002 ;
@@ -391,7 +399,7 @@ cco:has_member_of_located_in rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_object
cco:has_object rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
owl:inverseOf cco:is_object_of ;
cco:definition "If p is a process and c is a continuant, then p has object c if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
@@ -400,7 +408,7 @@ cco:has_object rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_output
cco:has_output rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
rdfs:subPropertyOf obo:BFO_0000057 ;
owl:inverseOf cco:is_output_of ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000002 ;
@@ -412,7 +420,7 @@ cco:has_output rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/has_process_part
cco:has_process_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000051 ;
rdfs:subPropertyOf obo:BFO_0000117 ;
owl:inverseOf cco:is_part_of_process ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
@@ -436,7 +444,7 @@ cco:inheres_in_aggregate rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_affected_by
cco:is_affected_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "c is_affected_by p iff p is an instance of a Process and c is an instance of a Continuant, such that p influences c in some manner, most often by producing a change in c."@en ;
@@ -453,9 +461,21 @@ cco:is_cause_of rdf:type owl:ObjectProperty ;
rdfs:label "is cause of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_disrupted_by
cco:is_disrupted_by rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:definition "Inverse of disrupts." ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is disrupted by"@en ;
skos:prefLabel "is disrupted by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_input_of
cco:is_input_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ;
@@ -485,7 +505,7 @@ cco:is_material_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_object_of
cco:is_object_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
cco:definition "If p is a process and c is a continuant, then c is object of p if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is object of"@en .
@@ -493,7 +513,7 @@ cco:is_object_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_output_of
cco:is_output_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:subPropertyOf obo:BFO_0000056 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ;
@@ -503,7 +523,7 @@ cco:is_output_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_part_of_process
cco:is_part_of_process rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000050 ;
rdfs:subPropertyOf obo:BFO_0000132 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y."@en ;
@@ -524,13 +544,9 @@ cco:is_predecessor_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of
cco:is_site_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000067 ;
rdfs:subPropertyOf obo:BFO_0000183 ;
owl:inverseOf cco:occurs_at ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000006
obo:BFO_0000029
)
] ;
rdfs:domain obo:BFO_0000029 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
@@ -548,37 +564,28 @@ cco:is_successor_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of
cco:is_temporal_region_of rdf:type owl:ObjectProperty ;
owl:inverseOf cco:occurs_on ;
rdfs:domain obo:BFO_0000008 ;
rdfs:range obo:BFO_0000015 ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000015
obo:BFO_0000035
)
] ;
cco:definition "x is_temporal_region_of y iff y is an instance of a process or process boundary and x is an instance of a temporal region, such that the duration of x temporally projects on y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is temporal region of"@en .
rdfs:label "is temporal region of"@en ;
skos:editorialNote "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/occurs_at
cco:occurs_at rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000066 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000006
obo:BFO_0000029
)
] ;
rdfs:range obo:BFO_0000029 ;
cco:definition "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "occurs at"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on
cco:occurs_on rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000008 ;
cco:definition "x occurs_on y iff x is an instance of a process or process boundary and y is an instance of a temporal region, such that the duration of x temporally projects on y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "occurs on"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/process_started_by
cco:process_started_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:caused_by ;
@@ -618,4 +625,4 @@ cco:role_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:label "role of aggregate"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -9,12 +9,12 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/FacilityOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/FacilityOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent buildings and campuses that are designed to serve some specific purpose and which are common to multiple domains."@en ;
rdfs:label "Facility Ontology"@en ;
owl:versionInfo "Version 1.4"@en .
owl:versionInfo "Version 1.5"@en .
#################################################################
# Classes
@@ -842,4 +842,4 @@ cco:WindFarm rdf:type owl:Class ;
rdfs:label "Wind Farm"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -11,13 +11,12 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/GeospatialOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/GeospatialOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology> ;
dcterms:license <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent sites, spatial regions, and other entities, especially those that are located near the surface of Earth, as well as the relations that hold between them."@en ;
rdfs:label "Geospatial Ontology"@en ;
owl:versionInfo "Version 1.4"@en .
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
@@ -42,65 +41,62 @@ skos:prefLabel rdf:type owl:AnnotationProperty .
### http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with
cco:coincides_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdf:type owl:SymmetricProperty ,
owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 coincides with some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is a spatial part of im1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "coincides with"@en .
rdfs:label "coincides with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/connected_with
cco:connected_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdf:type owl:SymmetricProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "connected with"@en .
rdfs:label "connected with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/disconnected_with
cco:disconnected_with rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
cco:disconnected_with rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is disconnected with some immaterial entity im2 iff there does not exist some immaterial entity im3 that is common to both im1 and im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "disconnected with"@en .
rdfs:label "disconnected with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/externally_connects_with
cco:externally_connects_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdf:type owl:SymmetricProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 externally connects with some immaterial entity im2 iff im1 connects with im2 and im1 does not overlap with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "externally connects with"@en .
rdfs:label "externally connects with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_part
cco:has_nontangential_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_spatial_part ;
owl:inverseOf cco:nontangential_part_of ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "x has_nontangential_part y iff x and y are instances of Immaterial Entity, and x has_spatial_part y, such that there does not exist another instance of an Immaterial Entity which externally connects with both x and y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has nontangential part"@en .
rdfs:label "has nontangential part"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part
cco:has_spatial_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000051 ,
rdfs:subPropertyOf obo:BFO_0000178 ,
cco:connected_with ;
owl:inverseOf cco:spatial_part_of ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ;
@@ -112,41 +108,40 @@ cco:has_spatial_part rdf:type owl:ObjectProperty ;
cco:has_tangential_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_spatial_part ;
owl:inverseOf cco:tangential_part_of ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "x has_tangential_part y iff x, y, and z are instances of Immaterial Entity, and x has_spatial_part y, such that z externally connects with both x and y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has tangential part"@en .
rdfs:label "has tangential part"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/nontangential_part_of
cco:nontangential_part_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:spatial_part_of ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is a nontangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there does not exist an immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "nontangential part of"@en .
rdfs:label "nontangential part of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/partially_overlaps_with
cco:partially_overlaps_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdf:type owl:SymmetricProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 partially overlaps with some immaterial entity im2 iff im1 overlaps with im2 and im1 is not a spatial part of im2 and im2 is not a spatial part of im1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "partially overlaps with"@en .
rdfs:label "partially overlaps with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of
cco:spatial_part_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000050 ,
rdfs:subPropertyOf obo:BFO_0000176 ,
cco:connected_with ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ;
@@ -158,12 +153,12 @@ cco:spatial_part_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/tangential_part_of
cco:tangential_part_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:spatial_part_of ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is a tangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there exists some immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "tangential part of"@en .
rdfs:label "tangential part of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
#################################################################
@@ -237,7 +232,7 @@ cco:AxisOfRotation rdf:type owl:Class ;
cco:BoundingBoxPoint rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:GeospatialPosition
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:GeospatialRegionBoundingBox
]
) ;
@@ -258,8 +253,6 @@ cco:CenterOfMass rdf:type owl:Class ;
rdfs:label "Center of Mass"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ConstructedFeature
cco:ConstructedFeature rdf:type owl:Class ;
rdfs:subClassOf cco:AnthropogenicFeature ;
@@ -285,20 +278,6 @@ cco:CoordinateSystemAxis rdf:type owl:Class ;
rdfs:label "Coordinate System Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/EnvironmentalFeature
cco:EnvironmentalFeature rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000040 ;
@@ -307,12 +286,6 @@ cco:EnvironmentalFeature rdf:type owl:Class ;
rdfs:label "Environmental Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeographicFeature
cco:GeographicFeature rdf:type owl:Class ;
rdfs:subClassOf cco:EnvironmentalFeature ;
@@ -321,12 +294,6 @@ cco:GeographicFeature rdf:type owl:Class ;
rdfs:label "Geographic Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialBoundary
cco:GeospatialBoundary rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000142 ;
@@ -371,7 +338,7 @@ cco:GeospatialLineString rdf:type owl:Class ;
cco:GeospatialLocation rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialRegion ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0001015 ;
owl:onProperty obo:BFO_0000124 ;
owl:someValuesFrom obo:BFO_0000001
] ;
cco:definition "A Geospatial Region at which an Entity or Event is located."@en ;
@@ -405,11 +372,7 @@ cco:GeospatialRegion rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBox
cco:GeospatialRegionBoundingBox rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialPolygon ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:has_nontangential_part ;
owl:someValuesFrom cco:GeospatialRegion
] ;
rdfs:subClassOf cco:GeospatialPolygon ;
cco:definition "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Region Bounding Box"@en .
@@ -451,9 +414,6 @@ cco:HydrographicFeature rdf:type owl:Class ;
rdfs:label "Hydrographic Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/LowDensityResidentialArea
cco:LowDensityResidentialArea rdf:type owl:Class ;
rdfs:subClassOf cco:PopulatedPlace ;
@@ -471,12 +431,6 @@ cco:MajorAxis rdf:type owl:Class ;
rdfs:label "Major Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MinorAxis
cco:MinorAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
@@ -601,9 +555,6 @@ cco:PortionOfLithosphere rdf:type owl:Class ;
rdfs:label "Portion of Lithosphere"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/RollAxis
cco:RollAxis rdf:type owl:Class ;
rdfs:subClassOf cco:AxisOfRotation ;
@@ -621,9 +572,6 @@ cco:SeaLevel rdf:type owl:Class ;
rdfs:label "Sea Level"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SemiMajorAxis
cco:SemiMajorAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
@@ -640,9 +588,6 @@ cco:SemiMinorAxis rdf:type owl:Class ;
rdfs:label "Semi-Minor Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Subcontinent
cco:Subcontinent rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialRegion ;
@@ -652,9 +597,6 @@ cco:Subcontinent rdf:type owl:Class ;
rdfs:label "Subcontinent"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalPath
cco:ThreeDimensionalPath rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000028 ,
@@ -676,10 +618,6 @@ cco:ThreeDimensionalPosition rdf:type owl:Class ;
rdfs:label "Three-Dimensional Position"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/YawAxis
cco:YawAxis rdf:type owl:Class ;
rdfs:subClassOf cco:AxisOfRotation ;

View File

@@ -9,13 +9,13 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/InformationEntityOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> ;
rdfs:label "Information Entity Ontology"@en ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/InformationEntityOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionInfo "Version 1.4"@en ;
rdfs:comment "This ontology is designed to represent generic types of information as well as the relationships between information and other entities."@en .
rdfs:comment "This ontology is designed to represent generic types of information as well as the relationships between information and other entities."@en ;
rdfs:label "Information Entity Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Object Properties
@@ -25,7 +25,7 @@
cco:condition_described_by rdf:type owl:ObjectProperty ;
owl:inverseOf cco:describes_condition ;
owl:propertyChainAxiom ( cco:described_by
obo:BFO_0000050
obo:BFO_0000176
) ;
cco:definition "c condition_described_by p iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -57,7 +57,7 @@ cco:describes rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/describes_condition
cco:describes_condition rdf:type owl:ObjectProperty ;
owl:propertyChainAxiom ( obo:BFO_0000051
owl:propertyChainAxiom ( obo:BFO_0000178
cco:describes
) ;
cco:definition "p describes_condition c iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ;
@@ -69,7 +69,6 @@ cco:describes_condition rdf:type owl:ObjectProperty ;
cco:designated_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_subject_of ;
owl:inverseOf cco:designates ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:DesignativeInformationContentEntity ;
cco:definition "x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -79,21 +78,20 @@ cco:designated_by rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/designates
cco:designates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_about ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:DesignativeInformationContentEntity ;
cco:definition "x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ;
cco:example_of_usage "a URL designates the location of a Web Page on the internet" ,
"a person's name designates that person" ,
"a vehicle identification number designates some vehicle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "designates"@en .
rdfs:label "designates"@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_interval_measurement_of
cco:is_a_interval_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_interval ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:IntervalMeasurementInformationContentEntity ;
cco:definition "x is_a_interval_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ;
cco:example_of_usage "a measurement of air temperature on the Celsius scale." ;
@@ -105,19 +103,18 @@ cco:is_a_interval_measurement_of rdf:type owl:ObjectProperty ;
cco:is_a_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:describes ;
owl:inverseOf cco:is_measured_by ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:MeasurementInformationContentEntity ;
cco:definition "x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ;
rdfs:label "is a measurement of"@en .
rdfs:label "is a measurement of"@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_nominal_measurement_of
cco:is_a_nominal_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_nominal ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:NominalMeasurementInformationContentEntity ;
cco:definition "x is_a_nominal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -128,7 +125,6 @@ cco:is_a_nominal_measurement_of rdf:type owl:ObjectProperty ;
cco:is_a_ordinal_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_ordinal ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "x is_a_ordinal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -139,7 +135,6 @@ cco:is_a_ordinal_measurement_of rdf:type owl:ObjectProperty ;
cco:is_a_ratio_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_ratio ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:RatioMeasurementInformationContentEntity ;
cco:definition "x is_a_ratio_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -180,7 +175,6 @@ cco:is_geospatial_coordinate_reference_system_of rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by
cco:is_measured_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:described_by ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:MeasurementInformationContentEntity ;
cco:definition "y is_measured_by x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -190,7 +184,6 @@ cco:is_measured_by rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_interval
cco:is_measured_by_interval rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:IntervalMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_interval x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -200,7 +193,6 @@ cco:is_measured_by_interval rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_nominal
cco:is_measured_by_nominal rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:NominalMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_nominal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -210,7 +202,6 @@ cco:is_measured_by_nominal rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ordinal
cco:is_measured_by_ordinal rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_ordinal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -220,7 +211,6 @@ cco:is_measured_by_ordinal rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ratio
cco:is_measured_by_ratio rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:RatioMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_ratio x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -229,7 +219,7 @@ cco:is_measured_by_ratio rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measurement_unit_of
cco:is_measurement_unit_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0010001 ;
rdfs:subPropertyOf obo:BFO_0000084 ;
owl:inverseOf cco:uses_measurement_unit ;
rdfs:domain cco:MeasurementUnit ;
rdfs:range cco:InformationBearingEntity ;
@@ -255,7 +245,7 @@ cco:is_mentioned_by rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/is_reference_system_of
cco:is_reference_system_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0010001 ;
rdfs:subPropertyOf obo:BFO_0000084 ;
owl:inverseOf cco:uses_reference_system ;
rdfs:domain cco:ReferenceSystem ;
rdfs:range cco:InformationBearingEntity ;
@@ -309,7 +299,6 @@ cco:prescribes rdf:type owl:ObjectProperty ;
cco:represented_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_subject_of ;
owl:inverseOf cco:represents ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:RepresentationalInformationContentEntity ;
cco:definition "y represented_by x iff x is an instance of Information Content Entity, and y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
@@ -320,18 +309,18 @@ cco:represented_by rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/represents
cco:represents rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_about ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:RepresentationalInformationContentEntity ;
cco:definition "x represents y iff x is an instance of Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ;
cco:elucidation "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en ;
rdfs:label "represents"@en .
rdfs:label "represents"@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/time_zone_identifier_used_by
cco:time_zone_identifier_used_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0010001 ;
rdfs:subPropertyOf obo:BFO_0000084 ;
owl:inverseOf cco:uses_time_zone_identifier ;
rdfs:domain cco:TimeZoneIdentifier ;
rdfs:range cco:InformationBearingEntity ;
@@ -362,7 +351,7 @@ cco:uses_language rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_measurement_unit
cco:uses_measurement_unit rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0010002 ;
rdfs:subPropertyOf obo:BFO_0000101 ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:MeasurementUnit ;
cco:definition "y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ;
@@ -372,7 +361,7 @@ cco:uses_measurement_unit rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_reference_system
cco:uses_reference_system rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0010002 ;
rdfs:subPropertyOf obo:BFO_0000101 ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:ReferenceSystem ;
cco:definition "y uses_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ;
@@ -382,7 +371,7 @@ cco:uses_reference_system rdf:type owl:ObjectProperty ;
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_time_zone_identifier
cco:uses_time_zone_identifier rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0010002 ;
rdfs:subPropertyOf obo:BFO_0000101 ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:TimeZoneIdentifier ;
cco:definition "x uses_time_zone_identifier y iff x is an instance of Information Bearing Entity and y is an instance of Time Zone Identifier, such that y designates the spatial region associated with the time zone mentioned in x."@en ;
@@ -770,7 +759,7 @@ cco:GreenwichMeanTimeZoneIdentifier rdf:type owl:Class ;
cco:InformationBearingEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000030
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0010002 ;
owl:onProperty obo:BFO_0000101 ;
owl:someValuesFrom cco:InformationContentEntity
]
) ;
@@ -807,7 +796,7 @@ cco:InformationContentEntity rdf:type owl:Class ;
cco:InformationQualityEntity rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000019 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:InformationBearingEntity
] ;
cco:alternative_label "IQE"@en ;
@@ -871,11 +860,11 @@ cco:JulianDateFraction rdf:type owl:Class ;
cco:JulianDateIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:DecimalTimeOfDayIdentifier ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:JulianDateFraction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000051 ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:JulianDayNumber
] ,
[ rdf:type owl:Restriction ;
@@ -2214,4 +2203,4 @@ cco:ZuluTimeZone rdf:type owl:NamedIndividual ,
rdfs:label "Zulu Time Zone"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

File diff suppressed because it is too large Load Diff

View File

@@ -5,18 +5,26 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/QualityOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/QualityOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionInfo "Version 1.4"@en ;
dcterms:license <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent a range of attributes of entities especially qualities, realizable entities, and process profiles."@en ;
rdfs:label "Quality Ontology"@en .
rdfs:label "Quality Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/bibliographicCitation
dcterms:bibliographicCitation rdf:type owl:AnnotationProperty .
#################################################################
# Classes
@@ -228,17 +236,6 @@ cco:Cyan rdf:type owl:Class ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ;
rdfs:label "Cyan"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DisruptingDisposition
cco:DisruptingDisposition rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000016 ;
dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:definition "A disposition the realization of which would disrupt a process some entity has an interest in."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ;
skos:editorialNote "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ;
rdfs:label "Disrupting Disposition"@en ;
skos:prefLabel "Threat"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Cylindrical
cco:Cylindrical rdf:type owl:Class ;
@@ -274,6 +271,18 @@ cco:Diameter rdf:type owl:Class ;
rdfs:label "Diameter"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DisruptingDisposition
cco:DisruptingDisposition rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000016 ;
dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:definition "A disposition the realization of which would disrupt a process some entity has an interest in."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ;
rdfs:label "Disrupting Disposition"@en ;
skos:editorialNote "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ;
skos:prefLabel "Threat"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Drooping
cco:Drooping rdf:type owl:Class ;
rdfs:subClassOf cco:ShapeQuality ;
@@ -875,17 +884,16 @@ cco:Violet rdf:type owl:Class ;
rdfs:label "Violet"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Vulnerability
cco:Vulnerability rdf:type owl:Class ;
rdfs:subClassOf cco:DisruptingDisposition ;
dcterms:bibliographicCitation "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
skos:editorialNote "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ;
cco:definition "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ;
rdfs:label "Vulnerability"@en ;
skos:prefLabel "Vulnerability"@en .
rdfs:subClassOf cco:DisruptingDisposition ;
dcterms:bibliographicCitation "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ;
dcterms:creator "https://cubrc.org"^^xsd:anyURI ;
cco:definition "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ;
rdfs:label "Vulnerability"@en ;
skos:editorialNote "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ;
skos:prefLabel "Vulnerability"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Wavy
@@ -957,4 +965,4 @@ cco:Yellow rdf:type owl:Class ;
rdfs:label "Yellow"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -9,28 +9,17 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/TimeOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/TimeOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent temporal regions and the relations that hold between them."@en ;
owl:versionInfo "Version 1.4"@en ;
rdfs:label "Time Ontology"@en .
rdfs:label "Time Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant
cco:has_ending_instant rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_ending_instant_of ;
rdf:type owl:FunctionalProperty ;
rdfs:domain obo:BFO_0000038 ;
rdfs:range obo:BFO_0000148 ;
cco:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has ending instant t2 if and only if no Temporal Instant t3 that is part of t1 is after t2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "has ending instant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_inside_instant
cco:has_inside_instant rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_inside_instant_of ;
@@ -52,17 +41,6 @@ cco:has_inside_interval rdf:type owl:ObjectProperty ;
rdfs:label "has inside interval"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant
cco:has_starting_instant rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_starting_instant_of ;
rdf:type owl:FunctionalProperty ;
rdfs:domain obo:BFO_0000038 ;
rdfs:range obo:BFO_0000148 ;
cco:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has starting instant t2 if and only if no temporal instant t3 that is part of t1 is before t2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "has starting instant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/instant_is_after
cco:instant_is_after rdf:type owl:ObjectProperty ;
owl:inverseOf cco:instant_is_before ;
@@ -244,16 +222,6 @@ cco:interval_starts rdf:type owl:ObjectProperty ;
rdfs:label "interval starts"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of
cco:is_ending_instant_of rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain obo:BFO_0000148 ;
rdfs:range obo:BFO_0000038 ;
cco:definition "For Temporal Instant t1 and Temporal Interval t2, t1 is ending instant of t2 if and only if no Temporal Instant t3 that is part of t2 is after t1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "is ending instant of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_inside_instant_of
cco:is_inside_instant_of rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000148 ;
@@ -263,32 +231,22 @@ cco:is_inside_instant_of rdf:type owl:ObjectProperty ;
rdfs:label "is inside instant of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of
cco:is_starting_instant_of rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain obo:BFO_0000148 ;
rdfs:range obo:BFO_0000038 ;
cco:definition "For Temporal Instant t1 and Temporal Interval t2, t1 is starting instant of t2 if and only if no Temporal Instant t3 that is part of t2 is before t1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "is starting instant of"@en .
#################################################################
# Classes
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/Afternoon
cco:Afternoon rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ;
cco:definition "A One-Dimensional Temporal Region that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ;
rdfs:subClassOf obo:BFO_0000202 ;
cco:definition "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Afternoon"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AxialRotationPeriod
cco:AxialRotationPeriod rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ;
cco:definition "A One-Dimensional Temporal Region that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ;
rdfs:subClassOf obo:BFO_0000202 ;
cco:definition "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Axial Rotation Period"@en .
@@ -329,12 +287,12 @@ cco:CalendarYear rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Day
cco:Day rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Week
] ;
cco:definition "A One-Dimensional Temporal Region that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ;
cco:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=day" ;
cco:elucidation "Unless otherwise specified, a Day is assumed to be relative to the rotational motion of the Earth and is approximately equal to a twenty-four hour temporal region for which the start and end times are specified by the Temporal Reference System used."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
@@ -343,8 +301,8 @@ cco:Day rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Decade
cco:Decade rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ;
cco:definition "A One-Dimensional Temporal Region that is equal to a period of ten consecutive Years."@en ;
rdfs:subClassOf obo:BFO_0000202 ;
cco:definition "A Temporal Interval that is equal to a period of ten consecutive Years."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=decade" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Decade"@en .
@@ -352,8 +310,8 @@ cco:Decade rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Evening
cco:Evening rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ;
cco:definition "A One-Dimensional Temporal Region that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ;
rdfs:subClassOf obo:BFO_0000202 ;
cco:definition "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Evening"@en .
@@ -378,12 +336,12 @@ cco:GregorianYear rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Hour
cco:Hour rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Day
] ;
cco:definition "A One-Dimensional Temporal Region that is equal to sixty consecutive Minutes."@en ;
cco:definition "A Temporal Interval that is equal to sixty consecutive Minutes."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=hour" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Hour"@en .
@@ -393,7 +351,7 @@ cco:Hour rdf:type owl:Class ;
cco:JulianDate rdf:type owl:Class ;
rdfs:subClassOf cco:TimeOfDay ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000132 ;
owl:someValuesFrom cco:JulianDay
] ;
cco:acronym "JD" ;
@@ -424,12 +382,12 @@ cco:JulianYear rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Minute
cco:Minute rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Hour
] ;
cco:definition "A One-Dimensional Temporal Region that is equal to sixty consecutive Seconds."@en ;
cco:definition "A Temporal Interval that is equal to sixty consecutive Seconds."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=minute" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Minute"@en .
@@ -449,12 +407,12 @@ MJD = JD - 2400000.5"""@en ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Month
cco:Month rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Year
] ;
cco:definition "A One-Dimensional Temporal Region that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ;
cco:definition "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=month" ;
cco:elucidation "Unless otherwise specified, it is assumed that a Month is specified relative to the Rotational Motion of the Moon around the Earth. Earth Months are approximately equal to four consecutive Weeks or 30 consecutive Days."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
@@ -463,8 +421,8 @@ cco:Month rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Morning
cco:Morning rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ;
cco:definition "A One-Dimensional Temporal Region that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ;
rdfs:subClassOf obo:BFO_0000202 ;
cco:definition "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Morning"@en .
@@ -476,7 +434,7 @@ cco:MultiDayTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Day
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Days and spans at least one Day."@en ;
cco:definition "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Day Temporal Interval"@en .
@@ -489,7 +447,7 @@ cco:MultiHourTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Hour
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Hours and spans at least one Hour."@en ;
cco:definition "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Hour Temporal Interval"@en .
@@ -502,7 +460,7 @@ cco:MultiMinuteTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Minute
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Minutes and spans at least one Minute."@en ;
cco:definition "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Minute Temporal Interval"@en .
@@ -515,7 +473,7 @@ cco:MultiMonthTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Month
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Months and spans at least one Month."@en ;
cco:definition "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Month Temporal Interval"@en .
@@ -528,7 +486,7 @@ cco:MultiSecondTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Second
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Seconds and spans at least one Second."@en ;
cco:definition "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Second Temporal Interval"@en .
@@ -541,7 +499,7 @@ cco:MultiWeekTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Week
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Weeks and spans at least one Week."@en ;
cco:definition "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Week Temporal Interval"@en .
@@ -554,7 +512,7 @@ cco:MultiYearTemporalInterval rdf:type owl:Class ;
owl:onProperty cco:interval_contains ;
owl:someValuesFrom cco:Year
] ;
cco:definition "A One-Dimensional Temporal Region that is measured in Years and spans at least one Year."@en ;
cco:definition "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "This is a defined class."@en ;
rdfs:label "Multi-Year Temporal Interval"@en .
@@ -562,19 +520,19 @@ cco:MultiYearTemporalInterval rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Night
cco:Night rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ;
cco:definition "A One-Dimensional Temporal Region that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ;
rdfs:subClassOf obo:BFO_0000202 ;
cco:definition "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Night"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime
cco:ReferenceTime rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000148 ;
rdfs:subClassOf obo:BFO_0000203 ;
cco:alternative_label "Epoch"@en ,
"Epoch Time"@en ,
"Reference Date"@en ;
cco:definition "A Zero-Dimensional Temporal Region that is an approximate temporal instant in relation to which other Temporal Regions are measured or identified."@en ;
cco:definition "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Epoch_(reference_date)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Reference Time"@en .
@@ -582,12 +540,12 @@ cco:ReferenceTime rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Second
cco:Second rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Minute
] ;
cco:definition "A One-Dimensional Temporal Region that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ;
cco:definition "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en ;
cco:definition_source "https://physics.nist.gov/cuu/Units/second.html" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:comment "The Second is used as the basic SI unit of time."@en ;
@@ -596,32 +554,32 @@ cco:Second rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay
cco:TimeOfDay rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000148 ,
rdfs:subClassOf obo:BFO_0000203 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000050 ;
owl:onProperty obo:BFO_0000132 ;
owl:someValuesFrom cco:Day
] ;
cco:definition "A Zero-Dimensional Temporal Region that is an approximate temporal instant that is part of a Day."@en ;
cco:definition "A Temporal Instant that is part of a Day."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Time of Day"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/UnixTemporalInstant
cco:UnixTemporalInstant rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000148 ;
cco:definition "A Zero-Dimensional Temporal Region that is an approximate temporal instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ;
rdfs:subClassOf obo:BFO_0000203 ;
cco:definition "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Unix Temporal Instant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Week
cco:Week rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Month
] ;
cco:definition "A One-Dimensional Temporal Region that is equal to seven consecutive Days."@en ;
cco:definition "A Temporal Interval that is equal to seven consecutive Days."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=week" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Week"@en .
@@ -629,16 +587,16 @@ cco:Week rdf:type owl:Class ;
### http://www.ontologyrepository.com/CommonCoreOntologies/Year
cco:Year rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000038 ,
rdfs:subClassOf obo:BFO_0000202 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:interval_during ;
owl:someValuesFrom cco:Decade
] ;
cco:definition "A One-Dimensional Temporal Region that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ;
cco:definition "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=year" ;
cco:elucidation "Unless otherwise specified, a Year is assumed to be relative to the Orbiting of the Earth around the Sun and is approximately equal to 12 Months or 365 Days."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:anyURI ;
rdfs:label "Year"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -9,12 +9,12 @@
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/UnitsOfMeasureOntology> ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/UnitsOfMeasureOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
owl:versionInfo "Version 1.4"@en ;
rdfs:comment "This ontology is designed to represent standard measurement units that are used when measuring various attributes of entities."@en ;
rdfs:label "Units of Measure Ontology"@en ;
rdfs:comment "This ontology is designed to represent standard measurement units that are used when measuring various attributes of entities."@en .
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
@@ -1483,4 +1483,4 @@ cco:YearMeasurementUnit rdf:type owl:NamedIndividual ,
rdfs:label "Year Measurement Unit"@en .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi

View File

@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<catalog prefer="public" xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport" uri="imports/ro-import.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" uri="AgentOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology" uri="ArtifactOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology" uri="EventOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology" uri="ExtendedRelationOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology" uri="ArtifactOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology" uri="FacilityOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology" uri="GeospatialOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology" uri="InformationEntityOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology" uri="QualityOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology" uri="CurrencyUnitOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology" uri="GeospatialOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://purl.obolibrary.org/obo/bfo" uri="imports/bfo-core.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology" uri="ExtendedRelationOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology" uri="TimeOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology" uri="InformationEntityOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology" uri="UnitsOfMeasureOntology.ttl"/>
<uri id="User Entered Import Resolution" name="http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology" uri="CurrencyUnitOntology.ttl"/>
</catalog>

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,3 @@
# Merged All Core Ontology
This directory contains merged copies of the full releases of CCO. Each file contains all the content of the eleven mid-level ontologies, along with BFO and the subset of RO used in CCO. MRO is not included. Each file represents a stable snapshot release of CCO with no external dependencies required for use.
This directory contains a merged version of all eleven CCO ontologies plus BFO. The file represents a stable stand-alone snapshot release of all of CCO and its import dependancies. A sub-directory archives previous versions of Merged All Core.

1
documentation/README.md Normal file
View File

@@ -0,0 +1 @@
This folder contains user guides and supporting documents, some of which are specific to the current release. Previous versions of these documents are now stored in the Legacy subfolder.

View File

@@ -0,0 +1,724 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/AgentOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/AgentOntology&gt;</li>
</ul>
<div class="frame">
<h3>Allied Person <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/AlliedPerson</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/AlliedPerson">Allied Person</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/AllyRole">Ally Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/AlliedPerson">Allied Person</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/AllyRole">Ally Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Citizen <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Citizen</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Citizen">Citizen</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/CitizenRole">Citizen Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Citizen">Citizen</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/CitizenRole">Citizen Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Civil Organization <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/CivilOrganization</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/CivilOrganization">Civil Organization</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/CivilianRole">Civilian Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/CivilOrganization">Civil Organization</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/CivilianRole">Civilian Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Commercial Organization <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/CommercialOrganization</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/CommercialOrganization">Commercial Organization</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/CommercialRole">Commercial Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/CommercialOrganization">Commercial Organization</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/CommercialRole">Commercial Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Division of Delimiting Domain <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/DivisonOfGeopoliticalEntity</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/DivisonOfGeopoliticalEntity">Division of Delimiting Domain</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/DelimitingDomain">Delimiting Domain</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/DivisonOfGeopoliticalEntity">Division of Delimiting Domain</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/DelimitingDomain">Delimiting Domain</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Enemy <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Enemy</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Enemy">Enemy</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/EnemyRole">Enemy Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Enemy">Enemy</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/EnemyRole">Enemy Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Eye Color <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/EyeColor</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/EyeColor">Eye Color</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Iris">Iris</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/EyeColor">Eye Color</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Iris">Iris</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>First-Order Administrative Region <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion">First-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Country">Domain of a Country</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion">First-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Country">Domain of a Country</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Fourth-Order Administrative Region <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/FourthOrderAdministrativeRegion</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/FourthOrderAdministrativeRegion">Fourth-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion">Third-Order Administrative Region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/FourthOrderAdministrativeRegion">Fourth-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion">Third-Order Administrative Region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Geopolitical Organization <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalOrganization</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalOrganization">Geopolitical Organization</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000053">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole">Geopolitical Power Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalOrganization">Geopolitical Organization</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole">Geopolitical Power Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Geopolitical Power Role <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole">Geopolitical Power Role</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole">Geopolitical Power Role</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Government Organization <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentAgency</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentAgency">Government Organization</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Government">Government</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentAgency">Government Organization</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Government">Government</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Group of Agents <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfAgents</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfAgents">Group of Agents</a> SubClassOf (<a href="http://purl.obolibrary.org/obo/RO_0002351">has member</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Agent">Agent</a>) and (<a href="http://purl.obolibrary.org/obo/RO_0002351">has member</a> only <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Agent">Agent</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfAgents">Group of Agents</a> SubClassOf (<a href="http://purl.obolibrary.org/obo/BFO_0000115">has member part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Agent">Agent</a>) and (<a href="http://purl.obolibrary.org/obo/BFO_0000115">has member part</a> only <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Agent">Agent</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Group of Organizations <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfOrganizations</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfOrganizations">Group of Organizations</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> only <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfOrganizations">Group of Organizations</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfOrganizations">Group of Organizations</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfOrganizations">Group of Organizations</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> only <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Organization">Organization</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Group of Persons <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfPersons</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfPersons">Group of Persons</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfPersons">Group of Persons</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> only <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfPersons">Group of Persons</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfPersons">Group of Persons</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> only <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Iris <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Iris</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Iris">Iris</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Eye">Eye</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Iris">Iris</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Eye">Eye</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Material Territory of a Country <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfACountry</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfACountry">Material Territory of a Country</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain">Material Territory of a Government Domain</a> and (<a href="http://purl.obolibrary.org/obo/RO_0001018">contained in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Country">Domain of a Country</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfACountry">Material Territory of a Country</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain">Material Territory of a Government Domain</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000171">located in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Country">Domain of a Country</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Material Territory of a Government Domain <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain">Material Territory of a Government Domain</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere">Portion of Geosphere</a> and (<a href="http://purl.obolibrary.org/obo/RO_0001018">contained in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntity">Government Domain</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain">Material Territory of a Government Domain</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere">Portion of Geosphere</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000171">located in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntity">Government Domain</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Neutral Person <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/UnalliedPerson</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/UnalliedPerson">Neutral Person</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/NeutralRole">Neutral Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/UnalliedPerson">Neutral Person</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/NeutralRole">Neutral Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Organization Member <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMember</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMember">Organization Member</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMemberRole">Organization Member Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMember">Organization Member</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMemberRole">Organization Member Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Permanent Resident <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResident</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResident">Permanent Resident</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResidentRole">Permanent Resident Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResident">Permanent Resident</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Person">Person</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResidentRole">Permanent Resident Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Plan <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/PlanSpecification</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/PlanSpecification">Plan</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Objective">Objective</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/PlanSpecification">Plan</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Objective">Objective</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Second-Order Administrative Region <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion">Second-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion">First-Order Administrative Region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion">Second-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion">First-Order Administrative Region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Set of Eyes <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/SetOfEyes</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/SetOfEyes">Set of Eyes</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Eye">Eye</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/SetOfEyes">Set of Eyes</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Eye">Eye</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Third-Order Administrative Region <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion">Third-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion">Second-Order Administrative Region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion">Third-Order Administrative Region</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion">Second-Order Administrative Region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>agent in <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/agent_in</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/agent_in">agent in</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/agent_in">agent in</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>capability of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/capability_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/capability_of">capability of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/capability_of">capability of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has agent <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_agent</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_agent">has agent</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_agent">has agent</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has capability <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_capability</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_capability">has capability</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000053">bearer of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_capability">has capability</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has recipient <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_recipient</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_recipient">has recipient</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_recipient">has recipient</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has sender <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_sender</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_sender">has sender</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_sender">has sender</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is in-law of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_in_law_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_in_law_of">is in-law of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_in_law_of">is in-law of</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is permitted by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_permitted_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Asymmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_permitted_by">is permitted by</a></span> <ul></ul> </li>
<li><span class="axiom"> Irreflexive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_permitted_by">is permitted by</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_permitted_by">is permitted by</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is prohibited by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_prohibited_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Asymmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_prohibited_by">is prohibited by</a></span> <ul></ul> </li>
<li><span class="axiom"> Irreflexive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_prohibited_by">is prohibited by</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_prohibited_by">is prohibited by</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is required by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_required_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Asymmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_required_by">is required by</a></span> <ul></ul> </li>
<li><span class="axiom"> Irreflexive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_required_by">is required by</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_required_by">is required by</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is spouse of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_spouse_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_spouse_of">is spouse of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_spouse_of">is spouse of</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is step-sibling of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_step_sibling_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_step_sibling_of">is step-sibling of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_step_sibling_of">is step-sibling of</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>permits <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/permits</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Asymmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/permits">permits</a></span> <ul></ul> </li>
<li><span class="axiom"> Irreflexive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/permits">permits</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/permits">permits</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>prohibits <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/prohibits</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Asymmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/prohibits">prohibits</a></span> <ul></ul> </li>
<li><span class="axiom"> Irreflexive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/prohibits">prohibits</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/prohibits">prohibits</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>receives <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/receives</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/receives">receives</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/receives">receives</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>requires <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/requires</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Asymmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/requires">requires</a></span> <ul></ul> </li>
<li><span class="axiom"> Irreflexive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/requires">requires</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/requires">requires</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be asymmetric and irreflexive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>sends <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/sends</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/sends">sends</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/sends">sends</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
</body>

View File

@@ -0,0 +1,195 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/ArtifactOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/ArtifactOntology&gt;</li>
</ul>
<div class="frame">
<h3>Artifact Function <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunction</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunction">Artifact Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Artifact">Material Artifact</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunction">Artifact Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Artifact">Material Artifact</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Artifact Location <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactLocation</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactLocation">Artifact Location</a> EquivalentTo <a href="http://purl.obolibrary.org/obo/BFO_0000029">site</a> and (<a href="http://purl.obolibrary.org/obo/RO_0001015">location of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Artifact">Material Artifact</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactLocation">Artifact Location</a> EquivalentTo <a href="http://purl.obolibrary.org/obo/BFO_0000029">site</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000124">location of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Artifact">Material Artifact</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Facility <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Facility</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Facility">Facility</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0001025">located in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere">Portion of Geosphere</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Facility">Facility</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000171">located in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere">Portion of Geosphere</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Information Bearing Artifact <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingArtifact</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingArtifact">Information Bearing Artifact</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationMediumArtifact">Information Medium Artifact</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingArtifact">Information Bearing Artifact</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0010002">is carrier of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationContentEntity">Information Content Entity</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingArtifact">Information Bearing Artifact</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationMediumArtifact">Information Medium Artifact</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingArtifact">Information Bearing Artifact</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000101">is carrier of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationContentEntity">Information Content Entity</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Infrastructure Element <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/InfrastructureElement</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InfrastructureElement">Infrastructure Element</a> EquivalentTo <a href="http://purl.obolibrary.org/obo/BFO_0000040">material entity</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000053">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InfrastructureRole">Infrastructure Role</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InfrastructureElement">Infrastructure Element</a> EquivalentTo <a href="http://purl.obolibrary.org/obo/BFO_0000040">material entity</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InfrastructureRole">Infrastructure Role</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Payload Capacity <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/PayloadCapacity</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/PayloadCapacity">Payload Capacity</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Vehicle">Vehicle</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/PayloadCapacity">Payload Capacity</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Vehicle">Vehicle</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Sensor Modality Function <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/SensorModalityFunction</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/SensorModalityFunction">Sensor Modality Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Sensor">Sensor</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/SensorModalityFunction">Sensor Modality Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Sensor">Sensor</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Telecommunication Network Node <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetworkNode</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetworkNode">Telecommunication Network Node</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetwork">Telecommunication Network</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetworkNode">Telecommunication Network Node</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetwork">Telecommunication Network</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Wired Communication Relay Artifact Function <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationRelayArtifactFunction</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationRelayArtifactFunction">Wired Communication Relay Artifact Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationArtifactFunction">Radio Communication Artifact Function</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationRelayArtifactFunction">Wired Communication Relay Artifact Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationReceptionArtifactFunction">Radio Communication Reception Artifact Function</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>editor note <span class="frame-iri">- http://purl.obolibrary.org/obo/IAO_0000116</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom">AnnotationProperty: <a href="http://purl.obolibrary.org/obo/IAO_0000116">editor note</a></span> <ul></ul> </li>
</ul>
</div>
</body>

View File

@@ -0,0 +1,406 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/ExtendedRelationOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/ExtendedRelationOntology&gt;</li>
</ul>
<div class="frame">
<h3>Ontology imports <span class="frame-iri"></span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/bfo.owl">bfo.owl</a></span> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport">ROImport</a></span> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/bfo">bfo</a></span> </li>
</ul>
</div>
<div class="frame">
<h3>accessory in <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/accessory_in</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/accessory_in">accessory in</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/accessory_in">accessory in</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>accomplice in <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/accomplice_in</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/accomplice_in">accomplice in</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/accomplice_in">accomplice in</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>affects <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/affects</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/affects">affects</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/affects">affects</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>created <span class="frame-iri">- http://purl.org/dc/terms/created</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom">AnnotationProperty: <a href="http://purl.org/dc/terms/created">created</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>creator <span class="frame-iri">- http://purl.org/dc/terms/creator</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom">AnnotationProperty: <a href="http://purl.org/dc/terms/creator">creator</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>editorialNote <span class="frame-iri">- http://www.w3.org/2004/02/skos/core#editorialNote</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom">AnnotationProperty: <a href="http://www.w3.org/2004/02/skos/core#editorialNote">editorialNote</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has accessory <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_accessory</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_accessory">has accessory</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_accessory">has accessory</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has accomplice <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_accomplice</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_accomplice">has accomplice</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_accomplice">has accomplice</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has input <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_input</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_input">has input</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_input">has input</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has object <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_object</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_object">has object</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_object">has object</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has output <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_output</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_output">has output</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_output">has output</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has process part <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_process_part</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_process_part">has process part</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_process_part">has process part</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000117">has occurrent part</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is affected by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_affected_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_affected_by">is affected by</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_affected_by">is affected by</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is input of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_input_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_input_of">is input of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_input_of">is input of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is object of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_object_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_object_of">is object of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_object_of">is object of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is output of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_output_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_output_of">is output of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_output_of">is output of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000056">participates in</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is part of process <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_part_of_process</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_part_of_process">is part of process</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_part_of_process">is part of process</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000132">occurrent part of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is site of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of">is site of</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000006">spatial region</a> or <a href="http://purl.obolibrary.org/obo/BFO_0000029">site</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of">is site of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000067">contains process</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of">is site of</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000029">site</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of">is site of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000183">environs</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is temporal region of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of">is temporal region of</a> InverseOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of">is temporal region of</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000015">process</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of">is temporal region of</a> <a href="http://www.w3.org/2004/02/skos/core#editorialNote">editorialNote</a> "Leaving this is in ERO for now since BFO2020 has no inverse of occupies-temporal-region yet."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of">is temporal region of</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000015">process</a> or <a href="http://purl.obolibrary.org/obo/BFO_0000035">process boundary</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>license <span class="frame-iri">- http://purl.org/dc/terms/license</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom">AnnotationProperty: <a href="http://purl.org/dc/terms/license">license</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>occupies temporal region <span class="frame-iri">- http://purl.obolibrary.org/obo/BFO_0000199</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000199">occupies temporal region</a> InverseOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of">is temporal region of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>occurs at <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/occurs_at</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_at">occurs at</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000006">spatial region</a> or <a href="http://purl.obolibrary.org/obo/BFO_0000029">site</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_at">occurs at</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000029">site</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>occurs on <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "occurs on"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "x occurs_on y iff x is an instance of a process or process boundary and y is an instance of a temporal region, such that the duration of x temporally projects on y."@en</span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000015">process</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on">occurs on</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000008">temporal region</a></span> <ul></ul> </li>
</ul>
</div>
</body>

View File

@@ -0,0 +1,250 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/EventOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/EventOntology&gt;</li>
</ul>
<div class="frame">
<h3>Effect of Location Change <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/EffectOfLocationChange</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/EffectOfLocationChange">Effect of Location Change</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLocationChange">Act of Location Change</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/EffectOfLocationChange">Effect of Location Change</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000132">occurrent part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLocationChange">Act of Location Change</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Disposition <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfDisposition</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfDisposition">Gain of Disposition</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000091">has disposition</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000016">disposition</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfDisposition">Gain of Disposition</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000016">disposition</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Function <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfFunction</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfFunction">Gain of Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000085">has function</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000034">function</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfFunction">Gain of Function</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000034">function</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Generically Dependent Continuant <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfGenericallyDependentContinuant</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfGenericallyDependentContinuant">Gain of Generically Dependent Continuant</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0010002">is carrier of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000031">generically dependent continuant</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfGenericallyDependentContinuant">Gain of Generically Dependent Continuant</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000101">is carrier of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000031">generically dependent continuant</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Quality <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfQuality</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfQuality">Gain of Quality</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000086">has quality</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000019">quality</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfQuality">Gain of Quality</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000019">quality</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Realizable Entity <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRealizableEntity</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRealizableEntity">Gain of Realizable Entity</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000053">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000017">realizable entity</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRealizableEntity">Gain of Realizable Entity</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000017">realizable entity</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Role <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRole</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRole">Gain of Role</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000087">has role</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000023">role</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRole">Gain of Role</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000023">role</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Gain of Specifically Dependent Continuant <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GainOfSpecificallyDependentContinuant</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfSpecificallyDependentContinuant">Gain of Specifically Dependent Continuant</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/RO_0000053">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000020">specifically dependent continuant</a>))</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GainOfSpecificallyDependentContinuant">Gain of Specifically Dependent Continuant</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000057">has participant</a> some
(<a href="http://purl.obolibrary.org/obo/BFO_0000004">independent continuant</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000196">bearer of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000020">specifically dependent continuant</a>))</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Wave Process <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/WaveProcess</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/WaveProcess">Wave Process</a> SubClassOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/WaveProduction">Wave Production</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/WaveProcess">Wave Process</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000062">preceded by</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/WaveProduction">Wave Production</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>process preceded by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> <a href="http://www.w3.org/2000/01/rdf-schema#seeAlso">seeAlso</a> "http://purl.obolibrary.org/obo/BFO_0000062"^^<a href="http://www.w3.org/2001/XMLSchema#string">string</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition_source">definition source</a> "Derived from the deprecated http://www.obofoundry.org/ro/ro.owl#preceded_by"^^<a href="http://www.w3.org/2001/XMLSchema#string">string</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "p1 preceded_by p2 if and only if p1 and p2 are instances of processes, and t1 and t2 are instances of temporal regions, and p1 occurs_on t1, and p2 occurs_on t2, and t2 interval_is_before t1 or t2 interval_meets t1."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "process preceded by"@en</span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by">process preceded by</a> InverseOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>process precedes <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "process precedes"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "p1 process_precedes p2 if and only if p1 and p2 are instances of processes, and t1 and t2 are instances of temporal regions, and p1 occurs_on t1, and p2 occurs_on t2, and t1 interval_is_before t2 or t1 interval_meets t2."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition_source">definition source</a> "Derived from the deprecated http://www.obofoundry.org/ro/ro.owl#precedes"^^<a href="http://www.w3.org/2001/XMLSchema#string">string</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a> <a href="http://www.w3.org/2000/01/rdf-schema#seeAlso">seeAlso</a> "http://purl.obolibrary.org/obo/BFO_0000063"^^<a href="http://www.w3.org/2001/XMLSchema#string">string</a></span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes">process precedes</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>process profile <span class="frame-iri">- http://purl.obolibrary.org/obo/BFO_0000144</span></h3>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "An occurrent that is an occurrent part of some process by virtue of the rate, or pattern, or amplitude of change in an attribute of one or more participants of said process."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/elucidation">elucidation</a> "b process_profile_of c holds when b proper_occurrent_part_of c&amp; there is some proper_occurrent_part d of c which has no parts in common with b &amp; is mutually dependent on b&amp; is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "Process Profile"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/example_of_usage">example of usage</a> "On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels; One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John&rsquo;s heart, or the 120 beats per minute drumming process involved in one of John&rsquo;s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.; The simplest type of process profiles are what we shall call &lsquo;quality process profiles&rsquo;, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom">Class: <a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000144">process profile</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000003">occurrent</a></span> <ul></ul> </li>
</ul>
</div>
</body>

View File

@@ -0,0 +1,265 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/GeospatialOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/GeospatialOntology&gt;</li>
</ul>
<div class="frame">
<h3>Bounding Box Point <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/BoundingBoxPoint</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/BoundingBoxPoint">Bounding Box Point</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPosition">Geospatial Position</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBox">Geospatial Region Bounding Box</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/BoundingBoxPoint">Bounding Box Point</a> EquivalentTo <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPosition">Geospatial Position</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBox">Geospatial Region Bounding Box</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Geospatial Location <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLocation</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLocation">Geospatial Location</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0001015">location of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000001">entity</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLocation">Geospatial Location</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000124">location of</a> some <a href="http://purl.obolibrary.org/obo/BFO_0000001">entity</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Geospatial Region Bounding Box <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBox</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBox">Geospatial Region Bounding Box</a> SubClassOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_part">has nontangential part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegion">Geospatial Region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>coincides with <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with">coincides with</a></span> <ul></ul> </li>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with">coincides with</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with">coincides with</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>connected with <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/connected_with</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/connected_with">connected with</a> SubPropertyOf: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/connected_with">connected with</a></span> <ul></ul> </li>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/connected_with">connected with</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/connected_with">connected with</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>disconnected with <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/disconnected_with</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/disconnected_with">disconnected with</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/disconnected_with">disconnected with</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>externally connects with <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/externally_connects_with</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/externally_connects_with">externally connects with</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/externally_connects_with">externally connects with</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has nontangential part <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_part</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_part">has nontangential part</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_part">has nontangential part</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has spatial part <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part">has spatial part</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a></span> <ul></ul> </li>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part">has spatial part</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part">has spatial part</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has tangential part <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_tangential_part</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_tangential_part">has tangential part</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_tangential_part">has tangential part</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>nontangential part of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/nontangential_part_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/nontangential_part_of">nontangential part of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/nontangential_part_of">nontangential part of</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>partially overlaps with <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/partially_overlaps_with</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Symmetric: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/partially_overlaps_with">partially overlaps with</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/partially_overlaps_with">partially overlaps with</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>spatial part of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of">spatial part of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a></span> <ul></ul> </li>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of">spatial part of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of">spatial part of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>tangential part of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/tangential_part_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Transitive: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/tangential_part_of">tangential part of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/tangential_part_of">tangential part of</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
</body>

View File

@@ -0,0 +1,389 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/InformationEntityOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/InformationEntityOntology&gt;</li>
</ul>
<div class="frame">
<h3>Information Bearing Entity <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity">Information Bearing Entity</a> EquivalentTo <a href="http://purl.obolibrary.org/obo/BFO_0000030">object</a> and (<a href="http://purl.obolibrary.org/obo/RO_0010002">is carrier of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationContentEntity">Information Content Entity</a>)</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity">Information Bearing Entity</a> EquivalentTo <a href="http://purl.obolibrary.org/obo/BFO_0000030">object</a> and (<a href="http://purl.obolibrary.org/obo/BFO_0000101">is carrier of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationContentEntity">Information Content Entity</a>)</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Information Quality Entity <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/InformationQualityEntity</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationQualityEntity">Information Quality Entity</a> SubClassOf <a href="http://purl.obolibrary.org/obo/RO_0000052">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity">Information Bearing Entity</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationQualityEntity">Information Quality Entity</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000197">inheres in</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity">Information Bearing Entity</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Julian Date Identifier <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier">Julian Date Identifier</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDayNumber">Julian Day Number</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier">Julian Date Identifier</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateFraction">Julian Date Fraction</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier">Julian Date Identifier</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateFraction">Julian Date Fraction</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier">Julian Date Identifier</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDayNumber">Julian Day Number</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>condition described by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/condition_described_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/described_by">described by</a> o <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> SubPropertyOf: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/condition_described_by">condition described by</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/described_by">described by</a> o <a href="http://purl.obolibrary.org/obo/BFO_0000176">continuant part of</a> SubPropertyOf: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/condition_described_by">condition described by</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>describes condition <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/describes_condition</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000051">has part</a> o <a href="http://www.ontologyrepository.com/CommonCoreOntologies/describes">describes</a> SubPropertyOf: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/describes_condition">describes condition</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://purl.obolibrary.org/obo/BFO_0000178">has continuant part</a> o <a href="http://www.ontologyrepository.com/CommonCoreOntologies/describes">describes</a> SubPropertyOf: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/describes_condition">describes condition</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>designated by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/designated_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/designated_by">designated by</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>designates <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/designates</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/designates">designates</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/designates">designates</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is a interval measurement of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_a_interval_measurement_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_a_interval_measurement_of">is a interval measurement of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is a measurement of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_a_measurement_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_a_measurement_of">is a measurement of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_a_measurement_of">is a measurement of</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is a nominal measurement of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_a_nominal_measurement_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_a_nominal_measurement_of">is a nominal measurement of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is a ordinal measurement of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ordinal_measurement_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ordinal_measurement_of">is a ordinal measurement of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is a ratio measurement of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ratio_measurement_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ratio_measurement_of">is a ratio measurement of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is measured by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by">is measured by</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is measured by interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_interval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_interval">is measured by interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is measured by nominal <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_nominal</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_nominal">is measured by nominal</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is measured by ordinal <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ordinal</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ordinal">is measured by ordinal</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is measured by ratio <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ratio</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ratio">is measured by ratio</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is measurement unit of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_measurement_unit_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measurement_unit_of">is measurement unit of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0010001">generically depends on</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_measurement_unit_of">is measurement unit of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000084">generically depends on</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is reference system of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_reference_system_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_reference_system_of">is reference system of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0010001">generically depends on</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_reference_system_of">is reference system of</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000084">generically depends on</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>represented by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/represented_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/represented_by">represented by</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>represents <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/represents</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/represents">represents</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/represents">represents</a> <a href="http://www.w3.org/2004/02/skos/core#scopeNote">scopeNote</a> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>time zone identifier used by <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/time_zone_identifier_used_by</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/time_zone_identifier_used_by">time zone identifier used by</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0010001">generically depends on</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/time_zone_identifier_used_by">time zone identifier used by</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000084">generically depends on</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>uses measurement unit <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/uses_measurement_unit</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/uses_measurement_unit">uses measurement unit</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0010002">is carrier of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/uses_measurement_unit">uses measurement unit</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000101">is carrier of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>uses reference system <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/uses_reference_system</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/uses_reference_system">uses reference system</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0010002">is carrier of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/uses_reference_system">uses reference system</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000101">is carrier of</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>uses time zone identifier <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/uses_time_zone_identifier</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/uses_time_zone_identifier">uses time zone identifier</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/RO_0010002">is carrier of</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/uses_time_zone_identifier">uses time zone identifier</a> SubPropertyOf: <a href="http://purl.obolibrary.org/obo/BFO_0000101">is carrier of</a></span> <ul></ul> </li>
</ul>
</div>
</body>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,530 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.frame {
margin-top: 2.5em;
}
.status-header {
font-style: italic;
margin-top: 0;
margin-bottom: 0;
}
.frame > ul {
margin-top: 0.3em;
}
h3 {
margin-bottom: 0.5em;
}
.frame-iri {
color: gray;
font-size: 80%;
}
</style>
<title>OWL diff</title>
</head>
<body>
<h2>Ontology comparison</h2>
<h3>Left</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2023-04-07/TimeOntology&gt;</li>
</ul>
<h3>Right</h3>
<ul>
<li>Ontology IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology&gt;</li>
<li>Version IRI: &lt;http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/TimeOntology&gt;</li>
</ul>
<div class="frame">
<h3>Afternoon <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Afternoon</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Afternoon">Afternoon</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Afternoon">Afternoon</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Afternoon">Afternoon</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that consists of the temporal regions between when the sun is at its apex (approximately 12:00pm) and when it sets (approximately 6:00pm)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Afternoon">Afternoon</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Axial Rotation Period <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/AxialRotationPeriod</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/AxialRotationPeriod">Axial Rotation Period</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/AxialRotationPeriod">Axial Rotation Period</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/AxialRotationPeriod">Axial Rotation Period</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to the length of time required for a spinning Object to complete one rotation around its Axis of Rotation."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/AxialRotationPeriod">Axial Rotation Period</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Day <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Day</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Day">Day</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Day">Day</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Day">Day</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one rotation around its Rotational Axis as specified relative to a particular Temporal Reference System."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Day">Day</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Decade <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Decade</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Decade">Decade</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to a period of ten consecutive Years."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Decade">Decade</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Decade">Decade</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to a period of ten consecutive Years."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Decade">Decade</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Evening <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Evening</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Evening">Evening</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Evening">Evening</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Evening">Evening</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that consists of the temporal regions between when the sun sets (approximately 6:00pm) and when people typically retire to sleep (approximately 9:00pm)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Evening">Evening</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Hour <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Hour</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Hour">Hour</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to sixty consecutive Minutes."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Hour">Hour</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Hour">Hour</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to sixty consecutive Minutes."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Hour">Hour</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Julian Date <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/JulianDate</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDate">Julian Date</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDay">Julian Day</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDate">Julian Date</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000132">occurrent part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/JulianDay">Julian Day</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Minute <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Minute</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Minute">Minute</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to sixty consecutive Seconds."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Minute">Minute</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Minute">Minute</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to sixty consecutive Seconds."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Minute">Minute</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Month <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Month</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Month">Month</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Month">Month</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Month">Month</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is based on the approximate length of time required for a Natural Satellite to complete one cycle of its rotational motion around its Primary Body."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Month">Month</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Morning <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Morning</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Morning">Morning</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Morning">Morning</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Morning">Morning</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that consists of the temporal regions between when the sun dawns (approximately 6:00am) and reaches its apex (approximately 12:00pm)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Morning">Morning</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Day Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiDayTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiDayTemporalInterval">Multi-Day Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Days and spans at least one Day."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiDayTemporalInterval">Multi-Day Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Days and spans at least one Day."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Hour Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiHourTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiHourTemporalInterval">Multi-Hour Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Hours and spans at least one Hour."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiHourTemporalInterval">Multi-Hour Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Hours and spans at least one Hour."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Minute Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiMinuteTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiMinuteTemporalInterval">Multi-Minute Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Minutes and spans at least one Minute."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiMinuteTemporalInterval">Multi-Minute Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Minutes and spans at least one Minute."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Month Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiMonthTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiMonthTemporalInterval">Multi-Month Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Months and spans at least one Month."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiMonthTemporalInterval">Multi-Month Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Months and spans at least one Month."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Second Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiSecondTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiSecondTemporalInterval">Multi-Second Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Seconds and spans at least one Second."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiSecondTemporalInterval">Multi-Second Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Seconds and spans at least one Second."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Week Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiWeekTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiWeekTemporalInterval">Multi-Week Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Weeks and spans at least one Week."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiWeekTemporalInterval">Multi-Week Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Weeks and spans at least one Week."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Multi-Year Temporal Interval <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/MultiYearTemporalInterval</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiYearTemporalInterval">Multi-Year Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is measured in Years and spans at least one Year."@en</span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/MultiYearTemporalInterval">Multi-Year Temporal Interval</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A one-dimensional temporal region that is measured in Years and spans at least one Year."@en</span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Night <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Night</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Night">Night</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Night">Night</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Night">Night</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that consists of the temporal regions between when people typically retire to sleep (approximately 9:00pm) and when the sun dawns (approximately 6:00am)."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Night">Night</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Reference Time <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime">Reference Time</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Zero-Dimensional Temporal Region that is an approximate temporal instant in relation to which other Temporal Regions are measured or identified."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime">Reference Time</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime">Reference Time</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Instant specified as the origin for which other Temporal Regions are measured or identified."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime">Reference Time</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000203">temporal instant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Second <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Second</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Second">Second</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Second">Second</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Second">Second</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Second">Second</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Time of Day <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay">Time of Day</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Zero-Dimensional Temporal Region that is an approximate temporal instant that is part of a Day."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay">Time of Day</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay">Time of Day</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000050">part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Day">Day</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay">Time of Day</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Instant that is part of a Day."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay">Time of Day</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000203">temporal instant</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay">Time of Day</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000132">occurrent part of</a> some <a href="http://www.ontologyrepository.com/CommonCoreOntologies/Day">Day</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Unix Temporal Instant <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/UnixTemporalInstant</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/UnixTemporalInstant">Unix Temporal Instant</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Zero-Dimensional Temporal Region that is an approximate temporal instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/UnixTemporalInstant">Unix Temporal Instant</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/UnixTemporalInstant">Unix Temporal Instant</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Instant as specified by the number of Seconds that have elapsed since the specified Epoch Time as described by an implementation of Unix Time."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/UnixTemporalInstant">Unix Temporal Instant</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000203">temporal instant</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Week <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Week</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Week">Week</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to seven consecutive Days."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Week">Week</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Week">Week</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to seven consecutive Days."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Week">Week</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>Year <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/Year</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Year">Year</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A One-Dimensional Temporal Region that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Year">Year</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
<h4 class="status-header">Added</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Year">Year</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "A Temporal Interval that is equal to the approximate length of time required for an Astronomical Body to complete one Orbital Revolution around its Primary Body as specified relative to a particular Temporal Reference System."@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/Year">Year</a> SubClassOf <a href="http://purl.obolibrary.org/obo/BFO_0000202">temporal interval</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has ending instant <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "has ending instant"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "For Temporal Interval t1 and Temporal Instant t2, t1 has ending instant t2 if and only if no Temporal Instant t3 that is part of t1 is after t2."@en</span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a></span> <ul></ul> </li>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a> InverseOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_ending_instant">has ending instant</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>has starting instant <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "has starting instant"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "For Temporal Interval t1 and Temporal Instant t2, t1 has starting instant t2 if and only if no temporal instant t3 that is part of t1 is before t2."@en</span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a></span> <ul></ul> </li>
<li><span class="axiom"> Functional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a> InverseOf <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/has_starting_instant">has starting instant</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is ending instant of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "is ending instant of"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "For Temporal Instant t1 and Temporal Interval t2, t1 is ending instant of t2 if and only if no Temporal Instant t3 that is part of t2 is after t1."@en</span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a></span> <ul></ul> </li>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_ending_instant_of">is ending instant of</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
</div>
<div class="frame">
<h3>is starting instant of <span class="frame-iri">- http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of</span></h3>
<h4 class="status-header">Removed</h4>
<ul>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a> <a href="http://www.w3.org/2000/01/rdf-schema#label">label</a> "is starting instant of"@en</span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology">is curated in ontology</a> "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^<a href="http://www.w3.org/2001/XMLSchema#anyURI">anyURI</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a> <a href="http://www.ontologyrepository.com/CommonCoreOntologies/definition">definition</a> "For Temporal Instant t1 and Temporal Interval t2, t1 is starting instant of t2 if and only if no Temporal Instant t3 that is part of t2 is before t1."@en</span> <ul></ul> </li>
<li><span class="axiom">ObjectProperty: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a></span> <ul></ul> </li>
<li><span class="axiom"> InverseFunctional: <a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a> Domain <a href="http://purl.obolibrary.org/obo/BFO_0000148">zero-dimensional temporal region</a></span> <ul></ul> </li>
<li><span class="axiom"><a href="http://www.ontologyrepository.com/CommonCoreOntologies/is_starting_instant_of">is starting instant of</a> Range <a href="http://purl.obolibrary.org/obo/BFO_0000038">one-dimensional temporal region</a></span> <ul></ul> </li>
</ul>
</div>
</body>

View File

@@ -1,2 +1,4 @@
## Important Note
The RO slim used by CCO in v1.4 is derived from an old version of RO (2020-12-18). This is due to change introduced in the 2021-06-23 version of RO that changes the meaning of RO_0000052 & RO_0000053, such that it widens the range of entities that can bear (now \"characterize\") a SDC. This is inconsistent with BFO and therefore we do not accept the change.
The Relations Ontology is no longer used. See here (ADD LINK)
TODO: Add brief summary

1227
imports/bfo-core.ttl Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,611 +0,0 @@
@prefix : <http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Upper/2023-04-07/ROImport> ;
rdfs:comment "This file is derived from an old version of RO (2020-12-18). This is due to change introduced in the 2021-06-23 version that changes the meaning of RO_0000052 & RO_0000053, such that it widens the range of entities that can bear (now \"characterize\") a SDC. This is inconsistent with BFO and therefore we do not accept the change."@en ;
<http://purl.org/dc/terms/license> <https://creativecommons.org/publicdomain/zero/1.0/> ;
rdfs:comment "An import module containing a subset of relations from the OBO Relation Ontology (RO) for use in CCO."@en ;
rdfs:label "Relations Ontology Import"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000111
obo:IAO_0000111 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000112
obo:IAO_0000112 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000114
obo:IAO_0000114 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000115
obo:IAO_0000115 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000116
obo:IAO_0000116 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000117
obo:IAO_0000117 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000118
obo:IAO_0000118 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000119
obo:IAO_0000119 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000232
obo:IAO_0000232 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000600
obo:IAO_0000600 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/RO_0001900
obo:RO_0001900 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/RO_0040042
obo:RO_0040042 rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/source
<http://purl.org/dc/elements/1.1/source> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasExactSynonym
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#inSubset
<http://www.geneontology.org/formats/oboInOwl#inSubset> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000050
obo:BFO_0000050 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:BFO_0000051 ;
rdf:type owl:TransitiveProperty ;
obo:IAO_0000111 "is part of"@en ;
obo:IAO_0000112 "my brain is part of my body (continuant parthood, two material entities)"@en ,
"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"@en ,
"this day is part of this year (occurrent parthood)"@en ;
obo:IAO_0000115 "a core relation that holds between a part and its whole"@en ;
obo:IAO_0000116 "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)
A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'."""@en ;
obo:IAO_0000118 "part_of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
obo:RO_0040042 obo:BFO_0000002 ,
obo:BFO_0000003 ,
obo:BFO_0000004 ,
obo:BFO_0000017 ,
obo:BFO_0000019 ,
obo:BFO_0000020 ,
obo:BFO_0000031 ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> obo:valid_for_go_annotation_extension ,
obo:valid_for_go_gp2term ,
obo:valid_for_go_ontology ,
obo:valid_for_gocam ;
rdfs:label "part of"@en ;
rdfs:seeAlso <http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections> ,
<http://ontologydesignpatterns.org/wiki/Submissions:PartOf> ,
"http://www.obofoundry.org/ro/#OBO_REL:part_of" .
### http://purl.obolibrary.org/obo/BFO_0000051
obo:BFO_0000051 rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
obo:IAO_0000111 "has part"@en ;
obo:IAO_0000112 "my body has part my brain (continuant parthood, two material entities)"@en ,
"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en ,
"this year has part this day (occurrent parthood)"@en ;
obo:IAO_0000115 "a core relation that holds between a whole and its part"@en ;
obo:IAO_0000116 "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'."""@en ;
obo:IAO_0000118 "has_part"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> obo:valid_for_go_annotation_extension ,
obo:valid_for_go_ontology ,
obo:valid_for_gocam ;
rdfs:label "has part"@en .
### http://purl.obolibrary.org/obo/BFO_0000054
obo:BFO_0000054 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:BFO_0000055 ;
rdfs:domain obo:BFO_0000017 ;
rdfs:range obo:BFO_0000015 ;
obo:IAO_0000111 "realized in"@en ;
obo:IAO_0000112 "this disease is realized in this disease course"@en ,
"this fragility is realized in this shattering"@en ,
"this investigator role is realized in this investigation"@en ;
obo:IAO_0000118 "is realized by"@en ,
"realized_in"@en ;
obo:IAO_0000600 "[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"@en ;
rdfs:comment "Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process" ;
rdfs:isDefinedBy obo:bfo.owl ;
rdfs:label "realized in"@en .
### http://purl.obolibrary.org/obo/BFO_0000055
obo:BFO_0000055 rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000017 ;
obo:IAO_0000111 "realizes"@en ;
obo:IAO_0000112 "this disease course realizes this disease"@en ,
"this investigation realizes this investigator role"@en ,
"this shattering realizes this fragility"@en ;
obo:IAO_0000600 "to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"@en ;
rdfs:comment "Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process" ;
rdfs:isDefinedBy obo:iao.owl ;
rdfs:label "realizes"@en .
### http://purl.obolibrary.org/obo/BFO_0000066
obo:BFO_0000066 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:BFO_0000067 ;
rdfs:domain obo:BFO_0000003 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( obo:BFO_0000050
obo:BFO_0000066
) ,
( obo:BFO_0000066
obo:BFO_0000050
) ;
obo:IAO_0000111 "occurs in"@en ;
obo:IAO_0000115 "b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s where & b spatially_projects_onto s at t& c is occupies_spatial_region s at t& s is a proper_continuant_part_of s at t"@en ;
obo:IAO_0000118 "occurs_in"@en ,
"unfolds in"@en ,
"unfolds_in"@en ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> obo:valid_for_go_annotation_extension ,
obo:valid_for_go_ontology ,
obo:valid_for_gocam ;
rdfs:comment "Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant" ;
rdfs:isDefinedBy obo:bfo.owl ;
rdfs:label "occurs in"@en .
### http://purl.obolibrary.org/obo/BFO_0000067
obo:BFO_0000067 rdf:type owl:ObjectProperty ;
obo:IAO_0000111 "site of"@en ;
obo:IAO_0000115 "[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s where & b spatially_projects_onto s at t& c is occupies_spatial_region s at t& s is a proper_continuant_part_of s at t"@en ;
rdfs:comment "Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant" ;
rdfs:isDefinedBy obo:bfo.owl ;
rdfs:label "contains process"@en .
### http://purl.obolibrary.org/obo/RO_0000052
obo:RO_0000052 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0000053 ;
obo:IAO_0000111 "inheres in"@en ;
obo:IAO_0000112 "this fragility inheres in this vase"@en ,
"this red color inheres in this apple"@en ;
obo:IAO_0000115 "a relation between a specifically dependent continuant (the dependent) and an independent continuant (the bearer), in which the dependent specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A dependent inheres in its bearer at all times for which the dependent exists."@en ;
obo:IAO_0000118 "inheres_in"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:comment "NOTE: This is term is used within the CCO ecosystem based on it previous intended meaning, which is consistent with BFO in that an SDC must inhere in an IC which is not a Spatial Region."@en ;
rdfs:label "inheres in"@en .
### http://purl.obolibrary.org/obo/RO_0000053
obo:RO_0000053 rdf:type owl:ObjectProperty ;
rdfs:range obo:BFO_0000020 ;
obo:IAO_0000111 "bearer of"@en ;
obo:IAO_0000112 "this apple is bearer of this red color"@en ,
"this vase is bearer of this fragility"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a specifically dependent continuant (the dependent), in which the dependent specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."@en ;
obo:IAO_0000118 "bearer_of"@en ,
"is bearer of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:comment "NOTE: This is term is used within the CCO ecosystem based on it previous intended meaning, which is consistent with BFO in that an SDC must inhere in an IC which is not a Spatial Region."@en ;
rdfs:label "bearer of"@en .
### http://purl.obolibrary.org/obo/RO_0000056
obo:RO_0000056 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0000057 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000003 ;
obo:IAO_0000111 "participates in"@en ;
obo:IAO_0000112 "this blood clot participates in this blood coagulation"@en ,
"this input material (or this output material) participates in this process"@en ,
"this investigator participates in this investigation"@en ;
obo:IAO_0000115 "a relation between a continuant and a process, in which the continuant is somehow involved in the process"@en ;
obo:IAO_0000118 "participates_in"@en ;
rdfs:label "participates in"@en .
### http://purl.obolibrary.org/obo/RO_0000057
obo:RO_0000057 rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000003 ;
rdfs:range obo:BFO_0000002 ;
owl:propertyChainAxiom ( obo:BFO_0000051
obo:BFO_0000055
obo:RO_0000052
) ,
( obo:BFO_0000051
obo:RO_0000057
) ;
obo:IAO_0000111 "has participant"@en ;
obo:IAO_0000112 "this blood coagulation has participant this blood clot"@en ,
"this investigation has participant this investigator"@en ,
"this process has participant this input material (or this output material)"@en ;
obo:IAO_0000115 "a relation between a process and a continuant, in which the continuant is somehow involved in the process"@en ;
obo:IAO_0000116 "Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."@en ;
obo:IAO_0000118 "has_participant"@en ;
<http://purl.org/dc/elements/1.1/source> "http://www.obofoundry.org/ro/#OBO_REL:has_participant" ;
rdfs:label "has participant"@en .
### http://purl.obolibrary.org/obo/RO_0000058
obo:RO_0000058 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0000059 ;
rdfs:domain obo:BFO_0000031 ;
rdfs:range obo:BFO_0000020 ;
obo:IAO_0000112 "A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."@en ,
"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."@en ;
obo:IAO_0000115 "A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."@en ;
rdfs:label "is concretized as"@en .
### http://purl.obolibrary.org/obo/RO_0000059
obo:RO_0000059 rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000020 ;
rdfs:range obo:BFO_0000031 ;
obo:IAO_0000112 "A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."@en ,
"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."@en ;
obo:IAO_0000115 "A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."@en ;
rdfs:label "concretizes"@en .
### http://purl.obolibrary.org/obo/RO_0000079
obo:RO_0000079 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000052 ;
owl:inverseOf obo:RO_0000085 ;
rdfs:domain obo:BFO_0000034 ;
obo:IAO_0000112 "this catalysis function is a function of this enzyme"@en ;
obo:IAO_0000115 "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."@en ;
obo:IAO_0000118 "function_of"@en ,
"is function of"@en ;
rdfs:label "function of"@en .
### http://purl.obolibrary.org/obo/RO_0000080
obo:RO_0000080 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000052 ;
owl:inverseOf obo:RO_0000086 ;
obo:IAO_0000112 "this red color is a quality of this apple"@en ;
obo:IAO_0000115 "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A quality inheres in its bearer at all times for which the quality exists."@en ;
obo:IAO_0000118 "is quality of"@en ,
"quality_of"@en ;
rdfs:label "quality of"@en .
### http://purl.obolibrary.org/obo/RO_0000081
obo:RO_0000081 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000052 ;
owl:inverseOf obo:RO_0000087 ;
obo:IAO_0000112 "this investigator role is a role of this person"@en ;
obo:IAO_0000115 "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."@en ;
obo:IAO_0000118 "is role of"@en ,
"role_of"@en ;
rdfs:label "role of"@en .
### http://purl.obolibrary.org/obo/RO_0000085
obo:RO_0000085 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000053 ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000034 ;
obo:IAO_0000112 "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."@en ;
obo:IAO_0000118 "has_function"@en ;
rdfs:label "has function"@en .
### http://purl.obolibrary.org/obo/RO_0000086
obo:RO_0000086 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000053 ;
rdfs:range obo:BFO_0000019 ;
obo:IAO_0000112 "this apple has quality this red color"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."@en ;
obo:IAO_0000118 "has_quality"@en ;
rdfs:label "has quality"@en .
### http://purl.obolibrary.org/obo/RO_0000087
obo:RO_0000087 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000053 ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000023 ;
obo:IAO_0000112 "this person has role this investigator role (more colloquially: this person has this role of investigator)"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."@en ;
obo:IAO_0000118 "has_role"@en ;
rdfs:label "has role"@en .
### http://purl.obolibrary.org/obo/RO_0000091
obo:RO_0000091 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000053 ;
owl:inverseOf obo:RO_0000092 ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000016 ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"@en ;
rdfs:label "has disposition"@en .
### http://purl.obolibrary.org/obo/RO_0000092
obo:RO_0000092 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000052 ;
obo:IAO_0000115 "inverse of has disposition" ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> obo:RO_0002259 ;
rdfs:label "disposition of"@en .
### http://purl.obolibrary.org/obo/RO_0001000
obo:RO_0001000 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0001001 ;
obo:IAO_0000112 "this cell derives from this parent cell (cell division)"@en ,
"this nucleus derives from this parent nucleus (nuclear division)"@en ;
obo:IAO_0000114 obo:IAO_0000125 ;
obo:IAO_0000115 "a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"@en ;
obo:IAO_0000116 "This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'."@en ;
obo:IAO_0000118 "derives_from"@en ;
obo:IAO_0000232 "This relation is taken from the RO2005 version of RO. It may be obsoleted and replaced by relations with different definitions. See also the 'develops from' family of relations." ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "derives from"@en .
### http://purl.obolibrary.org/obo/RO_0001001
obo:RO_0001001 rdf:type owl:ObjectProperty ;
obo:IAO_0000112 "this parent cell derives into this cell (cell division)"@en ,
"this parent nucleus derives into this nucleus (nuclear division)"@en ;
obo:IAO_0000114 obo:IAO_0000125 ;
obo:IAO_0000115 "a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"@en ;
obo:IAO_0000116 "This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'."@en ;
obo:IAO_0000118 "derives_into"@en ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "derives into"@en .
### http://purl.obolibrary.org/obo/RO_0001015
obo:RO_0001015 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0001025 ;
rdf:type owl:TransitiveProperty ;
obo:IAO_0000111 "is location of"@en ;
obo:IAO_0000112 "my head is the location of my brain"@en ,
"this cage is the location of this rat"@en ;
obo:IAO_0000115 "a relation between two independent continuants, the location and the target, in which the target is entirely within the location"@en ;
obo:IAO_0000116 "Most location relations will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ;
obo:IAO_0000118 "location_of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "location of"@en .
### http://purl.obolibrary.org/obo/RO_0001018
obo:RO_0001018 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0001019 ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( obo:RO_0001025
obo:BFO_0000050
) ;
obo:IAO_0000111 "contained in"@en ;
obo:IAO_0000116 "Containment is location not involving parthood, and arises only where some immaterial continuant is involved." ,
"Containment obtains in each case between material and immaterial continuants, for instance: lung contained_in thoracic cavity; bladder contained_in pelvic cavity. Hence containment is not a transitive relation. If c part_of c1 at t then we have also, by our definition and by the axioms of mereology applied to spatial regions, c located_in c1 at t. Thus, many examples of instance-level location relations for continuants are in fact cases of instance-level parthood. For material continuants location and parthood coincide. Containment is location not involving parthood, and arises only where some immaterial continuant is involved. To understand this relation, we first define overlap for continuants as follows: c1 overlap c2 at t =def for some c, c part_of c1 at t and c part_of c2 at t. The containment relation on the instance level can then be defined (see definition):"@en ,
"""Intended meaning:
domain: material entity
range: spatial region or site (immaterial continuant)
"""@en ;
obo:IAO_0000118 "contained_in"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "contained in"@en .
### http://purl.obolibrary.org/obo/RO_0001019
obo:RO_0001019 rdf:type owl:ObjectProperty ;
obo:IAO_0000111 "contains"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "contains"@en .
### http://purl.obolibrary.org/obo/RO_0001025
obo:RO_0001025 rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( obo:RO_0001025
obo:BFO_0000050
) ;
obo:IAO_0000111 "located in"@en ;
obo:IAO_0000112 "my brain is located in my head"@en ,
"this rat is located in this cage"@en ;
obo:IAO_0000115 "a relation between two independent continuants, the target and the location, in which the target is entirely within the location"@en ;
obo:IAO_0000116 "Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"@en ,
"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ;
obo:IAO_0000118 "located_in"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://purl.org/dc/elements/1.1/source> "http://www.obofoundry.org/ro/#OBO_REL:located_in" ;
rdfs:label "located in"@en .
### http://purl.obolibrary.org/obo/RO_0002000
obo:RO_0002000 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0002002 ;
obo:IAO_0000112 "the surface of my skin is a 2D boundary of my body"@en ;
obo:IAO_0000115 "a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"@en ;
obo:IAO_0000116 "A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."@en ,
"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."@en ;
obo:IAO_0000118 "2D_boundary_of"@en ,
"boundary of"@en ,
"is 2D boundary of"@en ,
"is boundary of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "2D boundary of"@en .
### http://purl.obolibrary.org/obo/RO_0002002
obo:RO_0002002 rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000141 ;
obo:IAO_0000112 "my body has 2D boundary the surface of my skin"@en ;
obo:IAO_0000115 "a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"@en ;
obo:IAO_0000116 "A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."@en ,
"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."@en ;
obo:IAO_0000117 "David Osumi-Sutherland" ;
obo:IAO_0000118 "has boundary"@en ,
"has_2D_boundary"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "has 2D boundary"@en .
### http://purl.obolibrary.org/obo/RO_0002350
obo:RO_0002350 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000050 ;
owl:inverseOf obo:RO_0002351 ;
obo:IAO_0000112 "An organism that is a member of a population of organisms" ;
obo:IAO_0000115 "is member of is a mereological relation between a item and a collection." ;
obo:IAO_0000118 "is member of" ,
"member part of" ;
obo:IAO_0000119 "SIO" ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "member of"@en .
### http://purl.obolibrary.org/obo/RO_0002351
obo:RO_0002351 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000051 ;
rdf:type owl:IrreflexiveProperty ;
obo:IAO_0000115 "has member is a mereological relation between a collection and an item." ;
obo:IAO_0000119 "SIO" ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "has member"@en .
### http://purl.obolibrary.org/obo/RO_0010001
obo:RO_0010001 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:RO_0010002 ;
rdfs:domain obo:BFO_0000031 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( obo:RO_0000052
obo:RO_0000058
) ;
obo:IAO_0000112 "Genetic information generically depend on molecules of DNA." ,
"The novel *War and Peace* generically depends on this copy of the novel." ,
"The pattern shared by chess boards generically depends on any chess board." ,
"The score of a symphony g-depends on a copy of the score." ,
"This pdf file generically depends on this server." ;
obo:IAO_0000115 "A generically dependent continuant *b* generically depends on an independent continuant *c* at time *t* means: there inheres in *c* a specifically deendent continuant which concretizes *b* at *t*." ;
obo:IAO_0000119 "[072-ISO]" ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "g-depends on" ;
rdfs:label "generically depends on" .
### http://purl.obolibrary.org/obo/RO_0010002
obo:RO_0010002 rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000031 ;
owl:propertyChainAxiom ( obo:RO_0000059
obo:RO_0000053
) ;
obo:IAO_0000112 "Molecules of DNA are carriers of genetic information." ,
"This copy of *War and Peace* is carrier of the novel written by Tolstoy." ,
"This hard drive is carrier of these data items." ;
obo:IAO_0000115 "*b* is carrier of *c* at time *t* if and only if *c* *g-depends on* *b* at *t*" ;
obo:IAO_0000119 "[072-ISO]" ;
rdfs:label "is carrier of"@en .
#################################################################
# Classes
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000002
obo:BFO_0000002 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000003
obo:BFO_0000003 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000004
obo:BFO_0000004 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000015
obo:BFO_0000015 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000016
obo:BFO_0000016 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000017
obo:BFO_0000017 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000019
obo:BFO_0000019 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000020
obo:BFO_0000020 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000023
obo:BFO_0000023 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000031
obo:BFO_0000031 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000034
obo:BFO_0000034 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000040
obo:BFO_0000040 rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000141
obo:BFO_0000141 rdf:type owl:Class .
### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi

View File

@@ -1,32 +0,0 @@
http://purl.obolibrary.org/obo/BFO_0000050 # part of
http://purl.obolibrary.org/obo/BFO_0000051 # has part
http://purl.obolibrary.org/obo/BFO_0000054 # realized in
http://purl.obolibrary.org/obo/BFO_0000055 # realizes
http://purl.obolibrary.org/obo/BFO_0000066 # occurs in
http://purl.obolibrary.org/obo/BFO_0000067 # contains process
http://purl.obolibrary.org/obo/RO_0000052 # inheres in
http://purl.obolibrary.org/obo/RO_0000053 # bearer of
http://purl.obolibrary.org/obo/RO_0000056 # participates in
http://purl.obolibrary.org/obo/RO_0000057 # has participant
http://purl.obolibrary.org/obo/RO_0000058 # is concretized as
http://purl.obolibrary.org/obo/RO_0000059 # concretizes
http://purl.obolibrary.org/obo/RO_0000079 # function of
http://purl.obolibrary.org/obo/RO_0000080 # quality of
http://purl.obolibrary.org/obo/RO_0000081 # role of
http://purl.obolibrary.org/obo/RO_0000085 # has function
http://purl.obolibrary.org/obo/RO_0000086 # has quality
http://purl.obolibrary.org/obo/RO_0000087 # has role
http://purl.obolibrary.org/obo/RO_0000091 # has disposition
http://purl.obolibrary.org/obo/RO_0000092 # disposition of
http://purl.obolibrary.org/obo/RO_0001000 # derives from
http://purl.obolibrary.org/obo/RO_0001001 # derives into
http://purl.obolibrary.org/obo/RO_0001015 # location of
http://purl.obolibrary.org/obo/RO_0001018 # contained in
http://purl.obolibrary.org/obo/RO_0001019 # contains
http://purl.obolibrary.org/obo/RO_0001025 # located in
http://purl.obolibrary.org/obo/RO_0002000 # 2D boundary of
http://purl.obolibrary.org/obo/RO_0002002 # has 2D boundary
http://purl.obolibrary.org/obo/RO_0002350 # member of
http://purl.obolibrary.org/obo/RO_0002351 # has member
http://purl.obolibrary.org/obo/RO_0010001 # generically depends on
http://purl.obolibrary.org/obo/RO_0010002 # is carrier of