diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..eb086a7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+catalog-v001.xml
+\results
+*.sparql
diff --git a/AgentOntology.ttl b/AgentOntology.ttl
new file mode 100644
index 0000000..126239e
--- /dev/null
+++ b/AgentOntology.ttl
@@ -0,0 +1,1801 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ rdfs:label "Agent Ontology"^^xsd:string ;
+ rdfs:comment "This ontology is designed to represent agents, especially persons and organizations, and their roles."^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string .
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_capability
+cco:aggregate_has_capability rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:aggregrate_bearer_of ;
+ owl:inverseOf cco:capability_of_aggregate ;
+ rdfs:domain cco:GroupOfAgents ;
+ rdfs:range cco:AgentCapability ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "aggregate has capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/capability_of
+cco:capability_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:realizable_entity_of ;
+ owl:inverseOf cco:has_capability ;
+ rdfs:domain cco:AgentCapability ;
+ rdfs:range cco:Agent ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "capability of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/capability_of_aggregate
+cco:capability_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in_aggregate ;
+ rdfs:domain cco:AgentCapability ;
+ rdfs:range cco:GroupOfAgents ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "capability of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/delimits
+cco:delimits rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_delimited_by ;
+ rdf:type owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain cco:GeopoliticalEntity ;
+ rdfs:range cco:Organization ;
+ cco:definition "An instance of Geopolitical Entity gpe1 delimits some Government g1 iff gpe1 is the area within which g1 can legally exercies its authority."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Delimitation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "delimits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_affiliate
+cco:has_affiliate rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_affiliated_with ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has affiliate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_aunt
+cco:has_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_brother
+cco:has_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_sibling_of ;
+ owl:inverseOf cco:is_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_brother_in_law
+cco:has_brother_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ owl:inverseOf cco:is_brother_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has brother in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_capability
+cco:has_capability rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_realizable_entity ;
+ rdfs:domain cco:Agent ;
+ rdfs:range cco:AgentCapability ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_daughter
+cco:has_daughter rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_parent_of ;
+ owl:inverseOf cco:is_daughter_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has daughter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_daughter_in_law
+cco:has_daughter_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ owl:inverseOf cco:is_daughter_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has daughter in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_familial_relationship_to
+cco:has_familial_relationship_to rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A relationship between persons by virtue of ancestry or legal union."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has familial relationship to"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_father
+cco:has_father rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_child_of ;
+ owl:inverseOf cco:is_father_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has father"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_father_in_law
+cco:has_father_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ owl:inverseOf cco:is_father_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has father in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_granddaughter
+cco:has_granddaughter rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandparent_of ;
+ owl:inverseOf cco:is_granddaughter_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has granddaughter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_grandfather
+cco:has_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandchild_of ;
+ owl:inverseOf cco:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_grandmother
+cco:has_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandchild_of ;
+ owl:inverseOf cco:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_grandson
+cco:has_grandson rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandparent_of ;
+ owl:inverseOf cco:is_grandson_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has grandson"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_half_brother
+cco:has_half_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_half_sibling_of ;
+ owl:inverseOf cco:is_half_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has half brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_half_sister
+cco:has_half_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_half_sibling_of ;
+ owl:inverseOf cco:is_half_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has half sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_husband
+cco:has_husband rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_spouse_of ;
+ owl:inverseOf cco:is_husband_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has husband"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_maternal_aunt
+cco:has_maternal_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_aunt ;
+ owl:inverseOf cco:is_maternal_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has maternal aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_maternal_first_cousin
+cco:has_maternal_first_cousin rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_first_cousin_of ;
+ owl:inverseOf cco:is_maternal_first_cousin_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has maternal first cousin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_maternal_grandfather
+cco:has_maternal_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_grandfather ;
+ owl:inverseOf cco:is_maternal_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has maternal grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_maternal_grandmother
+cco:has_maternal_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_grandmother ;
+ owl:inverseOf cco:is_maternal_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has maternal grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_maternal_uncle
+cco:has_maternal_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_uncle ;
+ owl:inverseOf cco:is_maternal_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has maternal uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_mother
+cco:has_mother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_child_of ;
+ owl:inverseOf cco:is_mother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has mother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_mother_in_law
+cco:has_mother_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ owl:inverseOf cco:is_mother_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has mother in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_nephew
+cco:has_nephew rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_nephew_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has nephew"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_niece
+cco:has_niece rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_niece_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has niece"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_organizational_context
+cco:has_organizational_context rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_organizational_context_of ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range cco:Organization ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has organizational context"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_parent
+cco:has_parent rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has parent"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_paternal_aunt
+cco:has_paternal_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_aunt ;
+ owl:inverseOf cco:is_paternal_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has paternal aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_paternal_first_cousin
+cco:has_paternal_first_cousin rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_first_cousin_of ;
+ owl:inverseOf cco:is_paternal_first_cousin_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has paternal first cousin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_paternal_grandfather
+cco:has_paternal_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_grandfather ;
+ owl:inverseOf cco:is_paternal_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has paternal grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_paternal_grandmother
+cco:has_paternal_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_grandmother ;
+ owl:inverseOf cco:is_paternal_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has paternal grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_paternal_uncle
+cco:has_paternal_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_uncle ;
+ owl:inverseOf cco:is_paternal_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has paternal uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_recipient
+cco:has_recipient rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:receives ;
+ rdfs:range cco:Agent ;
+ cco:definition "has_recipient is a relationship between an Act Of Communication c1 and an Agent a1 such that c1 has_recipient a1 iff a1 is the receiver and decoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has recipient"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_sender
+cco:has_sender rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:sends ;
+ rdfs:range cco:Agent ;
+ cco:definition "has_sender is a relationship between an Act Of Communication c1 and an Agent a1 such that c1 has_sender a1 iff a1 is the initiator and encoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has sender"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_sister
+cco:has_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_sibling_of ;
+ owl:inverseOf cco:is_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_sister_in_law
+cco:has_sister_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ owl:inverseOf cco:is_sister_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has sister in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_son
+cco:has_son rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_parent_of ;
+ owl:inverseOf cco:is_son_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has son"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_son_in_law
+cco:has_son_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ owl:inverseOf cco:is_son_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has son in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_step_brother
+cco:has_step_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_step_sibling_of ;
+ owl:inverseOf cco:is_step_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has step brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_step_sister
+cco:has_step_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_step_sibling_of ;
+ owl:inverseOf cco:is_step_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has step sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_subordinate_role
+cco:has_subordinate_role rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_subordinate_role_to ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "For all x,y,t: x has subordinate role y at t iff: x is an instance of bfo:BFO_0000023 (Role) at time t, and y is an instance of bfo:BFO_0000023 (Role) at time t, and there is some z such that x is realized by z and z is an instance of Act which creates, modifies, transfers, or eliminates some u such that u is an Action Regulation at time t, and u is addressed to the bearer of y."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "has subordinate role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_subsidiary
+cco:has_subsidiary rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_affiliate ;
+ owl:inverseOf cco:is_subsidiary_of ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:Organization ;
+ cco:definition "An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies."^^xsd:string ;
+ cco:definition_source "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has subsidiary"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_uncle
+cco:has_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_wife
+cco:has_wife rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_spouse_of ;
+ owl:inverseOf cco:is_wife_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "has wife"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_affiliated_with
+cco:is_affiliated_with rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ cco:definition "An Agent a1 is affiliated with some Agent a2 by virtue of their having any social or business relationship."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is affiliated with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_ancestor_of
+cco:is_ancestor_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_descendent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is ancestor of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_aunt_of
+cco:is_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_brother_in_law_of
+cco:is_brother_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is brother-in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_brother_of
+cco:is_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_child_of
+cco:is_child_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is child of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_daughter_in_law_of
+cco:is_daughter_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is daughter in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_daughter_of
+cco:is_daughter_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_child_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is daughter of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_delimited_by
+cco:is_delimited_by rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:GeopoliticalEntity ;
+ cco:definition "An instance of Government g1 is_delimited_by some Geopolitical Entity gpe1 iff gpe1 is the area with which g1 can legally exercies its authority"^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Delimitation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "is delimited by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_descendent_of
+cco:is_descendent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is descendent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_father_in_law_of
+cco:is_father_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is father in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_father_of
+cco:is_father_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is father of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_first_cousin_of
+cco:is_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_first_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_grandchild_of
+cco:is_grandchild_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is grandchild of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_granddaughter_of
+cco:is_granddaughter_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandchild_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is granddaughter of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_grandfather_of
+cco:is_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_grandmother_of
+cco:is_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_grandparent_of
+cco:is_grandparent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is grandparent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_grandson_of
+cco:is_grandson_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandchild_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is grandson of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_half_brother_of
+cco:is_half_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_half_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is half-brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_half_sibling_of
+cco:is_half_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_half_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is half-sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_half_sister_of
+cco:is_half_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_half_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is half sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_husband_of
+cco:is_husband_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_spouse_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is husband of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_in_law_of
+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:string ;
+ rdfs:label "is in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_maternal_aunt_of
+cco:is_maternal_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is maternal aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_maternal_first_cousin_of
+cco:is_maternal_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_first_cousin_of ;
+ cco:definition "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:comment "Comment is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"^^xsd:string ;
+ rdfs:label "is maternal first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_maternal_grandfather_of
+cco:is_maternal_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is maternal grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_maternal_grandmother_of
+cco:is_maternal_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is maternal grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_maternal_uncle_of
+cco:is_maternal_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is maternal uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_mother_in_law_of
+cco:is_mother_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is mother in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_mother_of
+cco:is_mother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is mother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_nephew_of
+cco:is_nephew_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is nephew of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_niece_of
+cco:is_niece_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is niece of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_organizational_context_of
+cco:is_organizational_context_of rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:Organization ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "An Organization is a organizational context of a role if a person's affiliation with the organization is a prerequisite for being a bearer of the role or if the organization ascribes the role to some entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is organizational context of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_parent_of
+cco:is_parent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is parent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_paternal_aunt_of
+cco:is_paternal_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is paternal aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_paternal_first_cousin_of
+cco:is_paternal_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_first_cousin_of ;
+ cco:definition "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:comment "Comment is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"^^xsd:string ;
+ rdfs:label "is paternal first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_paternal_grandfather_of
+cco:is_paternal_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is paternal grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_paternal_grandmother_of
+cco:is_paternal_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is paternal grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_paternal_uncle_of
+cco:is_paternal_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is paternal uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_permitted_by
+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:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "is permitted by"^^xsd:string .
+
+
+### 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:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "is prohibited by"^^xsd:string .
+
+
+### 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:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "is required by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_second_cousin_of
+cco:is_second_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_second_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is second cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_sibling_of
+cco:is_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_sister_in_law_of
+cco:is_sister_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is sister-in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_sister_of
+cco:is_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_son_in_law_of
+cco:is_son_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is son in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_son_of
+cco:is_son_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_child_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is son of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_spouse_of
+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:string ;
+ rdfs:label "is spouse of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_step_brother_of
+cco:is_step_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_step_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is step-brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_step_sibling_of
+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:string ;
+ rdfs:label "is step-sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_step_sister_of
+cco:is_step_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_step_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is step-sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_subordinate_role_to
+cco:is_subordinate_role_to rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "is subordinate role to"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_subsidiary_of
+cco:is_subsidiary_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_affiliated_with ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:Organization ;
+ cco:definition "An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. "^^xsd:string ;
+ cco:definition_source "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is subsidiary of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_supervised_by
+cco:is_supervised_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_affiliated_with ;
+ owl:inverseOf cco:supervises ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A person p1 is supervised by a person p2 by virtue of p1 being directed, managed, or overseen by p2."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/supervise)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is supervised by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_third_cousin_of
+cco:is_third_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ owl:inverseOf cco:is_third_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is third cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_uncle_of
+cco:is_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_used_by
+cco:is_used_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:uses ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is used by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_wife_of
+cco:is_wife_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_spouse_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "is wife of"^^xsd:string .
+
+
+### 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 "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "permits"^^xsd:string .
+
+
+### 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 "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "prohibits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/receives
+cco:receives rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain cco:Agent ;
+ cco:definition "receives is a relationship between an Agent a1 and an Act Of Communication c1 such that a1 receives c1 iff a1 is the recipient and decoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "receives"^^xsd:string .
+
+
+### 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 "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology" ;
+ rdfs:label "requires" .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/sends
+cco:sends rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain cco:Agent ;
+ cco:definition "sends is a relationship between an Agent a1 and an Act Of Communication c1 and such that a1 sends c1 iff a1 is the initiator and encoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "sends"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/supervises
+cco:supervises rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_affiliate ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A person p1 supervises a person p2 by virtue of p1 directing, managing, or overseeing p2."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/supervise"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "supervises"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/uses
+cco:uses rdf:type owl:ObjectProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "uses"^^xsd:string .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ActionPermission
+cco:ActionPermission rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( cco:ActionRegulation
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:permits ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf cco:ActionRegulation ;
+ cco:alternative_label "Authorization"^^xsd:string ,
+ "License"^^xsd:string ;
+ cco:definition "An Action Regulation that permits some Act."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Action Permission"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ActionProhibition
+cco:ActionProhibition rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( cco:ActionRegulation
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prohibits ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf cco:ActionRegulation ;
+ cco:definition "An Action Regulation that prohibits some Act."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Action Prohibition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ActionRegulation
+cco:ActionRegulation rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes an Act as required, prohibited, or permitted, and is the output of an Act which realizes some Authority Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Action Regulation"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ActionRequirement
+cco:ActionRequirement rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( cco:ActionRegulation
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:requires ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf cco:ActionRegulation ;
+ cco:alternative_label "Duty"^^xsd:string ,
+ "Obligation"^^xsd:string ;
+ cco:definition "An Action Regulation that requires some Act."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Action Requirement"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Affordance
+cco:Affordance rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ cco:definition "A Realizable Entity of an Independent Continuant that creates an opportunity for an Agent to realize some Capability or Disposition in some Act."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Affordance"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Affordance"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Agent
+cco:Agent rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Organization
+ cco:Person
+ )
+ ]
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom obo:BFO_0000015
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ cco:definition "A Material Entity that is capable of performing Intentional Acts."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Agent"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AgentCapability
+cco:AgentCapability rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ cco:definition "A Realizable Entity that inheres in an Agent to the extent of that Agent's capacity to realize it in Intentional Acts of a certain type."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Agent Capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AllegianceRole
+cco:AllegianceRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Agent by virtue of the support it has committed to provide to another Agent when that Agent is involved in a conflict."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Allegiance Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AlliedPerson
+cco:AlliedPerson rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:AllyRole
+ ] ;
+ rdfs:subClassOf cco:Person ;
+ cco:definition "A Person who is the bearer of some Ally Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Allied Person"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AllyRole
+cco:AllyRole rdf:type owl:Class ;
+ rdfs:subClassOf cco:AllegianceRole ;
+ cco:definition "An Allegiance Role that inheres in an Agent in virtue of that Agent's commitment to perform Acts that support the Objectives of a particular Agent or Group of Agents."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Ally Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArmedForce
+cco:ArmedForce rdf:type owl:Class ;
+ rdfs:subClassOf cco:Organization ;
+ cco:definition "An Organization having the Objective to further the foreign and domestic policies of a Government and to defend that body and the nation it represents from external and internal aggressors."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Armed_forces"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Armed Force"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AuthorityRole
+cco:AuthorityRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that is realized by Acts which create, modify, transfer, or eliminate Action Regulations or other Authority Roles, and inheres in an Agent in virtue of collective acceptance of that Agent's ability to issue binding directives."^^xsd:string ;
+ cco:elucidation "Authority Roles are externally grounded in a social group's collective acceptance of the binding force of the agent's directives. This acceptance can be direct or indirect (e.g., by accepting a procedure for deputizing authority). Such collective acceptance need not be explicit or cognized; rather, collective acceptance can be expressed in the dispositions and attitudes of people toward that agent's directives. In many cases, the directives issued by Authority Roles are backed by threats of punishment or sanction for failure to comply, but the issuing of a directive plus a threat is not sufficient for authority. Rather, an agent's authority must be accepted either directly or indirectly through the acceptance of a procedure for bestowing authority (e.g., elections)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Authority Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BiologicalSex
+cco:BiologicalSex rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality inhering in a bearer by virtue of the bearer's ability to undergo sexual reproduction in order to differentiate the individuals or types involved."^^xsd:string ;
+ cco:definition_source "http://purl.org/obo/owl/PATO#PATO_0000047"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Biological Sex"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BodilyComponent
+cco:BodilyComponent rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000024 ;
+ cco:definition "A Fiat Object Part located within or on the surface of an Agent."^^xsd:string ;
+ cco:definition_source "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3017014/"^^xsd:string ;
+ cco:example_of_usage "Bodily Components include anatomical structures, body flora, pathogens, toxins, and their combinations."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Bodily Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CarrierAirWing
+cco:CarrierAirWing rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryPersonnelForce ;
+ cco:definition "A Military Force that is trained and equipped to conduct air operations while embarked on an aircraft carrier."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Carrier Air Wing"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Citizen
+cco:Citizen rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:CitizenRole
+ ] ;
+ rdfs:subClassOf cco:Person ;
+ cco:definition "A Person who is the bearer of some Citizen Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Citizen"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CitizenRole
+cco:CitizenRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in a Person who is legally recognized as a member of a particular state, with associated rights and obligations."^^xsd:string ;
+ cco:definition_source "http://en.wikitionary.org/wiki/citizen"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Citizen Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CivilOrganization
+cco:CivilOrganization rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( cco:Organization
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:CivilianRole
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf cco:Organization ;
+ cco:definition "An Organization that is not commercial or military and is the bearer of a Civilian Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Civil Organization"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CivilianRole
+cco:CivilianRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Agent or Group of Agents who is not a member of either an Armed Force or police force."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Civilian Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommercialOrganization
+cco:CommercialOrganization rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( cco:Organization
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:CommercialRole
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf cco:Organization ;
+ cco:definition "An Organization that is the bearer of a Commercial Role and whose primary objective is to make a profit from the provision of goods or services."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Commercial Organization"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommercialRole
+cco:CommercialRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Organization by virtue of its establishment as a for-profit business."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Commercial Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ContractorRole
+cco:ContractorRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Agent or Group of Agents who enters into a Contract to provide materials or labor to perform a service or complete a task."^^xsd:string ;
+ cco:elucidation "A Contractor Role differs from an Occupation Role in at least two ways. First, the Contract that binds the two parties together is not one of employment. Second, a Contractor Role is occupationally neutral in that an Agent can be contracted to perform any number of Occupational Roles."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Contractor Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Crew
+cco:Crew rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfPersons ;
+ cco:definition "A Group of Persons that bear Roles realized by the operation of the specified Vehicle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Crew"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Disability
+cco:Disability rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality inhering in an Agent by virtue a physical or mental condition that limits the Agent's movements, senses, or activities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Disability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Disease
+cco:Disease rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ cco:definition "A Disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/OGMS_0000031"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Disease"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EducationalOrganization
+cco:EducationalOrganization rdf:type owl:Class ;
+ rdfs:subClassOf cco:Organization ;
+ cco:definition "An Organization whose purpose is to provide training or otherwise facilitate learning or the acquisition of knowledge, Skills, values, beliefs, or habits."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Education"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Educational Organization"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Enemy
+cco:Enemy rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:EnemyRole
+ ] ;
+ rdfs:subClassOf cco:Person ;
+ cco:definition "A Person who is the bearer of some Enemy Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Enemy"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EnemyRole
+cco:EnemyRole rdf:type owl:Class ;
+ rdfs:subClassOf cco:AllegianceRole ;
+ cco:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent having committed offensive Acts or exhibited intent to perform such Acts towards a particular Agent or Group of Agents or has been declared as hostile by some appropriate authority."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Enemy Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EthnicGroup
+cco:EthnicGroup rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfPersons ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:aggregate_has_quality ;
+ owl:someValuesFrom cco:Ethnicity
+ ] ;
+ cco:definition "A Group of Persons who identify with one another based on one or more shared inherited characteristics such as language, ancestry, nationality, culture, customs, religion, or social experiences."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ethnic_group"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Ethnic Group"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Ethnicity
+cco:Ethnicity rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in its bearers by virtue of a common heritage, often consisting of a common language, a common culture (often including a shared religion) and an ideology that stresses common ancestry or endogamy."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Ethncity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Ethnicity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Eye
+cco:Eye rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ;
+ cco:definition "A Bodily Component that consists of an organ that canonically affords the Agent it is part of with the ability to receive visual stimuli necessary for sight."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Eye"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EyeColor
+cco:EyeColor rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:inheres_in ;
+ owl:someValuesFrom cco:Iris
+ ] ;
+ cco:definition "A Quality inhering in an Eye by virtue of the color of the Eye's Iris."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Eye Color"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FacialHair
+cco:FacialHair rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ;
+ cco:definition "A Bodily Component that consists of a portion of hair that grows on the face of a human (typically male) or other animal."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Facial Hair"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Family
+cco:Family rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfPersons ;
+ cco:definition "A Group of Persons related to one another by ancestry or marriage."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Family"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FemaleSex
+cco:FemaleSex rdf:type owl:Class ;
+ rdfs:subClassOf cco:BiologicalSex ;
+ cco:definition "A Biological Sex inhering in an individual that only produces gametes that can be fertilised by male gametes."^^xsd:string ;
+ cco:definition_source "http://purl.org/obo/owl/PATO#PATO_0000383"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Female Sex"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialValue
+cco:FinancialValue rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A quality that inheres in an independent continuant to the degree that that independent continuant can serve as a medium of exchange in an economic system at a particular time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Financial Value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialValueOfProperty
+cco:FinancialValueOfProperty rdf:type owl:Class ;
+ rdfs:subClassOf cco:FinancialValue ;
+ cco:alternative_label "Property Value"^^xsd:string ;
+ cco:definition "Financial Value that inheres in an material entity that is the object of an Act of Ownership."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Financial Value of Property"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Government
+cco:Government rdf:type owl:Class ;
+ rdfs:subClassOf cco:Organization ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_delimited_by ;
+ owl:someValuesFrom cco:GeopoliticalEntity
+ ] ;
+ cco:definition "An Organization that exercises executive, legislative, or judicial authority over a Geopolitical Entity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Government"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Government"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentAgency
+cco:GovernmentAgency rdf:type owl:Class ;
+ rdfs:subClassOf cco:Organization ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Government Agency"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfAgents
+cco:GroupOfAgents rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000027 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Agent
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:allValuesFrom cco:Agent
+ ] ;
+ cco:definition "An Object Aggregate that has only Agents as parts."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Group of Agents"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfOrganizations
+cco:GroupOfOrganizations rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfAgents ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Organization
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:allValuesFrom cco:Organization
+ ] ;
+ cco:definition "A Group of Agents that has only Organizations as parts."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Group of Organizations"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfPersons
+cco:GroupOfPersons rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfAgents ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Person
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:allValuesFrom cco:Person
+ ] ;
+ cco:definition "A Group of Agents that has only Persons as parts."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Group of Persons"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HairColor
+cco:HairColor rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality inhering in a portion of Hair by virtue of its color."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Hair Color"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Ideology
+cco:Ideology rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationContentEntity ;
+ cco:definition "An Information Content Entity that consists of a collection of claims about how some part of the world is or should be and which is accepted as true by an Agent or Group of Agents such that it forms the basis of their beliefs, goals, expectations, and motivations."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Ideology"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IncorporatedOrganization
+cco:IncorporatedOrganization rdf:type owl:Class ;
+ rdfs:subClassOf cco:Organization ;
+ cco:alternative_label "Corporation"^^xsd:string ;
+ cco:definition "An Organization formed by an Act of Incorporation that consists of an association of individuals, created by law or under authority of law, having a continuous existence independent of the existences of its members and owners, and having powers and liabilities distinct from those of its members and owners."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/corporation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Incorporated Organization"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InterpersonalRelationshipRole
+cco:InterpersonalRelationshipRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in a Person in virtue of the obligations, expectations, or social norms that govern that Person's Intentional Acts within the context of a relationship with another Person."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Interpersonal Relationship Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Iris
+cco:Iris rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ 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."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/iris"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Iris"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LanguageSkill
+cco:LanguageSkill rdf:type owl:Class ;
+ rdfs:subClassOf cco:Skill ;
+ cco:definition "A Skill that is realized by an Act which is prescribed by a Language."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Language Skill"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MaleSex
+cco:MaleSex rdf:type owl:Class ;
+ rdfs:subClassOf cco:BiologicalSex ;
+ cco:definition "A Biological Sex inhering in an individual whose sex organs contain only male gametes."^^xsd:string ;
+ cco:definition_source "http://purl.org/obo/owl/PATO#PATO_0000384"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Male Sex"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryPersonnelForce
+cco:MilitaryPersonnelForce rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArmedForce ;
+ cco:definition "An Armed Force authorized to use deadly force, and weapons, to support the interests of the Government and some or all of its Citizens."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Military"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Military Personnel Force"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NeutralRole
+cco:NeutralRole rdf:type owl:Class ;
+ rdfs:subClassOf cco:AllegianceRole ;
+ cco:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to perfoming Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Neutral Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearFamily
+cco:NuclearFamily rdf:type owl:Class ;
+ rdfs:subClassOf cco:Family ;
+ cco:definition "A Family composed of parents and their children."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Nuclear Family"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Objective
+cco:Objective rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes some projected state that some Agent intends to achieve."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Objective_(goal)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Objective"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OccupationRole
+cco:OccupationRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill within the context of some Act of Employment."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Occupation Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OperationalArea
+cco:OperationalArea rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialLocation ;
+ cco:definition "A Geospatial Location in which an Agent conducts some activity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:comment "This is a general term that applies to both military and civilian activities, such as the Geospatial Region within which a company conducts its business."^^xsd:string ;
+ rdfs:label "Operational Area"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OperatorRole
+cco:OperatorRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Agent by virtue of that Agent's responsibilities to operate or control some Artifact."^^xsd:string ;
+ cco:example_of_usage "the role of driving a car"^^xsd:string ,
+ "the role of flying an airplane"^^xsd:string ,
+ "the role of operating a crane"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Operator Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Organization
+cco:Organization rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfAgents ;
+ cco:definition "A Group of Agents which can be the bearer of roles, has members, and has a set of organization rules."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/OBI_0000245"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:comment "Members of organizations are either Organizations themselves or individual Persons. Members can bear specific Organization Member Roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the Organization by the organization members."^^xsd:string ;
+ rdfs:label "Organization"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationCapability
+cco:OrganizationCapability rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:capability_of ;
+ owl:someValuesFrom cco:Organization
+ ] ;
+ rdfs:subClassOf cco:AgentCapability ;
+ cco:definition "An Agent Capability that inheres in an Organization to the extent of that Organization's capacity to realize it in Intentional Acts of a certain type."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Organization Capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMember
+cco:OrganizationMember rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:OrganizationMemberRole
+ ] ;
+ rdfs:subClassOf cco:Person ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_affiliated_with ;
+ owl:someValuesFrom cco:Organization
+ ] ;
+ cco:definition "A Person who is affiliated with some Organization by being a member of that Organization."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Organization Member"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrganizationMemberRole
+cco:OrganizationMemberRole rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000023 ;
+ cco:definition "A Role that inheres in an Agent in virtue of the responsibilities that Agent is expected to fulfill as a member of some Organization."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Organization Member Role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ParamilitaryForce
+cco:ParamilitaryForce rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArmedForce ;
+ cco:definition "An Armed Force whose organizational structure, training, subculture, and (often) function are similar to those of a professional Military, and which is not included as part of a Government's formal Armed Forces."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Paramilitary"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Paramilitary Force"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Person
+cco:Person rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ cco:definition "An Agent that is a human being."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Person"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PlanSpecification
+cco:PlanSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ 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."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Plan"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Plan"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoliticalOrientation
+cco:PoliticalOrientation rdf:type owl:Class ;
+ rdfs:subClassOf cco:Ideology ;
+ cco:definition "An Ideology that characterizes the political thinking of an Agent or Group of Agents, usually with respect to the political environment within a particular nation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Political Orientation"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Populace
+cco:Populace rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfPersons ;
+ cco:definition "A Group of Persons forming the total population of some Geopolitical Entity."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Populace"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Populace"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Religion
+cco:Religion rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationContentEntity ;
+ cco:definition "An Information Content Entity that consists of a collection of claims about the meaning or origin of existence or about the existence or nature of one or more deities, an afterlife, or spiritual or sacred entities, and which is accepted as true by an Agent or Group of Agents."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/religion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Religion"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Scalp
+cco:Scalp rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ;
+ cco:definition "A Bodily Component that consists of the skin covering the top of the head of a human or other animal."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Scalp"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ScalpHair
+cco:ScalpHair rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ;
+ cco:definition "A Bodily Component that consists of a portion of hair that grows on the scalp of a human or other animal."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Scalp Hair"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Scar
+cco:Scar rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ;
+ cco:definition "A Bodily Component that consists of a portion of fibrous connective tissue on skin or within body tissue and which was formed due to an injury that has not healed completely."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Scar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Scar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ServiceProvider
+cco:ServiceProvider rdf:type owl:Class ;
+ rdfs:subClassOf cco:Organization ;
+ cco:definition "An Organization whose purpose is to provide a service to other Agents."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Service_provider"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Service Provider"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SetOfEyes
+cco:SetOfEyes rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Eye
+ ] ;
+ cco:definition "A Bodily Component that consists of two or more Eyes that are part of a single Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Set of Eyes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Skill
+cco:Skill rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:capability_of ;
+ owl:someValuesFrom cco:Person
+ ] ;
+ rdfs:subClassOf cco:AgentCapability ;
+ cco:definition "An Agent Capability that inheres in a Person to the extent of that Person's capacity to realize it in Intentional Acts of a certain type."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Skill"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SkinType
+cco:SkinType rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality inhering in a portion of skin by virtue of its color and natural tendency to respond to ultraviolet light."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:comment """Skin Type is classified according to a reference system such as the Fitzpatrick scale:
+https://en.wikipedia.org/wiki/Fitzpatrick_scale"""^^xsd:string ;
+ rdfs:label "Skin Type"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SocialNetwork
+cco:SocialNetwork rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroupOfAgents ;
+ cco:definition "A Group of Agents that are connected in dyadic relations by similar personal or career interests, activities, backgrounds, or real-life connections."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Social Network"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Tattoo
+cco:Tattoo rdf:type owl:Class ;
+ rdfs:subClassOf cco:BodilyComponent ;
+ cco:definition "A Bodily Component that consists of a typically permanent mark or design on a portion of skin that is created by a process of pricking and ingraining an indelible pigment or by raising scars."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/tattoo"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Tattoo"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UnalliedPerson
+cco:UnalliedPerson rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom cco:NeutralRole
+ ] ;
+ rdfs:subClassOf cco:Person ;
+ cco:definition "A Person who is the bearer of some Neutral Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:string ;
+ rdfs:label "Neutral"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/AllCoreOntology.ttl b/AllCoreOntology.ttl
new file mode 100644
index 0000000..6f96c34
--- /dev/null
+++ b/AllCoreOntology.ttl
@@ -0,0 +1,16 @@
+@prefix : .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix rdfs: .
+@prefix cco: .
+
+ a owl:Ontology ;
+ owl:imports , , , , ;
+ 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."^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string , "Version 1.1"^^xsd:string ;
+ rdfs:label "All Core Ontology"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string .
+
+# Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/An Overview of the Common Core Ontologies 1.0.docx b/An Overview of the Common Core Ontologies 1.0.docx
new file mode 100644
index 0000000..4924f81
Binary files /dev/null and b/An Overview of the Common Core Ontologies 1.0.docx differ
diff --git a/ArtifactOntology.ttl b/ArtifactOntology.ttl
new file mode 100644
index 0000000..bf78232
--- /dev/null
+++ b/ArtifactOntology.ttl
@@ -0,0 +1,5827 @@
+@prefix : .
+@prefix dc: .
+@prefix bfo: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ rdfs:comment "This ontology is designed to represent artifacts that are common to multiple domains along with their models, specifications, and functions."^^xsd:string ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ rdfs:label "Artifact Ontology"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AcademicDegree
+cco:AcademicDegree rdf:type owl:Class ;
+ rdfs:subClassOf cco:Certificate ;
+ cco:definition "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/degree"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Academic Degree"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Actuator
+cco:Actuator rdf:type owl:Class ;
+ rdfs:subClassOf cco:Transducer ;
+ cco:definition "A Transducer that is designed to convert some control signal into mechanical motion."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Actuator"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Actuator"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AgriculturalFacility
+cco:AgriculturalFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, and fungi for food, fiber, biofuel, medicinal plants, and other products to sustain and enhance human life."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Agriculture"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Agricultural Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AirBreathingCombustionEngine
+cco:AirBreathingCombustionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReactionEngine ;
+ cco:definition "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Engine#Air-breathing_combustion_engines"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Air-Breathing Combustion Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AirBreathingJetEngine
+cco:AirBreathingJetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:JetEngine ;
+ cco:alternative_label "Ducted Jet Engine"^^xsd:string ;
+ cco:definition "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Airbreathing_jet_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Air-Breathing Jet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AirConditioningUnit
+cco:AirConditioningUnit rdf:type owl:Class ;
+ rdfs:subClassOf cco:CoolingSystem ;
+ cco:alternative_label "AC Unit"^^xsd:string ;
+ cco:definition "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Air_conditioning"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Air Conditioning Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AirInlet
+cco:AirInlet rdf:type owl:Class ;
+ rdfs:subClassOf cco:FluidControlArtifact ;
+ cco:alternative_label "Air Intake"^^xsd:string ;
+ cco:definition "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Air Inlet"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Aircraft
+cco:Aircraft rdf:type owl:Class ;
+ rdfs:subClassOf cco:Vehicle ;
+ cco:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Aircraft"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Aircraft"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AircraftManufacturingFacility
+cco:AircraftManufacturingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Factory ;
+ cco:definition "A Factory that is designed to manufacture Aircraft."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Aerospace_manufacturer"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Aircraft Manufacturing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Airport
+cco:Airport rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationFacility ;
+ cco:definition "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Airport"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Airport"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AlkalineElectricBattery
+cco:AlkalineElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:PrimaryCellElectricBattery ;
+ cco:definition "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Alkaline_battery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Alkaline Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AlternatingCurrentPowerSource
+cco:AlternatingCurrentPowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:definition "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Alternating Current Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AmmunitionDepot
+cco:AmmunitionDepot rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store Portions of Ammunition."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ammunition_dump"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ammunition Depot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AntiBacterialArtifactFunction
+cco:AntiBacterialArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:AntiMicrobialArtifactFunction ;
+ cco:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Antibiotics"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Anti-Bacterial Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AntiMicrobialArtifactFunction
+cco:AntiMicrobialArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:PesticideArtifactFunction ;
+ cco:definition "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Antimicrobial"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Anti-Microbial Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ApartmentBuilding
+cco:ApartmentBuilding rdf:type owl:Class ;
+ rdfs:subClassOf cco:ResidentialFacility ;
+ cco:definition "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Apartment"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Apartment Building"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArmoredPersonnelCarrier
+cco:ArmoredPersonnelCarrier rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:acronym "APC"^^xsd:string ;
+ cco:definition "A Ground Motor Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Armoured_personnel_carrier"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Armored Personnel Carrier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Arrow
+cco:Arrow rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:definition "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Arrow"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Arrow"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArticleOfClothing
+cco:ArticleOfClothing rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to cover some portion of a body."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Clothing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Article of Clothing"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArticleOfSolidWaste
+cco:ArticleOfSolidWaste rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfWasteMaterial ;
+ cco:definition "A Portion of Waste Material that has a low liquid content."^^xsd:string ;
+ cco:definition_source "https://stats.oecd.org/glossary/detail.asp?ID=2508"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Article of Solid Waste"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Artifact
+cco:Artifact rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ cco:definition "An Object that was designed by some Agent to realize a certain Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactDesignContentEntity
+cco:ArtifactDesignContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:Artifact
+ ] ;
+ cco:definition "A Directive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Design"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Design"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactDimensionSpecification
+cco:ArtifactDimensionSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:QualitySpecification ;
+ cco:definition "An Quality Specification that prescribes some Size Quality."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Dimension Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunction
+cco:ArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000034 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:inheres_in ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunctionSpecification
+cco:ArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes some Artifact Function and which is part of some Artifact Model."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactHistory
+cco:ArtifactHistory rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000182 ;
+ cco:definition "A History of an Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact History"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactIdentifier
+cco:ArtifactIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Artifact
+ ] ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:definition "A Designative Information Content Entity which designates some Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactLocation
+cco:ArtifactLocation rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000029
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Artifact
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf obo:BFO_0000029 ;
+ cco:definition "A Site that is the location of some Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Location"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactModel
+cco:ArtifactModel rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactDesignContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Model"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactModelName
+cco:ArtifactModelName rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:ArtifactModel
+ ] ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:definition "A Designative Information Content Entity that designates some Artifact Model."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artifact Model Name"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtificialEye
+cco:ArtificialEye rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prosthesis ;
+ cco:definition "A Prosthesis that is designed to replace a missing eye."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Artificial_eye"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Artificial Eye"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AssaultRifle
+cco:AssaultRifle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Rifle ;
+ cco:definition "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Assault_rifle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Assault Rifle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AttitudeControlArtifactFunction
+cco:AttitudeControlArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:alternative_label "Orientation Control Artifact Function"^^xsd:string ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in an attitude control process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Attitude Control Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Automobile
+cco:Automobile rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:definition "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Car"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Automobile"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AutopilotSystem
+cco:AutopilotSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:VehicleControlSystem ;
+ cco:alternative_label "Autopilot"^^xsd:string ;
+ cco:definition "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Autopilot"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Autopilot System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Banknote
+cco:Banknote rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCash ;
+ cco:definition "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Banknote"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BaseOfOperations
+cco:BaseOfOperations rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryBase ;
+ cco:acronym "MOB"^^xsd:string ;
+ cco:alternative_label "Main Operating Base"^^xsd:string ;
+ cco:definition "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."^^xsd:string ;
+ cco:definition_source "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Base of Operations"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BatteryTerminal
+cco:BatteryTerminal rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:definition "An Electrical Power Source Component that is designed to connect a load or charger to a single or multiple-cell Battery."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Battery_terminal"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Battery Terminal"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BearingArtifactFunction
+cco:BearingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes in which the Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bearing_(mechanical)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bearing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BeverageAntenna
+cco:BeverageAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:WireAntenna ;
+ cco:definition "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."^^xsd:string ;
+ cco:definition_source "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Beverage Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Bicycle
+cco:Bicycle rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundVehicle ;
+ cco:definition "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bicycle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bicycle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BidirectionalTransducer
+cco:BidirectionalTransducer rdf:type owl:Class ;
+ rdfs:subClassOf cco:Transducer ;
+ cco:definition "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transducer#Bidirectional"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bidirectional Transducer"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BiologicalWeapon
+cco:BiologicalWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Biological_warfare"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Biological Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Biological_Depot
+cco:Biological_Depot rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store biological agents."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Biological Depot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Bond
+cco:Bond rdf:type owl:Class ;
+ rdfs:subClassOf cco:FinancialInstrument ;
+ cco:definition "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bond_(finance)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bond"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BondCertificate
+cco:BondCertificate rdf:type owl:Class ;
+ rdfs:subClassOf cco:Bond ;
+ cco:definition "A Bond that consists of a Certificate."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bond Certificate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Book
+cco:Book rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Book"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Book"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Bow
+cco:Bow rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProjectileLauncher ;
+ cco:definition "A Projectile Launcher that is designed to launch Arrows."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bow_and_arrow"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bow"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Brake
+cco:Brake rdf:type owl:Class ;
+ rdfs:subClassOf cco:VehicleControlSystemComponent ;
+ cco:definition "A Vehicle Control System Component that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Brake"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Brake"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BrakeControlSystem
+cco:BrakeControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:VehicleControlSystem ;
+ cco:definition "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Brake Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Bridge
+cco:Bridge rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bridge"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bridge"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Bullet
+cco:Bullet rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:definition "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bullet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bullet"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Bus
+cco:Bus rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:definition "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bus"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Bus"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CabinPressurizationControlSystem
+cco:CabinPressurizationControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:EnvironmentControlSystem ;
+ cco:definition "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cabin_pressurization"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cabin Pressurization Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Camera
+cco:Camera rdf:type owl:Class ;
+ rdfs:subClassOf cco:ImagingInstrument ;
+ cco:definition "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/camera"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Camera"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Canal
+cco:Canal rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Canal"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Canal"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Cannon
+cco:Cannon rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProjectileLauncher ;
+ cco:definition "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cannon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cannon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CargoCabin
+cco:CargoCabin rdf:type owl:Class ;
+ rdfs:subClassOf cco:VehicleCompartment ;
+ cco:definition "A Vehicle Compartment that is used to store goods or materials during transportation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cargo Cabin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Cartridge
+cco:Cartridge rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:definition "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cartridge_(firearms)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cartridge"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CatadioptricOpticalTelescope
+cco:CatadioptricOpticalTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalTelescope ;
+ cco:alternative_label "Catadioptric Telescope"^^xsd:string ;
+ cco:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Catadioptric_system#Catadioptric_telescopes"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Catadioptric Optical Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CatalystArtifactFunction
+cco:CatalystArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
+ cco:definition "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Catalysis"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Catalyst Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CellularTelecommunicationNetwork
+cco:CellularTelecommunicationNetwork rdf:type owl:Class ;
+ rdfs:subClassOf cco:WirelessTelecommunicationNetwork ;
+ cco:alternative_label "Cellular Network"^^xsd:string ,
+ "Mobile Telecommunication Network"^^xsd:string ;
+ cco:definition "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cellular_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cellular Telecommunication Network"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Certificate
+cco:Certificate rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/degree"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Certificate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Chart
+cco:Chart rdf:type owl:Class ;
+ rdfs:subClassOf cco:Image ;
+ cco:definition "An Image that is designed to represent an Information Content Entity by means of Written Symbols in order to convey that information in a readily understandable format."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Chart"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalDepot
+cco:ChemicalDepot rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store chemicals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Chemical Depot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalManufacturingFacility
+cco:ChemicalManufacturingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Factory ;
+ cco:definition "A Factory that is designed to manufacture or process chemicals."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Chemical_industry"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Chemical Manufacturing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalReactionArtifactFunction
+cco:ChemicalReactionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Chemical_reaction"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Chemical Reaction Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalWeapon
+cco:ChemicalWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Chemical_weapon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Chemical Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Church
+cco:Church rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReligiousFacility ;
+ cco:definition "A Religious Facility that is designed for Christian worship and prayer."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Church_(building)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Church"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CircuitBreaker
+cco:CircuitBreaker rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:definition "An Electrical Power Source Component that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Circuit_breaker"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Circuit Breaker"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CleaningArtifactFunction
+cco:CleaningArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes in which some Artifact is used to remove foreign objects from another object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cleaning Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CodeList
+cco:CodeList rdf:type owl:Class ;
+ rdfs:subClassOf cco:List ;
+ cco:definition "A List that represents an ordered sequence of Information Bearing Entities that bear Code Identifiers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Code List"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Coin
+cco:Coin rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCash ;
+ cco:definition "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Coin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CollimationArtifactFunction
+cco:CollimationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in a collimation event in which the Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Collimation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CombatOutpost
+cco:CombatOutpost rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryFacility ;
+ cco:definition "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Outpost_(military)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Combat Outpost"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CombustionChamber
+cco:CombustionChamber rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:alternative_label "Burner"^^xsd:string ,
+ "Combustor"^^xsd:string ,
+ "Flame Holder"^^xsd:string ;
+ cco:definition "An Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Combustion Chamber"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CombustionEngine
+cco:CombustionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:HeatEngine ;
+ cco:definition "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Combustion Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommandPostFacility
+cco:CommandPostFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryFacility ;
+ cco:definition "A Military Facility that is designed to support the command and control of Military Operations or Forces."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/command-post"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Command Post Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommonStock
+cco:CommonStock rdf:type owl:Class ;
+ rdfs:subClassOf cco:Stock ;
+ cco:definition "Stock that entitles its holder to voting on corporate decisions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Common Stock"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationArtifactFunction
+cco:CommunicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationInstrument
+cco:CommunicationInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to facilitate communication between at least two entities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationInterferenceArtifactFunction
+cco:CommunicationInterferenceArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information for the purpose of preventing communication."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication Interference Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationReceptionArtifactFunction
+cco:CommunicationReceptionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to receive information that has been transmitted for the purpose of communiction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication Reception Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationRelayArtifactFunction
+cco:CommunicationRelayArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information from one Artifact to another for the purpose of communiction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication Relay Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationSystem
+cco:CommunicationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Communications_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationsFacility
+cco:CommunicationsFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is the bearer of functions realized in processes of receiving or transmitting information."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communications Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CompressionIgnitionEngine
+cco:CompressionIgnitionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:InternalCombustionEngine ;
+ cco:definition "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Compression Ignition Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CompressionIgnitionSystem
+cco:CompressionIgnitionSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:IgnitionSystem ;
+ cco:definition "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Compression Ignition System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Computer
+cco:Computer rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationProcessingArtifact ;
+ cco:definition "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Computer"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Computer"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ComputerNetwork
+cco:ComputerNetwork rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationNetwork ;
+ cco:alternative_label "Data Network"^^xsd:string ;
+ cco:definition "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Computer_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Computer Network"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ComputingArtifactFunction
+cco:ComputingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in a computation process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Computing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Container
+cco:Container rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to contain (wholly or partially) some material entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Container"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ContainingArtifactFunction
+cco:ContainingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which one entity contains another."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/containing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Containing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ControlSurface
+cco:ControlSurface rdf:type owl:Class ;
+ rdfs:subClassOf cco:SteeringControlComponent ;
+ cco:definition "A Steering Control Component that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Flight_control_surfaces"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Control Surface"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ControlSystem
+cco:ControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Artifact."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Control_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ControlledAccessHighway
+cco:ControlledAccessHighway rdf:type owl:Class ;
+ rdfs:subClassOf cco:Highway ;
+ cco:alternative_label "Expressway"^^xsd:string ,
+ "Freeway"^^xsd:string ,
+ "Motorway"^^xsd:string ;
+ cco:definition "A Highway that is designed for high-speed vehicular traffic, with all traffic flow and ingress/egress regulated."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Controlled-access_highway"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Controlled-Access Highway"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ConvergentDivergentNozzle
+cco:ConvergentDivergentNozzle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Nozzle ;
+ cco:alternative_label "CD Nozzle"^^xsd:string ,
+ "de Laval Nozzle"^^xsd:string ;
+ cco:definition "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/De_Laval_nozzle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."^^xsd:string ;
+ rdfs:label "Convergent-Divergent Nozzle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ConveyanceArtifactFunction
+cco:ConveyanceArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MotionArtifactFunction ;
+ cco:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Vehicle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Conveyance Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoolingArtifactFunction
+cco:CoolingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cooling Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoolingSystem
+cco:CoolingSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:EnvironmentControlSystem ;
+ cco:definition "An Environment Control System that is designed to cool the air or objects in a Site."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cooling System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CounterfeitFinancialInstrument
+cco:CounterfeitFinancialInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:CounterfeitInstrument ;
+ cco:definition "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Counterfeit_money"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Counterfeit Financial Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CounterfeitInstrument
+cco:CounterfeitInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a fake replica of some genuine Artifact."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Counterfeit"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Counterfeit Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CounterfeitLegalInstrument
+cco:CounterfeitLegalInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:CounterfeitInstrument ;
+ cco:definition "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Counterfeit#Counterfeiting_of_documents"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Counterfeit Legal Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Coupling
+cco:Coupling rdf:type owl:Class ;
+ rdfs:subClassOf cco:MachineElement ;
+ cco:definition "A Machine Element that is designed to connect two Shafts together at their ends for the purpose of transmitting power."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Coupling"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Coupling"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoveringArtifactFunction
+cco:CoveringArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which an entity is covered."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/covering"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Covering Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CrushingArtifactFunction
+cco:CrushingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:DamagingArtifactFunction ;
+ cco:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/crushing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Crushing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CryogenicStorageDewar
+cco:CryogenicStorageDewar rdf:type owl:Class ;
+ rdfs:subClassOf cco:Container ;
+ cco:definition "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cryogenic_storage_dewar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cryogenic Storage Dewar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CurrentConversionArtifactFunction
+cco:CurrentConversionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalArtifactFunction ;
+ cco:definition "An Electrical Artifact Function that is realized by processes in which some Artifact is used to convert some electrical current."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Current Conversion Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CuttingArtifactFunction
+cco:CuttingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:DamagingArtifactFunction ;
+ cco:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/cutting"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cutting Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CuttingWeapon
+cco:CuttingWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cutting"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cutting Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Dam
+cco:Dam rdf:type owl:Class ;
+ rdfs:subClassOf cco:Infrastructure ;
+ cco:definition "An Infrastructure that is designed to impound surface water or underground streams."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Dam"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Dam"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DamagingArtifactFunction
+cco:DamagingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Damaging Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Database
+cco:Database rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some set of specific Information Content Entities and to be rapidly searchable and retrievable."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Database"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Database"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DeceptionArtifactFunction
+cco:DeceptionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes which misinform or mislead some other entity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Deception"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Deception Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecontaminationFacility
+cco:DecontaminationFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:WashingFacility ;
+ cco:definition "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Decontamination"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Decontamination Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Decoy
+cco:Decoy rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to distract or conceal what an individual or group might be looking for."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Decoy"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Decoy"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DeflectingPrism
+cco:DeflectingPrism rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prism ;
+ cco:definition "A Prism designed to deflect a beam of light entering the Prism by a fixed angle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Deflecting Prism"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DefoliantArtifactFunction
+cco:DefoliantArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:HerbicideArtifactFunction ;
+ cco:definition "An Herbicide Artifact Function that is realized in a process that causes a plant to lose its leaves."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Defoliant"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Defoliant Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Denture
+cco:Denture rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prosthesis ;
+ cco:definition "A Prosthesis that is designed to replace missing teeth."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Dentures"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Denture"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DetergentArtifactFunction
+cco:DetergentArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SurfactantArtifactFunction ;
+ cco:definition "A Surfactant Artifact Function that is realized in a process that cleans substances in dilute solutions."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Detergent"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Detergent Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DetonatingArtifactFunction
+cco:DetonatingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes of combustion involving a supersonic exothermic front accelerating through a medium that eventually drives a shock front propagating directly in front of it."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Detonation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Detonating Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DiffractionArtifactFunction
+cco:DiffractionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in a diffraction event in which the Artifact forces a wave to bend around the corners of an obstacle or aperture into the region of geometrical shadow of the obstacle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Diffraction Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DiffractionGrating
+cco:DiffractionGrating rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalInstrument ;
+ cco:definition "An Optical Instrument with a periodic structure that is designed to split and defract a beam of light into several beams travelling in different directions."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Diffraction_grating"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Diffraction Grating"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DigitalStorageDevice
+cco:DigitalStorageDevice rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationMediumArtifact ;
+ cco:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of recording that information in digital (binary) format."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Data_storage_device"^^xsd:string ;
+ cco:example_of_usage "A computer's Hard Disk Drive"^^xsd:string ,
+ "A portable USB Drive"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Digital Storage Device"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DirectCurrentPowerSource
+cco:DirectCurrentPowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:definition "An Electrical Power Source that is designed to transfer electrical power in the form of direct current."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Direct Current Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DishReceiver
+cco:DishReceiver rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioReceiver ;
+ cco:definition "A Radio Receiver that uses a Parabolic (or Dish) Antenna to intercept radio signals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Dish Receiver"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DispersivePrism
+cco:DispersivePrism rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prism ;
+ cco:definition "A Prism designed to break up a beam of light entering the Prism into its constituent spectral colors by leveraging the refractive index of light based on its Frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Dispersive Prism"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DistanceMeasurementArtifactFunction
+cco:DistanceMeasurementArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementArtifactFunction ;
+ cco:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the spatial Distance to a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Distance Measurement Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DistributionPort
+cco:DistributionPort rdf:type owl:Class ;
+ rdfs:subClassOf cco:Port ;
+ cco:definition "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Port#Distribution"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Distribution Port"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Document
+cco:Document rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in a series of paragraphs of text or diagrams in the form of physical pieces of paper or an electronic word processor file."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Document"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Document"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EducationArtifactFunction
+cco:EducationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of transmiting accumulated knowledge skills and values from one generation to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Education"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Education Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EducationalFacility
+cco:EducationalFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Education"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Educational Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricBattery
+cco:ElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:alternative_label "Battery"^^xsd:string ;
+ cco:definition "An Electrical Power Source that is designed to produce electric power by converting chemical energy to electrical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Battery_(electricity)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricGenerator
+cco:ElectricGenerator rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:definition "An Electrical Power Source that is designed to convert mechanical energy to electrical energy for use in an external circuit."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electric_generator"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electric Generator"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricMotor
+cco:ElectricMotor rdf:type owl:Class ;
+ rdfs:subClassOf cco:Engine ;
+ cco:alternative_label "Electric Engine"^^xsd:string ;
+ cco:definition "An Engine that is designed to convert electrical energy into mechanical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electric_motor"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electric Motor"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricPowerStation
+cco:ElectricPowerStation rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:alternative_label "Power Plant"^^xsd:string ;
+ cco:definition "A Facility that is designed to generate electrical power."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Power_station"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electric Power Station"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalArtifactFunction
+cco:ElectricalArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to perform a process involving electrical power."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalConductionArtifactFunction
+cco:ElectricalConductionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalArtifactFunction ;
+ cco:definition "An Electrical Artifact Function that is realized by an Artifact being used to conduct an electric current."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Conduction Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalConnectorArtifactFunction
+cco:ElectricalConnectorArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalConductionArtifactFunction ;
+ cco:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used to join electrical terminations to create an electrical circuit."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Connector Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalContactArtifactFunction
+cco:ElectricalContactArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalConductionArtifactFunction ;
+ cco:definition "An Electrical Conduction Artifact Function that is realized by processes in which some Artifact is used as an endpoint of an electrical circuit from which an electrical current is passed via physical contact with the endpoint."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Contact Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalPowerProductionArtifactFunction
+cco:ElectricalPowerProductionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalArtifactFunction ;
+ cco:definition "An Electrical Artifact Function that is realized during events in which an Artifact is used to generate electrical power."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Power Production Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalPowerSource
+cco:ElectricalPowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerSource ;
+ cco:definition "A Power Source that is designed to generate, control, and transfer power in the form of electrical energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalPowerSourceComponent
+cco:ElectricalPowerSourceComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerSourceComponent ;
+ cco:definition "A Power Source Component that is designed to be a component of some Electrical Power Source."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Power Source Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricalPowerStorageArtifactFunction
+cco:ElectricalPowerStorageArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalArtifactFunction ;
+ cco:alternative_label "Capacitance"^^xsd:string ;
+ cco:definition "An Electrical Artifact Function that is realized during events in which an Artifact is used to store electrical power to be released at a later time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Power Storage Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticCommunicationArtifactFunction
+cco:ElectromagneticCommunicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationArtifactFunction ;
+ cco:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of electromagnetic radiation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telecommunication"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Communication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticInductionArtifactFunction
+cco:ElectromagneticInductionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by processes in which some Artifact that is used to produce electromotive force across an electrical conductor due to its dynamic interaction with a magnetic field."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_induction"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Induction Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticShieldingArtifactFunction
+cco:ElectromagneticShieldingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which an electromagnetic field is blocked by barriers made of conductive or magnetic materials."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_shielding"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Shielding Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectronMicroscope
+cco:ElectronMicroscope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Microscope ;
+ cco:definition "A Microscope that is designed to use a beam of accelerated electrons to illuminate the target and produce a significantly enlarged image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electron_microscope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electron Microscope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectronicBond
+cco:ElectronicBond rdf:type owl:Class ;
+ rdfs:subClassOf cco:Bond ;
+ cco:definition "A Bond that consists of Bytes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electronic Bond"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectronicCash
+cco:ElectronicCash rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCash ;
+ cco:definition "A Portion of Cash that consists of Bytes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electronic Cash"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectronicComponent
+cco:ElectronicComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that consists of a basic discrete device or physical entity in an electronic system that is used to affect electrons or their associated fields."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electronic_component"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electronic Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectronicSignalProcessingArtifactFunction
+cco:ElectronicSignalProcessingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SignalProcessingArtifactFunction ;
+ cco:definition "A Signal Processing Artifact Function that inheres in Artifacts that are designed to process or transfer information contained in electronic signals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electronic Signal Processing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectronicStock
+cco:ElectronicStock rdf:type owl:Class ;
+ rdfs:subClassOf cco:Stock ;
+ cco:definition "Stock that consists of Bytes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electronic Stock"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EmailBox
+cco:EmailBox rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationInstrument ;
+ cco:definition "A Telecommunication Instrument that is designed to be the delivery destination of Email Messages that are addressed to the corresponding Email Address."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Email_box"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Email Box"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EmailMessage
+cco:EmailMessage rdf:type owl:Class ;
+ rdfs:subClassOf cco:Message ;
+ cco:definition "A Message that is transmitted to the recipient's Email Box."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Email"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Email Message"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EmergencyACDCPowerSource
+cco:EmergencyACDCPowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:definition "An Electrical Power Source that is designed to provide electrical power in an emergency situation by means of both alternating current and direct current."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Emergency AC/DC Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EmergencyLocatorTransmitter
+cco:EmergencyLocatorTransmitter rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioTransmitter ;
+ cco:definition "A Radio Transmitter that is designed to signal distress and provide positional data for the entity it is located on."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Emergency_position-indicating_radiobeacon_station#Emergency_Locator_Transmitters"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Emergency Locator Transmitter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EmulsifierArtifactFunction
+cco:EmulsifierArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
+ cco:definition "A Chemical Reaction Artifact Function that is realized in a process in which two or more liquids that are normally immiscible are mixed."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Emulsion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Emulsifier Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Engine
+cco:Engine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:alternative_label "Motor"^^xsd:string ;
+ cco:definition "An Artifact that is designed to convert one form of energy into mechanical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EnhancingArtifactFunction
+cco:EnhancingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes of intensifying, increainsg, or further improving the quality, value, or extent of some entity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Enhancement"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Enhancing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EntertainmentFacility
+cco:EntertainmentFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to hold the interest of, or give pleasure or delight to, an audience."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Entertainment"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Entertainment Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EnvironmentControlSystem
+cco:EnvironmentControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to control the temperature, air quality, or other feature of a Site that is relevant to the comfort or operation of entities located within that Site."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Controlling air quality typically involves temperature control, oxygen replenishment, and removal of moisture, odor, smoke, heat, dust, airborne bacteria, carbon dioxide, and other undesired gases or particulates."^^xsd:string ;
+ rdfs:label "Environment Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EquipmentCoolingSystem
+cco:EquipmentCoolingSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:CoolingSystem ;
+ cco:definition "A Cooling System that is designed to cool some piece of equipment."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Equipment Cooling System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EquipmentMount
+cco:EquipmentMount rdf:type owl:Class ;
+ rdfs:subClassOf cco:MachineElement ;
+ cco:definition "A Machine Element that is designed to support an Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Equipment Mount"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ExplosiveArtifactFunction
+cco:ExplosiveArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:DamagingArtifactFunction ;
+ cco:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired beucase of the rapid increase in volume and release of energy in an extreme manner."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/explosive"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Explosive Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ExplosiveWeapon
+cco:ExplosiveWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:alternative_label "Bomb"^^xsd:string ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a violent release of energy caused by the exothermic reaction of an explosive material."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Explosive_weapon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Explosive Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ExternalCombustionEngine
+cco:ExternalCombustionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:CombustionEngine ;
+ cco:definition "A Combustion Engine that is designed to have an external Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy to heat the working fluid, which transfers energy to the Engine where it is converted into mechanical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/External_combustion_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "External Combustion Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ExternalNavigationLightingSystem
+cco:ExternalNavigationLightingSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:LightingSystem ;
+ cco:definition "A Lighting System that is designed to be attached to some Vehicle and to emit colored light in order to signal that Vehicle's position, heading, and status."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Navigation_light"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "External Navigation Lighting System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Facility
+cco:Facility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed as a building or campus dedicated to some specific purpose."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Factory
+cco:Factory rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for manufacturing or refining material products."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Factory"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Factory"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Fan
+cco:Fan rdf:type owl:Class ;
+ rdfs:subClassOf cco:FluidControlArtifact ;
+ cco:definition "A Fluid Control Artifact that consists of a rotating arrangement of vanes or blades that are designed to act on a portion of fluid to create flow within it."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fan_(machine)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fan"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Farm
+cco:Farm rdf:type owl:Class ;
+ rdfs:subClassOf cco:AgriculturalFacility ;
+ cco:definition "An Agricultural Facility that is designed to produce food and other crops."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Farm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Farm"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FertilizerArtifactFunction
+cco:FertilizerArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:EnhancingArtifactFunction ;
+ cco:definition "An Enhancing Artifact Function that is realized in processes of supplying soilds or plant tissues with one or more plant nutrients essential to growth."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fertilizer"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fertilizer Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Filter
+cco:Filter rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to restrict access to the system it is part of by separating the entities that enter the Filter and only allowing entities of the specified type or with the specified properties to pass through."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment """Although its basic function remains the same, a Filter can be used in 2 different ways:
+(1) to allow only the desired entities to pass through (e.g. removing dirt from engine oil); or
+(2) to allow everything except the desired entities to pass through (e.g. panning for gold)."""^^xsd:string ;
+ rdfs:label "Filter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FiltrationArtifactFunction
+cco:FiltrationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which some solid entity is prevented from moving along with some quantity of liquid."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Filtration"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Filtration Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialArtifactFunction
+cco:FinancialArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of managing money."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Finance"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Financial Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialFacility
+cco:FinancialFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to support the management of money."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Finance"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Financial Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialInstrument
+cco:FinancialInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a tradeable asset and that is legally sanctioned."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Finance"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Financial Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FireStation
+cco:FireStation rdf:type owl:Class ;
+ rdfs:subClassOf cco:PublicSafetyFacility ;
+ cco:alternative_label "Fire Hall"^^xsd:string ,
+ "Fire House"^^xsd:string ;
+ cco:definition "A Public Safety Facility that is designed for the storage of firefighting apparatus."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fire_station"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fire Station"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Firearm
+cco:Firearm rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProjectileLauncher ;
+ cco:definition "A Projectile Launcher that is designed to launch Bullets or Cartridges."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Firearm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Firearm"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FlightTransponder
+cco:FlightTransponder rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioTransponder ;
+ cco:definition "A Radio Transponder that is designed to produce a specified response (typically for identification, location, or status update purposes) when it receives a radio-frequency interrogation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transponder_%28aeronautics%29"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Flight Transponder"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FlowControlValve
+cco:FlowControlValve rdf:type owl:Class ;
+ rdfs:subClassOf cco:Valve ;
+ cco:definition "A Valve that is designed to regulate the flow or Pressure of a fluid."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Flow_control_valve"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Flow Control Valves are often more complex than a simple Valve and typically include an Actuator that is capable of automatically adjusting the state of the valve in response to signals from a connected Sensor or Controller."^^xsd:string ;
+ rdfs:label "Flow Control Valve"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FluidControlArtifact
+cco:FluidControlArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to manipulate the flow of a fluid (i.e. a liquid or a gas)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fluid Control Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FluidControlArtifactComponent
+cco:FluidControlArtifactComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a component of some Fluid Control Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fluid Control Artifact Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FluidControlArtifactFunction
+cco:FluidControlArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes in which some Artifact is used to control the direction or flow of some fluid."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fluid Control Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Flywheel
+cco:Flywheel rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to store rotational energy such that it has a significant moment of inertia which enables it to resist changes in rotational speed."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Flywheel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Flywheel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Fort
+cco:Fort rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryFacility ;
+ cco:definition "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fortification"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fort"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ForwardOperationsBase
+cco:ForwardOperationsBase rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryBase ;
+ cco:acronym "FOB"^^xsd:string ;
+ cco:alternative_label "Forward Operating Base"^^xsd:string ;
+ cco:definition "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Forward_operating_base"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Forward Operations Base"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FossilFuelPowerPlant
+cco:FossilFuelPowerPlant rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricPowerStation ;
+ cco:definition "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fossil_fuel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fossil Fuel Power Plant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FragmentationArtifactFunction
+cco:FragmentationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:DamagingArtifactFunction ;
+ cco:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of a detonation which causes fragmentation."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/fragmentation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fragmentation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FragranceArtifactFunction
+cco:FragranceArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes of perceiving a pleasant or sweet odor."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Perfume"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fragrance Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FreightTrainCar
+cco:FreightTrainCar rdf:type owl:Class ;
+ rdfs:subClassOf cco:TrainCar ;
+ cco:alternative_label "Freight Car"^^xsd:string ;
+ cco:definition "A Train Car that is designed to transport cargo."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Goods_wagon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Freight Train Car"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FrequencyMeasurementArtifactFunction
+cco:FrequencyMeasurementArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementArtifactFunction ;
+ cco:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Frequency of a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Frequency Measurement Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FrictionReductionArtifactFunction
+cco:FrictionReductionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes of reducing the force resisting the relative motion of surfaces in contact."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Friction"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Friction Reduction Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelArtifactFunction
+cco:FuelArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes of reacting with other substances in order to release chemical or nuclear energy as heat or ot be used for work."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fuel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelCell
+cco:FuelCell rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:definition "An Electrical Power Source that consists in part of an anode, a cathode, and an electrolyte; converts chemical energy from a fuel into electricity through a chemical reaction of positively charged hydrogen ions with an oxidizing agent (typically oxygen); and, if given a continuous source of fuel and oxidizing agent, can continuously produce electricity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fuel_cell"^^xsd:string ;
+ cco:elucidation "A Fuel Cell differs from a Battery in that it requires a continuous source of fuel and oxygen to sustain the chemical reaction, whereas a Battery only uses chemicals already stored inside it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel Cell"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelSystem
+cco:FuelSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to pump, manage, and deliver some Portion of Fuel to the Propulsion System and Auxiliary Power Unit of some Vehicle."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Aircraft_fuel_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelSystemComponent
+cco:FuelSystemComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a component of some Fuel System."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel System Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelTank
+cco:FuelTank rdf:type owl:Class ;
+ rdfs:subClassOf cco:Container ;
+ cco:definition "A Container that is designed to store a Portion of Fuel."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel Tank"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelTransferSystem
+cco:FuelTransferSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:FuelSystemComponent ;
+ cco:definition "A Fuel System Component that is designed to facilitate the transfer of some Portion of Fuel from the Fuel Tank for use in some Engine."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel Transfer System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelVentilationSystem
+cco:FuelVentilationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:FuelSystemComponent ;
+ cco:definition "A Fuel System Component that is designed to allow air into the Fuel Tank to take the place of burned fuel."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Aircraft_fuel_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel Ventilation System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FullMotionVideoCamera
+cco:FullMotionVideoCamera rdf:type owl:Class ;
+ rdfs:subClassOf cco:VideoCamera ;
+ cco:definition "A Video Camera that is designed to capture and record images of sufficiently high quality and in rapid enough succession that the resulting video supports smooth playback."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Full Motion Video Camera"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FullMotionVideoImagingArtifactFunction
+cco:FullMotionVideoImagingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ImagingArtifactFunction ;
+ cco:definition "An Imaging Artifact Function that inheres in Artifacts that are designed to produce video of entities that is of high enough quality to make the represented motion appear continuous to human viewers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Full Motion Video Imaging Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FungicideArtifactFunction
+cco:FungicideArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:AntiMicrobialArtifactFunction ;
+ cco:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some fungus or fungal spore."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fungicide"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fungicide Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GammaRayTelescope
+cco:GammaRayTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telescope ;
+ cco:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Gamma-rays to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telescope#Gamma-ray_telescopes"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Gamma-ray Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GasProcessingFacility
+cco:GasProcessingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Refinery ;
+ cco:definition "A Refinery that is designed for refining natural gas into products of value."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Natural-gas_processing#Contaminants_in_raw_natural_gas"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Gas Processing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GasTurbine
+cco:GasTurbine rdf:type owl:Class ;
+ rdfs:subClassOf cco:InternalCombustionEngine ;
+ cco:alternative_label "Combustion Turbine"^^xsd:string ;
+ cco:definition "An Internal Combustion Engine that has a rotating compressor and a turbine and is designed to operate utilizing continous Combustion to produce Thrust, either directly via exhaust or indirectly via a prop."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Gas_turbine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Gas Turbine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeneratorControlUnit
+cco:GeneratorControlUnit rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:definition "An Electrical Power Source Component that is designed to regulate the voltage of some Electrical Power Source."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Generator Control Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Gimbal
+cco:Gimbal rdf:type owl:Class ;
+ rdfs:subClassOf cco:EquipmentMount ;
+ cco:definition "An Equipment Mount that consists of a pivoted support that allows an Artifact to Rotate about one or more Axes."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Gimbal"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Gimbal"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentArtifactFunction
+cco:GovernmentArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes in which public policy is administered and the actions of its members are directed."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Government"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Government Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentBuilding
+cco:GovernmentBuilding rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for the administration of a community."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Administration_(government)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Government Building"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Grenade
+cco:Grenade rdf:type owl:Class ;
+ rdfs:subClassOf cco:ExplosiveWeapon ;
+ cco:alternative_label "Hand Grenade"^^xsd:string ;
+ cco:definition "An Explosive Weapon that is designed to be relatively small and to be thrown by hand."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Grenade"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Grenade"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroceryStore
+cco:GroceryStore rdf:type owl:Class ;
+ rdfs:subClassOf cco:RetailFacility ;
+ cco:definition "A Commercial Facility that is designed to sell food."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Grocery_store"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Grocery Store"^^rdfs:Literal .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroundMotorVehicle
+cco:GroundMotorVehicle rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundVehicle ;
+ cco:definition "A Ground Vehicle that is designed to receive its motive power from an Engine and is not designed to travel on rails."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Motor_vehicle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ground Motor Vehicle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroundMovingTargetIndicationArtifactFunction
+cco:GroundMovingTargetIndicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MovingTargetIndicationArtifactFunction ;
+ cco:definition "A Moving Target Indication Artifact Function that inheres in Artifacts that are designed to identify and track entities moving on or near the ground."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ground Moving Target Indication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroundVehicle
+cco:GroundVehicle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Vehicle ;
+ cco:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by some form of ground travel."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Category:Land_vehicles"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ground Vehicle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HandGun
+cco:HandGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:Firearm ;
+ cco:definition "A Firearm that is designed to have a relatively short barrel and to be held in one or two hands and to be fired without being braced against the shoulder."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Handgun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hand Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HealingArtifactFunction
+cco:HealingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which health is restored to an unbalanced, diseased, or damaged organism."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Healing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Healing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HealthcareArtifactFunction
+cco:HealthcareArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of treating and preventing illness."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Health_care"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Healthcare Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HealthcareFacility
+cco:HealthcareFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for the diagnosis, treatment, and prevention of disease."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Medicine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Healthcare Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HearingAid
+cco:HearingAid rdf:type owl:Class ;
+ rdfs:subClassOf cco:MedicalArtifact ;
+ cco:definition "A Medical Artifact that is designed to improve hearing for its user."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hearing_aid"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hearing Aid"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HeatEngine
+cco:HeatEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Engine ;
+ cco:definition "An Engine that is designed to convert thermal energy into mechanical energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Heat Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HeatingArtifactFunction
+cco:HeatingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which the thermal energy of a system increases."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Heating Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HeatingSystem
+cco:HeatingSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:EnvironmentControlSystem ;
+ cco:definition "An Environment Control System that is designed to heat the air or objects in a Site."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Heating System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HeavyMachineGun
+cco:HeavyMachineGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:MountedGun ;
+ cco:definition "A Mounted Gun that is designed to fire ammunition greater than .50 caliber or 12.7mm ammunition in quick succession from an ammunition belt, and which typically weighs more than 30lbs."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Heavy_machine_gun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Heavy Machine Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HelicalAntenna
+cco:HelicalAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:WireAntenna ;
+ cco:definition "A Wire Antenna that consists of a conducting wire wound in the form of a helix that is typically mounted over a ground plane with a feed line connected between the bottom of the helix and the ground plane."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Helical_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Helical Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Heliport
+cco:Heliport rdf:type owl:Class ;
+ rdfs:subClassOf cco:Airport ;
+ cco:definition "An Airport that is designed for launching, receiving, and housing Rotorcraft."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Heliport"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Heliport"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HerbicideArtifactFunction
+cco:HerbicideArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:PesticideArtifactFunction ;
+ cco:definition "A Pesticide Artifact Function that is realized in a process which causes harm to, or the death to, unwanted plants."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Herbicide"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Herbicide Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HighFrequencyCommunicationInstrument
+cco:HighFrequencyCommunicationInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some High Frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "High Frequency Communication Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Highway
+cco:Highway rdf:type owl:Class ;
+ rdfs:subClassOf cco:Road ;
+ cco:definition "A Road that is designed to enable Ground Vehicles to travel between relatively major destinations."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Highway"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Highway"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HighwayInterchange
+cco:HighwayInterchange rdf:type owl:Class ;
+ rdfs:subClassOf cco:RoadJunction ;
+ cco:definition "A Road Junction that is designed to enable Ground Vehicles to exit one or more Highways and enter another Highway without directly crossing any other traffic stream."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Interchange_(road)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Highway Interchange"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Hinge
+cco:Hinge rdf:type owl:Class ;
+ rdfs:subClassOf cco:MachineBearing ;
+ cco:definition "A Machine Bearing that is designed to limit the angle of Rotation between two solid objects."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hinge"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hinge"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HornAntenna
+cco:HornAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioAntenna ;
+ cco:alternative_label "Microwave Horn"^^xsd:string ;
+ cco:definition "A Radio Antenna that consists of a flaring metal waveguide shaped like a horn to direct radio waves in a beam and can be used on its own or as a feeder for larger antenna structures, such as Parabolic Antennas."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Horn_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Horn Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Hospital
+cco:Hospital rdf:type owl:Class ;
+ rdfs:subClassOf cco:HealthcareFacility ;
+ cco:definition "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hospital"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hospital"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HospitalityArtifactFunction
+cco:HospitalityArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of accommodation food and beverage meeting and events gaming entertainment and recreation tourism services and visitor information."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hospitality"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hospitality Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Hostel
+cco:Hostel rdf:type owl:Class ;
+ rdfs:subClassOf cco:ResidentialFacility ;
+ cco:definition "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hostel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hostel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Hotel
+cco:Hotel rdf:type owl:Class ;
+ rdfs:subClassOf cco:ResidentialFacility ;
+ cco:definition "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hotel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hotel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/House
+cco:House rdf:type owl:Class ;
+ rdfs:subClassOf cco:ResidentialFacility ;
+ cco:definition "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/House"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "House"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Howitzer
+cco:Howitzer rdf:type owl:Class ;
+ rdfs:subClassOf cco:Cannon ;
+ cco:definition "A Cannon that is designed to have a relatively short barrel and to use relatively small propellant charges to propel projectiles in relatively high trajectories with a steep angle of descent."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Howitzer"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Howitzer"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydraulicFluidReservoir
+cco:HydraulicFluidReservoir rdf:type owl:Class ;
+ rdfs:subClassOf cco:HydraulicPowerSourceComponent ;
+ cco:definition "A Hydraulic Power Source Component that is designed to store some hydraulic fluid for use in some Hyrdraulic Power Source."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydraulic Fluid Reservoir"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydraulicMotor
+cco:HydraulicMotor rdf:type owl:Class ;
+ rdfs:subClassOf cco:PhysicallyPoweredEngine ;
+ cco:definition "A Physically Powered Engine that converts hydraulic pressure and flow into torque and angular displacement."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hydraulic_motor"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydraulic Motor"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydraulicPowerSource
+cco:HydraulicPowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerSource ;
+ cco:definition "A Power Source that is designed to generate, control, or transmit power by means of pressurized liquid."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydraulic Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydraulicPowerSourceComponent
+cco:HydraulicPowerSourceComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerSourceComponent ;
+ cco:definition "A Power Source Component that is designed to be a component of some Hydraulic Power Source."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydraulic Power Source Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydraulicPowerTransferUnit
+cco:HydraulicPowerTransferUnit rdf:type owl:Class ;
+ rdfs:subClassOf cco:HydraulicPowerSourceComponent ;
+ cco:definition "A Hydraulic Power Source Component that is designed to transfer hydraulic power from one of an Aircraft's hydraulic systems to another in the event that a system has failed or been turned off."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Power_transfer_unit"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydraulic Power Transfer Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydraulicValve
+cco:HydraulicValve rdf:type owl:Class ;
+ rdfs:subClassOf cco:HydraulicPowerSourceComponent ;
+ cco:definition "A Hydraulic Power Source Component that is designed to regulate, direct, or control the flow of a liquid by opening, closing, or partially obstructing various passageways."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Valve"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydraulic Valve"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydroelectricPowerPlant
+cco:HydroelectricPowerPlant rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricPowerStation ;
+ cco:definition "An Electric Power Station that is designed to convert hydropower into electrical power."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hydroelectricity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hydroelectric Power Plant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IdentificationFriendOrFoeTransponder
+cco:IdentificationFriendOrFoeTransponder rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioTransponder ;
+ cco:alternative_label "IFF"^^xsd:string ;
+ cco:definition "A Radio Transponder that is designed to automatically transmit a predefined signal in response to receiving an appropriate interrogation signal such that the entity it is located on can be positively identified as friendly."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Identification_friend_or_foe"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Identification Friend or Foe Transponder"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IgnitionSystem
+cco:IgnitionSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to produce an Ignition process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ignition System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Image
+cco:Image rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that represents some entity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Image"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Image"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ImagingArtifactFunction
+cco:ImagingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Imaging Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ImagingInstrument
+cco:ImagingInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to produce images (visual representations) of an entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Imaging Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ImpactShieldingArtifactFunction
+cco:ImpactShieldingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact reduces the damage caused to the shielded object by an impact with another object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Impact Shielding Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ImprovisedExplosiveDevice
+cco:ImprovisedExplosiveDevice rdf:type owl:Class ;
+ rdfs:subClassOf cco:ExplosiveWeapon ;
+ cco:acronym "IED"^^xsd:string ;
+ cco:definition "An Explosive Weapon that is designed to be used in non-conventional military action."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Improvised_explosive_device"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Improvised Explosive Device"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IncendiaryWeapon
+cco:IncendiaryWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of starting a fire."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Incendiary_device"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Incendiary Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InertialNavigationSystem
+cco:InertialNavigationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:NavigationSystem ;
+ cco:alternative_label "INS"^^xsd:string ;
+ cco:definition "A Navigation System that is designed to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Inertial_navigation_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Inertial Navigation System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InfantryFightingVehicle
+cco:InfantryFightingVehicle rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:acronym "IFV"^^xsd:string ;
+ cco:definition "A Ground Motor Vehicle that is designed to carry infantry into battle and to provide fire support for them."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Infantry_fighting_vehicle"^^xsd:string ;
+ cco:elucidation "Infantry Fighting Vehicles (IFVs) are differentiated from Armored Personnel Carriers (APCs) because they are designed to give direct fire support to the dismounted infantry and so usually have significantly enhanced armament. IFVs also often have improved armour and firing ports (allowing the infantry to fire personal weapons while mounted)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Infantry Fighting Vehicle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingArtifact
+cco:InformationBearingArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:bearer_of ;
+ owl:someValuesFrom cco:InformationContentEntity
+ ] ;
+ cco:definition "An Artifact that is designed to bear some Information Content Entity and which does, in fact, bear one."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Information Bearing Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationLine
+cco:InformationLine rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that consists of a single line or row of some larger Information Bearing Artifact of which it is a part."^^xsd:string ;
+ cco:example_of_usage "a line in a computer file that bears a portion of code for some computer program"^^xsd:string ,
+ "a line of data in a database"^^xsd:string ,
+ "a line of text in a book"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Information Line"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationMediumArtifact
+cco:InformationMediumArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to bear some Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Information Medium Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationProcessingArtifact
+cco:InformationProcessingArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to use algorithms to transform some Information Content Entity into another Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Information Processing Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InfraredCamera
+cco:InfraredCamera rdf:type owl:Class ;
+ rdfs:subClassOf cco:Camera ;
+ cco:alternative_label "Thermal Imaging Camera"^^xsd:string ,
+ "Thermographic Camera"^^xsd:string ;
+ cco:definition "A Camera that is designed to form and record an image generated from infrared radiation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Thermographic_camera"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Infrared Camera"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InfraredTelescope
+cco:InfraredTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telescope ;
+ cco:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing infrared light to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Infrared_telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Infrared Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Infrastructure
+cco:Infrastructure rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to provide fundamental facilities and systems to support the activities of a Group of Persons."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Infrastructure"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InhibitingMotionArtifactFunction
+cco:InhibitingMotionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by processes in which some Artifact is used to inhibit the motion of some object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Inhibiting Motion Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InsecticideArtifactFunction
+cco:InsecticideArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:PesticideArtifactFunction ;
+ cco:definition "A Pesticide Artifact Function that is realized in a process that causes harm to, or the death of, an insect."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Insecticide"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Insecticide Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InstrumentDisplayPanel
+cco:InstrumentDisplayPanel rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear information about some Artifact that is derived by the instrumentation Sensors of that Artifact."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Flight_instruments"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Instrument Display Panel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IntercommunicationSystem
+cco:IntercommunicationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationSystem ;
+ cco:definition "A Communication System that is designed to enable some Act of Communication between end points within a building, small collection of buildings, or within a small area of service."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Intercom"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Intercommunication System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InteriorLightingSystem
+cco:InteriorLightingSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:LightingSystem ;
+ cco:definition "A Lighting System that is designed to emit light within the interior of some area."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Interior Lighting System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InternalCombustionEngine
+cco:InternalCombustionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:CombustionEngine ;
+ cco:definition "A Combustion Engine that is designed to have an internal Combustion Chamber where portions of Fuel and Oxidizer mixture are burned to generate thermal energy that is then converted into mechanical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Internal_combustion_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Internal Combustion Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Interphone
+cco:Interphone rdf:type owl:Class ;
+ rdfs:subClassOf cco:IntercommunicationSystem ;
+ cco:definition "An Intercommunication System that that is designed to facilitate some Act of Communication between agents by means of audio messages."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Interphone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JetEngine
+cco:JetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReactionEngine ;
+ cco:definition "A Reaction Engine that discharges a fast moving jet that generates Thrust by jet propulsion."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Jet_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Some (most) jet engines utilize turbines, but some do not. Most rocket engines do not utilize turbines, but some do."^^xsd:string ;
+ rdfs:label "Jet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JournalArticle
+cco:JournalArticle rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear a specific brief composition on a specific topic as part of a Journal Issue."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Academic_journal"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Journal Article"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LandMine
+cco:LandMine rdf:type owl:Class ;
+ rdfs:subClassOf cco:ExplosiveWeapon ;
+ cco:definition "An Explosive Weapon that is designed to be concealed under or on the ground and to detonate as its target passes over or near it."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Land_mine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Land Mine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Landfill
+cco:Landfill rdf:type owl:Class ;
+ rdfs:subClassOf cco:WasteManagementFacility ;
+ cco:definition "A Waste Management Facility that is designed for disposing of waste by burial."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Landfill"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Landfill"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LandlineTelephone
+cco:LandlineTelephone rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telephone ;
+ cco:definition "A Telephone that is connected to a Telephone Network through a pair of wires."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telephone"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Landline Telephone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LargeScaleRocketLauncher
+cco:LargeScaleRocketLauncher rdf:type owl:Class ;
+ rdfs:subClassOf cco:RocketLauncher ;
+ cco:definition "A Rocket Launcher that is designed to contain multiple Rocket Launchers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Large-Scale Rocket Launcher"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Laser
+cco:Laser rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to emit light coherently through a process of optical amplification based on the stimulated emission of electromagnetic radiation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Laser"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Laser"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LeadAcidElectricBattery
+cco:LeadAcidElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:SecondaryCellElectricBattery ;
+ cco:definition "A Secondary Cell Electric Battery that has a lead anode and lead oxide cathode."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Lead%E2%80%93acid_battery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Lead Acid Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LegalArtifactFunction
+cco:LegalArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of giving legal advice to clients drafting legal documents for clients and representing clients in legal negotiations and court proceedings such as lawsuits."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Law"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Legal Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LegalInstrument
+cco:LegalInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed as a formally executed written document that can be formally attributed to its author, records and formally expresses a legally enforceable act, process, or contractual duty, obligation, or right, and therefore evidences that act, process, or agreement."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Legal_instrument"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Legal Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LifeSupportArtifactFunction
+cco:LifeSupportArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to enable an organism to continue living in a situation where death would otherwise occur."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Life Support Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LiftingArtifactFunction
+cco:LiftingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by processes in which some Artifact is used to lift some object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Lifting Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LightMachineGun
+cco:LightMachineGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:LongGun ;
+ cco:definition "A Long Gun that is designed to fire bullets in quick succession from an ammunition belt or magazine and to be employed by an individual soldier, with or without assistance, and typically weighing 9-22 lbs."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Light_machine_gun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Light Machine Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LightingSystem
+cco:LightingSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to emit light within some area."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Lighting System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/List
+cco:List rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that represents an ordered sequence of values, where the same value may occur more than once."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/List_%28abstract_data_type%29"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "List"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LithiumIonElectricBattery
+cco:LithiumIonElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:SecondaryCellElectricBattery ;
+ cco:definition "A Secondary Cell Electric Battery that produces electricity when lithium ions move from anode to cathode."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Lithium-ion_battery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Lithium-ion Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Locomotive
+cco:Locomotive rdf:type owl:Class ;
+ rdfs:subClassOf cco:RailTransportVehicle ;
+ cco:definition "A Rail Transport Vehicle that is designed to provide the motive power for a Train."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Locomotive"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Locomotive"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LongGun
+cco:LongGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:Firearm ;
+ cco:definition "A Firearm that is designed to have a longer barrel than a Hand Gun and to be fired while braced against the shoulder."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Long_gun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Long Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LubricationSystem
+cco:LubricationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to contain, transfer, and regulate the flow of lubricant to multiple locations in an Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "A Lubrication System typical consists of a reservoir, pump, heat exchanger, filter, regulator, valves, sensors, pipes, and hoses. In some cases it also includes the passageways and openings within the artifact it is designed to lubricate. For example, the oil holes in a bearing and crankshaft."^^xsd:string ;
+ rdfs:label "Lubrication System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MachineBearing
+cco:MachineBearing rdf:type owl:Class ;
+ rdfs:subClassOf cco:MachineElement ;
+ cco:definition "A Machine Element that is designed to constrain relative motion to only desired motion and reduces friction between moving parts."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Bearing_(mechanical)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Machine Bearing"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MachineElement
+cco:MachineElement rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be an elementary component of some Machine."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Machine_element"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Machine Element"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MailingFacility
+cco:MailingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for the systematic physical transportation of documents and packages."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mail"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mailing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Maintenance_Facility
+cco:Maintenance_Facility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to maintain or improve the state of some property or equipment."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/maintain"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Maintenance Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ManualTool
+cco:ManualTool rdf:type owl:Class ;
+ rdfs:subClassOf cco:Tool ;
+ cco:alternative_label "Hand Tool"^^xsd:string ;
+ cco:definition "A Tool that is designed to be powered by manual labor rather than by an engine."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Hand_tool"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Manual Tool"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MassSpecification
+cco:MassSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:QualitySpecification ;
+ cco:definition "A Quality Specification that prescribes the Amount of Mass that a Material Entity should have."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mass Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MaximumSpeedArtifactFunction
+cco:MaximumSpeedArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpeedArtifactFunction ;
+ cco:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the highest speed at which that Artifact is designed to operate."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Maximum Speed Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementArtifactFunction
+cco:MeasurementArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to measure one or more features of a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Measurement Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MedicalArtifact
+cco:MedicalArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed for diagnosing, treating, or preventing disease or disability."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Medical Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MedicalDepot
+cco:MedicalDepot rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store medical supplies."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Medical Depot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MediumMachineGun
+cco:MediumMachineGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:MountedGun ;
+ cco:definition "A Mounted Gun that is designed to fire full-power rifle Cartridges (less than .50 caliber or 12.7mm) in quick succession from an ammunition belt, and which typically weighs 22-30 lbs."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Medium_machine_gun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Medium Machine Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Message
+cco:Message rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is relatively brief and to be transmitted from a sender to a recipient."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Message"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Message"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Microscope
+cco:Microscope rdf:type owl:Class ;
+ rdfs:subClassOf cco:ImagingInstrument ;
+ cco:definition "An Imaging Instrument that is designed to enable users to see Objects that are otherwise too small to be seen by the naked eye by producing a significantly enlarged image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Microscope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Microscope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryArtifactFunction
+cco:MilitaryArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes related to the armed services."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Military"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Military Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryBase
+cco:MilitaryBase rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryFacility ;
+ cco:definition "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Military_base"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Military Base"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryFacility
+cco:MilitaryFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to support a Military Force."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Military"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Military Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryHeadquartersFacility
+cco:MilitaryHeadquartersFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryFacility ;
+ cco:definition "A Military Facility that is designed for military administration and coordination."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Headquarters#Military"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Military Headquarters Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Mine
+cco:Mine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to support the extraction of valuable minerals and geological materials from the earth from an orebody, lode, vein, seam, reef, or placer deposits which forms the mineralized package of economic interest to the miner."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mining"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinimumSpeedArtifactFunction
+cco:MinimumSpeedArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpeedArtifactFunction ;
+ cco:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains the lowest speed at which that Artifact is designed to operate."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Minimum Speed Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Mirror
+cco:Mirror rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalInstrument ;
+ cco:definition "An Optical Instrument that is designed to reflect light that has a wavelength within a given range and is incident on its relflecting surface such that the reflected light maintains most of the characteristics of the original light."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mirror"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mirror"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MissileLaunchSite
+cco:MissileLaunchSite rdf:type owl:Class ;
+ rdfs:subClassOf cco:MilitaryFacility ;
+ cco:definition "A Military Facility that is designed for storing and launching missiles."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Missile_launch_facility"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Missile Launch Site"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MissileLauncher
+cco:MissileLauncher rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProjectileLauncher ;
+ cco:definition "A Projectile Launcher that is designed to launch one or more Precision-Guided Missiles."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Missile Launcher"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MobileTelephone
+cco:MobileTelephone rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telephone ;
+ cco:definition "A Telephone that is connected to a Telephone Network by radio waves."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mobile_phone"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mobile Telephone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Mortar
+cco:Mortar rdf:type owl:Class ;
+ rdfs:subClassOf cco:Cannon ;
+ cco:definition "A Cannon that is designed to fire projectiles at relatively low velocities over relatively short ranges."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mortar_(weapon)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mortar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Mosque
+cco:Mosque rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReligiousFacility ;
+ cco:definition "A Religious Facility that is designed for Islamic worship and prayer."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mosque"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mosque"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Motel
+cco:Motel rdf:type owl:Class ;
+ rdfs:subClassOf cco:Hotel ;
+ cco:definition "A Hotel that is designed to accommodate motor vehicles along with their occupants."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Motel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Motel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MotionArtifactFunction
+cco:MotionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process in which an entity changes its position with respect to time."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Motion_(physics)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Motion Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MotionObservationArtifactFunction
+cco:MotionObservationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ObservationArtifactFunction ;
+ cco:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Motion of a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Motion Observation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MotorVehicleManufacturingFacility
+cco:MotorVehicleManufacturingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Factory ;
+ cco:definition "A Factory that is designed to manufacture automobiles."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Automotive_industry"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Motor Vehicle Manufacturing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Motorcycle
+cco:Motorcycle rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:alternative_label "Motorbike"^^xsd:string ;
+ cco:definition "A Ground Motor Vehicle that is designed to transport a very small number of passengers (usually 1 or 2) while traveling on two or three tired wheels."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Motorcycle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Motorcycle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MountedGun
+cco:MountedGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:Firearm ;
+ cco:definition "A Firearm that is designed to be fired while mounted."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Mounted Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MovingTargetIndicationArtifactFunction
+cco:MovingTargetIndicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadarImagingArtifactFunction ;
+ cco:definition "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to identify and produce visual representations of moving entities by using a radar to emit successive phase coherent pulses, which are sampled and added to the subsequent pulse to cancel out signals from non-moving entities such that only signals from moving entities remain and are displayed."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Moving Target Indication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NavigationArtifactFunction
+cco:NavigationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to determine the precise location of itself or another object and plan a route to a specified destination."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Navigation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NavigationSystem
+cco:NavigationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to enable an Agent or Artifact to determine the position or direction of some object, usually for the purpose of monitoring or controlling the movement of some Vehicle from one place to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Navigation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Navigation System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NeutralizationArtifactFunction
+cco:NeutralizationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
+ cco:definition "A Chemical Reaction Artifact Function that is realized in a process in which an acid and a base react quantitatively with each other."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Neutralization_(chemistry)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Neutralization Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NickelCadmiumElectricBattery
+cco:NickelCadmiumElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:SecondaryCellElectricBattery ;
+ cco:alternative_label "NiCad Battery"^^xsd:string ;
+ cco:definition "A Secondary Cell Electric Battery that has a cadmium anode and nickel oxide hydroxide cathode."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Nickel%E2%80%93cadmium_battery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nickel Cadmium Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NickelMetalHydrideElectricBattery
+cco:NickelMetalHydrideElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:SecondaryCellElectricBattery ;
+ cco:alternative_label "NiMH Battery"^^xsd:string ;
+ cco:definition "A Secondary Cell Electric Battery that has a metal-hydride anode and nickel oxide hydroxide cathode."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Nickel%E2%80%93metal_hydride_battery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nickel-metal Hydride Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NominalSpeedArtifactFunction
+cco:NominalSpeedArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpeedArtifactFunction ;
+ cco:definition "A Speed Artifact Function that is realized in some process in which the Artifact bearing the Artifact Function attains a speed that does not exceed some specified tolerance of that Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nominal Speed Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NotificationMessage
+cco:NotificationMessage rdf:type owl:Class ;
+ rdfs:subClassOf cco:Message ;
+ cco:definition "A Message that is designed to bear an Information Content Entity that describes a scenario that has been determined to merit attention by the recipient."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Notification Message"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Nozzle
+cco:Nozzle rdf:type owl:Class ;
+ rdfs:subClassOf cco:FluidControlArtifact ;
+ cco:definition "A Fluid Control Artifact that is designed to control the speed, direction, rate, shape, or pressure of the flow of fluid exiting it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nozzle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NozzleComponent
+cco:NozzleComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:FluidControlArtifactComponent ;
+ cco:definition "A Fluid Control Artifact Component that is designed to be part of a Nozzle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nozzle Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NozzleMouth
+cco:NozzleMouth rdf:type owl:Class ;
+ rdfs:subClassOf cco:NozzleComponent ;
+ cco:definition "A Nozzle Component that consists of the portion of a Nozzle at the end that is designed to be where the flow of fluid exits the Nozzle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nozzle Mouth"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NozzleThroat
+cco:NozzleThroat rdf:type owl:Class ;
+ rdfs:subClassOf cco:NozzleComponent ;
+ cco:definition "A Nozzle Component that consists of the narrowest portion of a Nozzle that is designed to converge the flow of fluid in order to increase the Velocity of the flow."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nozzle Throat"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearPowerPlant
+cco:NuclearPowerPlant rdf:type owl:Class ;
+ rdfs:subClassOf cco:ThermalPowerPlant ;
+ cco:definition "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Nuclear_power_plant"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nuclear Power Plant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearRadiationDetectionArtifactFunction
+cco:NuclearRadiationDetectionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to detect the presence of nuclear radiation particles."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nuclear Radiation Detection Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearReactor
+cco:NuclearReactor rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerSource ;
+ cco:definition "A Power Source that is designed to initiate and control a self-sustained nuclear chain reaction to produce power in the form of heat, which can be transferred to a working fluid for further conversion to mechanical or electrical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Nuclear_reactor"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nuclear Reactor"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearStorageDepot
+cco:NuclearStorageDepot rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store nuclear material."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nuclear Storage Depot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearWeapon
+cco:NuclearWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of a destructive nuclear reaction, either through fission or through a combination of fission and fusion."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Nuclear_weapon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nuclear Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ObservationArtifactFunction
+cco:ObservationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to collect information about a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Observation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OcularProsthesis
+cco:OcularProsthesis rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtificialEye ;
+ cco:definition "An Artificial Eye that is designed to replace a missing eye, but which does not function as an eye."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ocular_prosthesis"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ocular Prosthesis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OfficeBuilding
+cco:OfficeBuilding rdf:type owl:Class ;
+ rdfs:subClassOf cco:RetailFacility ;
+ cco:definition "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Office"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Office Building"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpenPitMine
+cco:OpenPitMine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Mine ;
+ cco:definition "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Open-pit_mining"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Open Pit Mine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalCamera
+cco:OpticalCamera rdf:type owl:Class ;
+ rdfs:subClassOf cco:Camera ;
+ cco:definition "A Camera that is designed to form and record an image generated from visible light."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Camera"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Camera"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalCommunicationArtifactFunction
+cco:OpticalCommunicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticCommunicationArtifactFunction ;
+ cco:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of visible light."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telecommunication"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Communication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalFocusingArtifactFunction
+cco:OpticalFocusingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalProcessingArtifactFunction ;
+ cco:definition "An Optical Processing Artifact Function that is realized by an Artifact participating in a light focusing event in which the Artifact causes the light beam to converge on a target spatial point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Focusing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalInstrument
+cco:OpticalInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to process light waves."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Optical_instrument"^^xsd:string ;
+ cco:elucidation "Light waves can be processed in a variety of ways including via reflection, refraction, diffraction, deflection, focusing, collimation, dispersion, and interference."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Optical Instruments are typically constructed for the purpose of being used to aid in vision or the analysis of light."^^xsd:string ;
+ rdfs:label "Optical Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalLens
+cco:OpticalLens rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalInstrument ;
+ cco:alternative_label "Lens"^^xsd:string ;
+ cco:definition "An Optical Instrument that is designed to focus or disperse a beam of light entering the lens by means of refraction."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Lens_(optics)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Lens"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalMicroscope
+cco:OpticalMicroscope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Microscope ;
+ cco:alternative_label "Light Microscope"^^xsd:string ;
+ cco:definition "A Microscope that is designed to use visible light and a system of Optical Lenses to produce a significantly enlarged image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Optical_microscope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Microscope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalProcessingArtifactFunction
+cco:OpticalProcessingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in a visible light processing event."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Processing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalTelescope
+cco:OpticalTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telescope ;
+ cco:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Optical_telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrientationControlArtifactFunction
+cco:OrientationControlArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by processes in which some Artifact is used to control the Orientation of some object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Orientation Control Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrientationObservationArtifactFunction
+cco:OrientationObservationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ObservationArtifactFunction ;
+ cco:alternative_label "Attitude Observation Artifact Function"^^xsd:string ;
+ cco:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the Orientation of a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Orientation Observation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OxidizerArtifactFunction
+cco:OxidizerArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
+ cco:definition "A Chemical Reaction Artifact Function that is realized in a process in which electrons are removed from a reactant in a redox reaction."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Redox"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Oxidizer Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ParabolicAntenna
+cco:ParabolicAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioAntenna ;
+ cco:alternative_label "Dish Antenna"^^xsd:string ,
+ "Parabolic Dish"^^xsd:string ;
+ cco:definition "A Radio Antenna that uses a parabolic reflector to direct or receive radio waves and has a very high gain."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Parabolic_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Parabolic Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PartsList
+cco:PartsList rdf:type owl:Class ;
+ rdfs:subClassOf cco:QualitySpecification ;
+ cco:definition "A Quality Specification that prescribes the Amount of some type of Artifact that are part of or located on anotther Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Parts List"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PassengerTrainCar
+cco:PassengerTrainCar rdf:type owl:Class ;
+ rdfs:subClassOf cco:TrainCar ;
+ cco:definition "A Train Car that is designed to transport passengers."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Passenger_car_(rail)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Passenger Train Car"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PatchAntenna
+cco:PatchAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioAntenna ;
+ cco:alternative_label "Microstrip Patch Antenna"^^xsd:string ,
+ "Rectangular Microstrip Antenna"^^xsd:string ;
+ cco:definition "A Radio Antenna that consists of a flat rectangular sheet (or patch) of metal mounted over a larger sheet of metal called a ground plane which is typically contained inside a plastic radome for protection and is small enough that it can be mounted on a flat surface."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Patch_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Patch Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PatchReceiver
+cco:PatchReceiver rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioReceiver ;
+ cco:definition "A Radio Receiver that uses a Patch Antenna to intercept radio signals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Patch Receiver"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Payload
+cco:Payload rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ cco:definition "A Material Entity that is transported by a Vehicle during an Act of Location Change for the purpose of being delivered to or performing one or more functions at a predefined location."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Payload"^^xsd:string ;
+ cco:elucidation "In each case, the Payload is what provides the immediate reason for performing the Act of Location Change (e.g. transporting the passengers of a commercial airline flight to their destination; transporting food, fuel, oxygen, research equipment, and spare parts to the International Space Station; or conveying an array of sensors, cameras, and communications systems so they can operate during a Sun-Synchronous Earth Orbit)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Depending on the nature of the Flight or Mission, the Payload of a Vehicle may include cargo, passengers, flight crew, munitions, scientific instruments or experiments, or other equipment. Extra fuel, when optionally carried, is also considered part of the payload."^^xsd:string ;
+ rdfs:label "Payload"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PayloadCapacity
+cco:PayloadCapacity rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:inheres_in ;
+ 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."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Payload"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Payload Capacity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Periscope
+cco:Periscope rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalInstrument ;
+ cco:definition "An Optical Instrument that is designed to enable observation of an object that is located over, around, or through another object, obstacle, or condition that prevents direct line-of-sight observation from the observer's current position."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Periscope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Periscope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PesticideArtifactFunction
+cco:PesticideArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:PoisonArtifactFunction ;
+ cco:definition "A Poison Artifact Function that is realized in a process which causes illness in, or the death of, a living thing that is detrimental to humans or human concerns."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/pesticide"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pesticide Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PetrochemicalRefinery
+cco:PetrochemicalRefinery rdf:type owl:Class ;
+ rdfs:subClassOf cco:Refinery ;
+ cco:definition "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Petrochemical"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Petrochemical Refinery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PetroleumDepot
+cco:PetroleumDepot rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store petroleum, oil, or lubricants."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Petroleum Depot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PetroleumManufacturingFacility
+cco:PetroleumManufacturingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Factory ;
+ cco:definition "A Factory that is designed to manufacture petroleum-based products."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Petroleum"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Petroleum Manufacturing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PhysicallyPoweredEngine
+cco:PhysicallyPoweredEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Engine ;
+ cco:alternative_label "Physical Engine"^^xsd:string ;
+ cco:definition "An Engine that is designed to convert potential or kinetic energy into mechanical energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Physically Powered Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Pier
+cco:Pier rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationFacility ;
+ cco:definition "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Pier"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Pipeline
+cco:Pipeline rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProductTransportFacility ;
+ cco:definition "A Product Transport Facility that is designed to transport goods or materials through a pipe."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Pipeline"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pipeline"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PneumaticMotor
+cco:PneumaticMotor rdf:type owl:Class ;
+ rdfs:subClassOf cco:PhysicallyPoweredEngine ;
+ cco:alternative_label "Air Motor"^^xsd:string ,
+ "Compressed Air Engine"^^xsd:string ;
+ cco:definition "A Physically Powered Engine that converts potential energy stored in a portion of compressed air into mechanical energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pneumatic Motor"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PneumaticPowerSource
+cco:PneumaticPowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerSource ;
+ cco:definition "A Power Source that is designed to generate, control, or transmit power by means of compressed air or compressed inert gases."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pneumatic Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoisonArtifactFunction
+cco:PoisonArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:DamagingArtifactFunction ;
+ cco:definition "A Damaging Artifact Function that is realized in a process which causes illness in, or the death of, a living thing."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/poison"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Poison Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PolarizingPrism
+cco:PolarizingPrism rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prism ;
+ cco:definition "A Prism designed to split a beam of light entering the Prism into components of varying polarization."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Polarizing Prism"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoliceStation
+cco:PoliceStation rdf:type owl:Class ;
+ rdfs:subClassOf cco:PublicSafetyFacility ;
+ cco:definition "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Police_station"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Police Station"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Port
+cco:Port rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationFacility ;
+ cco:definition "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Port"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Port"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfAmmunition
+cco:PortionOfAmmunition rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by being projected toward its target at a significant Velocity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ammunition"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Ammunition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfCash
+cco:PortionOfCash rdf:type owl:Class ;
+ rdfs:subClassOf cco:FinancialInstrument ;
+ cco:definition "A Financial Instrument that is designed to be a ready medium of exchange."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Cash"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfCoolant
+cco:PortionOfCoolant rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:definition "A Portion of Material that is designed to be used in a thermal control system to reduce or maintain the temperature of an object to or at a specified level."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Coolant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfCryogenicMaterial
+cco:PortionOfCryogenicMaterial rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:definition "A Portion of Material that has been reduced to a very low temperature (below -180 degrees Celcius)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Cryogenic Material"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfFood
+cco:PortionOfFood rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfProcessedMaterial ;
+ cco:definition "A Portion of Processed Material that is designed to be consumed and ingested for nutrition or taste."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Food"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Food"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfFuel
+cco:PortionOfFuel rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:definition "A Portion of Material that is designed to be used as an input in a Combustion process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Fuel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGalliumArsenide
+cco:PortionOfGalliumArsenide rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:alternative_label "Portion of GaAs"^^xsd:string ;
+ cco:definition "A Portion of Material that is composed of a compound of the elements gallium and arsenic."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Gallium Arsenide"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGaseousFuel
+cco:PortionOfGaseousFuel rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfFuel ;
+ cco:definition "A Portion of Fuel that is stored in a gaseous state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Gaseous Fuel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGaseousPropellant
+cco:PortionOfGaseousPropellant rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfPropellant ;
+ cco:definition "A Portion of Propellant that is stored in a gaseous state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Gaseous Propellant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGelatinousPropellant
+cco:PortionOfGelatinousPropellant rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfPropellant ;
+ cco:definition "A Portion of Propellant that is stored in a gelatinous state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Gelatinous Propellant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLiquidFuel
+cco:PortionOfLiquidFuel rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfFuel ;
+ cco:definition "A Portion of Fuel that is stored in a liquid state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Liquid Fuel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLiquidHelium
+cco:PortionOfLiquidHelium rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCryogenicMaterial ;
+ cco:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid helium."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Liquid Helium"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLiquidHydrogen
+cco:PortionOfLiquidHydrogen rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCryogenicMaterial ;
+ cco:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid hydrogen."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Liquid Hydrogen"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLiquidNitrogen
+cco:PortionOfLiquidNitrogen rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCryogenicMaterial ;
+ cco:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid nitrogen."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Liquid Nitrogen"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLiquidOxygen
+cco:PortionOfLiquidOxygen rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfCryogenicMaterial ;
+ cco:definition "A Portion of Cryogenic Material that is composed (almost) entirely of liquid oxygen."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Liquid Oxygen"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLiquidPropellant
+cco:PortionOfLiquidPropellant rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfPropellant ;
+ cco:definition "A Portion of Propellant that is stored in a liquid state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Liquid Propellant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfMaterial
+cco:PortionOfMaterial rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfProcessedMaterial ;
+ cco:definition "A Portion of Processed Material that was produced to be used as the input for another Act of Artifact Processing."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Material"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfNuclearFuel
+cco:PortionOfNuclearFuel rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:definition "A Portion of Material that is designed to be used in a nuclear fission process to produce energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Nuclear Fuel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfOxidizer
+cco:PortionOfOxidizer rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:alternative_label "Portion of Oxidant"^^xsd:string ,
+ "Portion of Oxidizing Agent"^^xsd:string ;
+ cco:definition "A Portion of Material that is disposed to steal electrons from other substances (i.e. to oxidize other substances) as a participant in a reduction-oxidation process."^^xsd:string ;
+ cco:example_of_usage "oxygen, hydrogen peroxide, chlorine, sulfiric acid, potassium nitrate"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Oxidizers are essential participants in many processes including combustion and rusting. Hence, a portion of oxidizer must always be present along with a portion of fuel in order for combustion to occur."^^xsd:string ;
+ rdfs:label "Portion of Oxidizer"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfPaper
+cco:PortionOfPaper rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationMediumArtifact ;
+ cco:definition "An Information Medium Artifact that is designed to bear some Information Content Entity by means of pressing together moist fibres of cellulose pulp derived from wood, rags, or grasses, and drying them into flexible sheets."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Paper"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Paper"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfProcessedMaterial
+cco:PortionOfProcessedMaterial rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is the output of an Act of Artifact Processing."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Processed Material"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfPropellant
+cco:PortionOfPropellant rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfMaterial ;
+ cco:definition "A Portion of Material that is designed to be used as an input in a Propulsion Process to produce Thrust."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Propellant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfSolidFuel
+cco:PortionOfSolidFuel rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfFuel ;
+ cco:definition "A Portion of Fuel that is stored in a solid state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Solid Fuel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfSolidPropellant
+cco:PortionOfSolidPropellant rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfPropellant ;
+ cco:definition "A Portion of Propellant that is stored in a solid state."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Solid Propellant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfWasteMaterial
+cco:PortionOfWasteMaterial rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfProcessedMaterial ;
+ cco:definition "A Portion of Processed Material that serves no further use in terms of the initial user's own purposes of production, transformation, or consumption such that the Agent wants to dispose of it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Portion of Waste Material"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PositionObservationArtifactFunction
+cco:PositionObservationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ObservationArtifactFunction ;
+ cco:definition "An Observation Artifact Function that is realized during events in which an Artifact is used to collect information about the position of a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Position Observation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PostOffice
+cco:PostOffice rdf:type owl:Class ;
+ rdfs:subClassOf cco:MailingFacility ;
+ cco:definition "A Mailing Facility that is designed for serving customers of the national postal system."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Post_office"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Post Office"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerInvertingArtifactFunction
+cco:PowerInvertingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CurrentConversionArtifactFunction ;
+ cco:definition "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert direct current (DC) to alternating current (AC)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Inverting Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerRectifier
+cco:PowerRectifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:definition "An Electrical Power Source Component that is designed to convert alternating current (AC) to direct current (DC)."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rectifier"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Rectifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerRectifyingArtifactFunction
+cco:PowerRectifyingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CurrentConversionArtifactFunction ;
+ cco:definition "A Current Conversion Artifact Function that is realized by processes in which some Artifact is used to convert alternating current (AC) to direct current (DC)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Rectifying Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerSource
+cco:PowerSource rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to supply power to some other Artifact."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Power_source"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerSourceComponent
+cco:PowerSourceComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a component of some Power Source."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Source Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerTool
+cco:PowerTool rdf:type owl:Class ;
+ rdfs:subClassOf cco:Tool ;
+ cco:definition "A Tool that is designed to be actuated by a Power Source and mechanism other than or in addition to manual labor."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Power_tool"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Tool"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerTransformer
+cco:PowerTransformer rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:definition "An Electrical Power Source Component that is designed to transfer electrical energy between two or more circuits through electromagnetic induction."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transformer"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Transformer"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerTransformerRectifierUnit
+cco:PowerTransformerRectifierUnit rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:alternative_label "TRU"^^xsd:string ;
+ cco:definition "An Electrical Power Source Component that is designed to perform the functions of both a Rectifier and a Transformer."^^xsd:string ;
+ cco:definition_source "http://www.skybrary.aero/index.php/Transformer_Rectifier_Unit_(TRU)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Transformer Rectifier Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerTransmissionArtifact
+cco:PowerTransmissionArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:PropulsionSystemComponent ;
+ cco:definition "A Propulsion System Component that is designed to transfer and regulate Power flow from a Power Source to an application point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Transmission Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PowerTransmissionLine
+cco:PowerTransmissionLine rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProductTransportFacility ;
+ cco:definition "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electric_power_transmission"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Power Transmission Line"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoweringArtifactFunction
+cco:PoweringArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by processes in which some Artifact is used to supply power to some Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Powering Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PrecisionGuidedMissile
+cco:PrecisionGuidedMissile rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:alternative_label "Missile"^^xsd:string ;
+ cco:definition "A Portion of Ammunition that is designed to be a self-propelled and precision-guided projectile that delivers some payload (explosive or other) over relatively long distances."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Missile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Precision-Guided Missile"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PreferredStock
+cco:PreferredStock rdf:type owl:Class ;
+ rdfs:subClassOf cco:Stock ;
+ cco:definition "Stock that entitles its holder to receive a certain level of dividend payments before any dividends can be issued to other holders."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Preferred Stock"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PressurizationControlArtifactFunction
+cco:PressurizationControlArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:VentilationControlArtifactFunction ;
+ cco:definition "A Ventilation Control Artifact Function that is realized by processes in which some Artifact is used to control the partial pressure of air in some space."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pressurization Control Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PrimaryCellElectricBattery
+cco:PrimaryCellElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricBattery ;
+ cco:alternative_label "Primary Cell Battery"^^xsd:string ;
+ cco:definition "A Electric Battery that is designed for one-time use and not to be recharged."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Primary_cell"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Primary Cell Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Prism
+cco:Prism rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalInstrument ;
+ cco:definition "An Optical Instrument that is designed to refract light and which consists of a transparent material with flat polished surfaces where at least two of these surfaces have an angle between them."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Prism"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Prism"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProductTransportFacility
+cco:ProductTransportFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to transport some product."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Product Transport Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProjectileLauncher
+cco:ProjectileLauncher rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict damage or harm by means of launching a high-velocity projectile at a target."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Projectile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Projectile Launcher"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Propeller
+cco:Propeller rdf:type owl:Class ;
+ rdfs:subClassOf cco:PropulsionSystemComponent ;
+ cco:alternative_label "Propelling Screw"^^xsd:string ;
+ cco:definition "A Propulsion System Component that is designed to convert rotary motion from an Engine or other mechanical Power Source into propulsive Force."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Propeller_(aeronautics)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propeller"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PropellingNozzle
+cco:PropellingNozzle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Nozzle ;
+ cco:alternative_label "Jet Nozzle"^^xsd:string ;
+ cco:definition "A Nozzle that is used to convert a propulsion Engine into a Jet Engine and functions by using its narrowest part, the throat, to increase Pressure within the Engine by constricting flow, usually until the flow chokes, then expanding the exhaust stream to, or near to, atmospheric pressure, while forming it into a high speed jet to propel the Vehicle."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Propelling_nozzle#Principles_of_operation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propelling Nozzle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PropulsionArtifactFunction
+cco:PropulsionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MotionArtifactFunction ;
+ cco:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function creates force leading to an entity's movement."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Propulsion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propulsion Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PropulsionControlSystem
+cco:PropulsionControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:ControlSystem ;
+ cco:definition "A Control System that consists of control devices, displays, indicators, or modules designed to control a Propulsion System."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propulsion Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PropulsionSystem
+cco:PropulsionSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to facilitate the movement of material entities from one location to another and which consists of a source of mechanical power and a means of converting this power into propulsive force to generate the movement."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Propulsion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propulsion System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PropulsionSystemComponent
+cco:PropulsionSystemComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a component of some Propulsion System."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propulsion System Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Prosthesis
+cco:Prosthesis rdf:type owl:Class ;
+ rdfs:subClassOf cco:MedicalArtifact ;
+ cco:definition "A Medical Artifact that is designed to replace a missing body part."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Prosthesis"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Prosthesis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProstheticArm
+cco:ProstheticArm rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prosthesis ;
+ cco:definition "A Prosthesis that is designed to replace a missing arm."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Prosthesis#Limb_prostheses"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Prosthetic Arm"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProstheticFoot
+cco:ProstheticFoot rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prosthesis ;
+ cco:definition "A Prosthesis that is designed to replace a missing foot."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Prosthesis#Limb_prostheses"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Prosthetic Foot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProstheticHand
+cco:ProstheticHand rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prosthesis ;
+ cco:definition "A Prosthesis that is designed to replace a missing hand."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Prosthesis#Limb_prostheses"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Prosthetic Hand"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProstheticLeg
+cco:ProstheticLeg rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prosthesis ;
+ cco:definition "A Prosthesis that is designed to replace a missing leg."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Prosthesis#Limb_prostheses"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Prosthetic Leg"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PublicAddressSystem
+cco:PublicAddressSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationSystem ;
+ cco:alternative_label "PA System"^^xsd:string ;
+ cco:definition "A Communication System that is designed to allow a Person to speak to a large audience."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Public_address_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Public Address System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PublicSafetyArtifactFunction
+cco:PublicSafetyArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of preventing and responding to events that could endanger the safety of the general public from significant danger, injury/harm, or damage, such as crimes or disasters (natural or man-made)."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Public_safety_organizations"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Public Safety Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PublicSafetyFacility
+cco:PublicSafetyFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Public_safety_organizations"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Public Safety Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PulsejetEngine
+cco:PulsejetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:AirBreathingJetEngine ;
+ cco:alternative_label "Pulse Jet"^^xsd:string ,
+ "Pulsejet"^^xsd:string ;
+ cco:definition "An Air-Breathing Jet Engine that is capable of operating statically and uses intermittent (pulsing) Combustion of the fuel-oxidizer mixture before expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Pulsejet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pulsejet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Pump
+cco:Pump rdf:type owl:Class ;
+ rdfs:subClassOf cco:FluidControlArtifact ;
+ cco:definition "A Fluid Control Artifact that is designed to impart motion to a portion of fluid to transport it within a system through the use of mechanical action."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pump"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PumpingStation
+cco:PumpingStation rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProductTransportFacility ;
+ cco:definition "A Product Transport Facility that is designed to pump fluids from one place to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Pumping_station"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pumping Station"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/QualitySpecification
+cco:QualitySpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom obo:BFO_0000019
+ ] ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes some Quality."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Quality Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadarImagingArtifactFunction
+cco:RadarImagingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ImagingArtifactFunction ;
+ cco:definition "An Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using radio waves."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radar Imaging Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioAntenna
+cco:RadioAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:BidirectionalTransducer ;
+ cco:definition "A Bidirectional Transducer that is designed to convert electric power into radio waves, and radio waves into electric power."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Antenna_(radio)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationArtifactFunction
+cco:RadioCommunicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticCommunicationArtifactFunction ;
+ cco:definition "An Electromagnetic Communication Artifact Function that is realized in a process that conveys meaningful signs by means of radio waves."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telecommunication"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Communication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationInstrument
+cco:RadioCommunicationInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationInstrument ;
+ cco:definition "A Communication Instrument that is designed to enable communication between two or more entities via the use of radio waves."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Communication Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationInterferenceArtifactFunction
+cco:RadioCommunicationInterferenceArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationInterferenceArtifactFunction ;
+ cco:definition "A Communication Interference Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information via radio waves."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Communication Interference Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationReceptionArtifactFunction
+cco:RadioCommunicationReceptionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationReceptionArtifactFunction ;
+ cco:definition "A Communication Reception Artifact Function that inheres in an Artifact that is capable of receiving information transmitted from another Artifact to which it is not connected by an electrical conductor."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Communication Reception Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationRelayArtifactFunction
+cco:RadioCommunicationRelayArtifactFunction rdf:type owl:Class ;
+ 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 without the use of wires from one Artifact to another for the purpose of communiction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Communication Relay Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioReceiver
+cco:RadioReceiver rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:definition "A Radio Communication Instrument that is an electronic device that is designed to extract information from radio waves intercepted by a Radio Antenna by using electronic filters to separate the desired radio frequency signal from other signals, an electronic amplifier to increase the power of the signal, and demodulation to recover the desired information."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Receiver_%28radio%29"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Receiver"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioRelayStation
+cco:RadioRelayStation rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationsFacility ;
+ cco:definition "A Communications Facility that is the bearer of functions realized in the relay of radio signals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Relay Station"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioRepeater
+cco:RadioRepeater rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioTransceiver ;
+ cco:definition "A Radio Transceiver that is designed to receive a radio signal, amplify it, and retransmit it (often on another frequency)."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Repeater#Types"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Repeater"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioTelescope
+cco:RadioTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telescope ;
+ cco:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Radio_telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "A Radio Telescope consists of a specialized Antenna and a Radio Receiver and is typically used to receive radio waves from sources in outer space."^^xsd:string ;
+ rdfs:label "Radio Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioTransceiver
+cco:RadioTransceiver rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:definition "A Radio Communication Instrument that is an electronic device composed of both a Radio Transmitter and a Radio Receiver that share common circuitry or a single housing."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transceiver"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Transceiver"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioTransmitter
+cco:RadioTransmitter rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:definition "A Radio Communication Instrument that is an electronic device that is designed to generate a radio frequency alternating current, which can be applied to a Radio Antenna to be transmitted as radio waves."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transmitter"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Transmitter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioTransponder
+cco:RadioTransponder rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:alternative_label "Transmitter-Responder"^^xsd:string ;
+ cco:definition "A Radio Communication Instrument that is an electronic device that acts as both a Radio Transmitter and responder and is used to wirelessly receive and transmit electrical signals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Transponder"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioWaveConversionArtifactFunction
+cco:RadioWaveConversionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact being used to convert electric power into radio waves or radio waves into electric power."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Wave Conversion Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadiologicalWeapon
+cco:RadiologicalWeapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Weapon ;
+ cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing radioactive material."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Radiological_weapon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radiological Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RailFacility
+cco:RailFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationFacility ;
+ cco:definition "A Transportation Facility that is designed for transferring people or cargo to and from Trains."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Train_station"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rail Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RailTransportVehicle
+cco:RailTransportVehicle rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundVehicle ;
+ cco:definition "A Ground Vehicle that is designed to convey cargo, passengers, or equipment by Railway."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rail_transport"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rail Transport Vehicle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Railcar
+cco:Railcar rdf:type owl:Class ;
+ rdfs:subClassOf cco:RailTransportVehicle ;
+ cco:definition "A Rail Transport Vehicle that consists of a single self-propelled Vehicle that is not a Train, is designed to transport passengers, and which may also be designed to connect to other Railcars to form a Train."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Railcar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "In American-English, the term 'Railcar' is often used in a broader sense that is interchangeable with 'Railroad Car'."^^xsd:string ;
+ rdfs:label "Railcar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Railway
+cco:Railway rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable Trains to transport passengers and goods."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rail_transport"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Railway"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RailwayCrossing
+cco:RailwayCrossing rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:alternative_label "Level Crossing"^^xsd:string ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable Persons or Ground Vehicles to cross a Railway when traveling along a road or path that is perpendicular to and at the same elevation as the Railway at the point where they overlap."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Level_crossing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Railway Crossing"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RailwayJunction
+cco:RailwayJunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable a Train to switch between the tracks of two routes."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Junction_(rail)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Railway Junction"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RamjetEngine
+cco:RamjetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:AirBreathingJetEngine ;
+ cco:alternative_label "Ramjet"^^xsd:string ;
+ cco:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air (without the use of an axial compressor) and decelerate it to subsonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ramjet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ramjet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RandomWireAntenna
+cco:RandomWireAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:WireAntenna ;
+ cco:definition "A Wire Antenna that consists of a long wire suspended above the ground with a length that does not bear a relation to the wavelength of the radio waves used and which is typically used as a receiving antenna on the long, medium, and short wave bands."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Random_wire_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Random Wire Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReactantArtifactFunction
+cco:ReactantArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
+ cco:definition "A Chemical Reaction Artifact Function that is realized in a process in which a substance or compound is added to a system in order to bring about a chemical reaction and is consumed in the course of the reaction."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Reagent"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reactant Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReactionEngine
+cco:ReactionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Engine ;
+ cco:alternative_label "Reaction Motor"^^xsd:string ;
+ cco:definition "An Engine that provides propulsion by expelling Reaction Mass."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Reaction_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reaction Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReactionMass
+cco:ReactionMass rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ cco:alternative_label "Working Mass"^^xsd:string ;
+ cco:definition "A Material Entity against which a Propulsion System operates in order to produce Acceleration."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Working_mass"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reaction Mass"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReciprocatingSteamEngine
+cco:ReciprocatingSteamEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:SteamEngine ;
+ cco:definition "A Steam Engine that is designed to use one or more reciprocating pistons to convert pressure into a rotating motion."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Reciprocating_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reciprocating Steam Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RecordingDevice
+cco:RecordingDevice rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationProcessingArtifact ;
+ cco:definition "An Information Processing Artifact that is designed to capture some information and store it in some recording format on some storage medium."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Recording"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Recording Device"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Refinery
+cco:Refinery rdf:type owl:Class ;
+ rdfs:subClassOf cco:Factory ;
+ cco:definition "A Factory that is designed for refining raw materials into products of value."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Refinery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Refinery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReflectingOpticalTelescope
+cco:ReflectingOpticalTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalTelescope ;
+ cco:alternative_label "Reflecting Telescope"^^xsd:string ,
+ "Reflector"^^xsd:string ;
+ cco:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via reflection through the use of one or more curved Mirrors to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Reflecting_telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reflecting Optical Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReflectionArtifactFunction
+cco:ReflectionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in a reflection event in which the Artifact causes a change in a wavefront at an interface between the reflecting medium and the transmission medium such that the wavefront returns into the transmission medium."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reflection Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReflectivePrism
+cco:ReflectivePrism rdf:type owl:Class ;
+ rdfs:subClassOf cco:Prism ;
+ cco:definition "A Prism designed to reflect light in order to flip, invert, rotate, deviate, or displace a beam of light entering the Prism."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reflective Prism"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RefractingOpticalTelescope
+cco:RefractingOpticalTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:OpticalTelescope ;
+ cco:alternative_label "Refracting Telescope"^^xsd:string ,
+ "Refractor"^^xsd:string ;
+ cco:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light via refraction through the use of one or more Lenses to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Refracting_telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Refracting Optical Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RefractionArtifactFunction
+cco:RefractionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact participating in a refraction event in which the Artifact causes a change in direction of wave propagation due to a change in its transmission medium."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Refraction Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReligiousArtifactFunction
+cco:ReligiousArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes related to worship and prayer."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Religion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Religious Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReligiousFacility
+cco:ReligiousFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for worship and prayer."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Religion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Religious Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Report
+cco:Report rdf:type owl:Class ;
+ rdfs:subClassOf cco:Document ;
+ cco:definition "A Document that is designed to bear some specific Information Content Entity that conveys an account of some event, situation, or the result of some observation or inquiry."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Report"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Report"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResearchAndDevelopmentArtifactFunction
+cco:ResearchAndDevelopmentArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of producing new knowledge or of devising new applications of existing knowledge."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Research_and_development"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Research and Development Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResearchArtifactFunction
+cco:ResearchArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to perform research on a specified entity or class of entities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Research Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Reservoir
+cco:Reservoir rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store water in a man-made open enclosure or area."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Reservoir"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reservoir"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResidentialArtifactFunction
+cco:ResidentialArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of residing in a dwelling or home."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Residence"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Residential Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResidentialFacility
+cco:ResidentialFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to house one or more Persons."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Residence"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Residential Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResistanceArtifactFunction
+cco:ResistanceArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalArtifactFunction ;
+ cco:definition "An Electrical Artifact Function that is realized in processes in which an Artifact opposes the flow of an electric current."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electrical_resistivity_and_conductivity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electrical Resistance Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Resource
+cco:Resource rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000002 ;
+ cco:definition "A Continuant that is owned by, in the possession of, or is otherwise controlled by an Agent such that it could be used by that Agent."^^xsd:string ;
+ cco:elucidation "Resources are Resources for some Agent. If no instance of Agent existed, no instance of Resource would exist either. It is not a requirement that something be valuable in order for it to be a Resource. Thus the value of something can drastically change without altering whether that thing is a Resource."^^xsd:string ;
+ cco:example_of_usage "a group of interns"^^xsd:string ,
+ "a knowledge base"^^xsd:string ,
+ "a plot of land"^^xsd:string ,
+ "a software program"^^xsd:string ,
+ "a sum of money"^^xsd:string ,
+ "a vehicle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "This class is designed to group continuants according to a very broad criterion and is not intended to be used as a parent class for entities that can be more specifically represented under another class. Hence, Natural Resource may be an appropriate subtype but Money, Oil, and Gold Mine are not."^^xsd:string ;
+ rdfs:label "Resource"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RetailArtifactFunction
+cco:RetailArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of selling goods or merchandise in small or individual lots for direct consumption by persons or organizations."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Retail"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Retail Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RetailFacility
+cco:RetailFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for buying and selling goods and services, especially on a large scale."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Commerce"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Commercial Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Revolver
+cco:Revolver rdf:type owl:Class ;
+ rdfs:subClassOf cco:HandGun ;
+ cco:definition "A Hand Gun having a number of firing chambers in a revolving cylinder, where each chamber in the cylinder can be loaded with a single Cartridge."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Revolver"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Revolver"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RhombicAntenna
+cco:RhombicAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:WireAntenna ;
+ cco:definition "A Wire Antenna that consists of one to three parallel wires suspended above the ground by poles or towers at each vertex in a rhombic shape with each of the four sides being the same length (typically at least one wavelength or longer)."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rhombic_antenna"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rhombic Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Rifle
+cco:Rifle rdf:type owl:Class ;
+ rdfs:subClassOf cco:LongGun ;
+ cco:definition "A Long Gun that is designed to have a rifled barrel and to fire single Bullets over long ranges with high accuracy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rifle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rifle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Road
+cco:Road rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable Ground Vehicles to travel from one location to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Road"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Road"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RoadJunction
+cco:RoadJunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable Ground Vehicles to exit one Road and enter another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Junction_(road)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Road Junction"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Rocket
+cco:Rocket rdf:type owl:Class ;
+ rdfs:subClassOf cco:Vehicle ;
+ cco:definition "A Vehicle that is designed to travel through air or space and which obtains Thrust from a Rocket Engine."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rocket"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rocket"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RocketEngine
+cco:RocketEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:JetEngine ;
+ cco:alternative_label "Thruster"^^xsd:string ;
+ cco:definition "A Jet Engine that is designed to use only stored Rocket Propellant to form a high speed propulsive jet in order to generate Thrust."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rocket_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Most rocket engines are also Internal Combustion Engines, however non-combusting forms also exist. For example, an untied balloon full of air that is released and allowed to zoom around the room may be both a Rocket Engine and a Physically Powered Engine."^^xsd:string ;
+ rdfs:label "Rocket Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RocketLauncher
+cco:RocketLauncher rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProjectileLauncher ;
+ cco:definition "A Projectile Launcher that is designed to launch one or more Unguided Rockets."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rocket_launcher"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rocket Launcher"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RocketPod
+cco:RocketPod rdf:type owl:Class ;
+ rdfs:subClassOf cco:RocketLauncher ;
+ cco:definition "A Rocket Launcher that is designed to contain several Unguided Rockets held in individual tubes and to be used by Aircraft or Helicopters for close air support."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rocket Pod"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RocketPropelledGrenade
+cco:RocketPropelledGrenade rdf:type owl:Class ;
+ rdfs:subClassOf cco:UnguidedRocket ;
+ cco:acronym "RPG"^^xsd:string ;
+ cco:definition "An Unguided Rocket that is designed to contain an explosive warhead, be fired from a Shoulder-Fired Rocket Launcher, and be used against Tanks."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rocket-propelled_grenade"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Rocket-Propelled Grenade"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RoundShot
+cco:RoundShot rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:definition "A Portion of Ammunition that is designed to be a solid projectile without explosive charge and to be fired from a cannon."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Round_shot"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Round Shot"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SatelliteArtifact
+cco:SatelliteArtifact rdf:type owl:Class ;
+ rdfs:subClassOf cco:Spacecraft ;
+ cco:definition "A Spacecraft that is designed to Orbit a Space Object (typically Earth)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Satellite Artifact"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/School
+cco:School rdf:type owl:Class ;
+ rdfs:subClassOf cco:EducationalFacility ;
+ cco:definition "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/School"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "School"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ScramjetEngine
+cco:ScramjetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:AirBreathingJetEngine ;
+ cco:alternative_label "Scramjet"^^xsd:string ,
+ "Supersonic Combusting Ramjet"^^xsd:string ;
+ cco:definition "An Air-Breathing Jet Engine that uses the forward motion of the Engine to compress incoming air at supersonic speeds before adding the fuel and constantly combusting the mixture then expelling the exhaust out through the rear Propelling Nozzle to generate Thrust."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Scramjet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Scramjet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SeatOfLocalGovernment
+cco:SeatOfLocalGovernment rdf:type owl:Class ;
+ rdfs:subClassOf cco:GovernmentBuilding ;
+ cco:alternative_label "City Hall"^^xsd:string ,
+ "Town Hall"^^xsd:string ;
+ cco:definition "A Government Building that is designed for the administration of a local community."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Seat_of_local_government"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Seat of Local Government"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SeatOfNationalGovernment
+cco:SeatOfNationalGovernment rdf:type owl:Class ;
+ rdfs:subClassOf cco:GovernmentBuilding ;
+ cco:definition "A Government Building that is designed for the administration of a sovereign nation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Seat_of_government"^^xsd:string ;
+ cco:example_of_usage "Parliament of Canada"^^xsd:string ,
+ "United States Capitol"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Seat of National Government"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SecondaryCellElectricBattery
+cco:SecondaryCellElectricBattery rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricBattery ;
+ cco:alternative_label "Rechargeable Battery"^^xsd:string ,
+ "Secondary Cell Battery"^^xsd:string ;
+ cco:definition "An Electric Battery that is designed to be recharged."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rechargeable_battery"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Secondary Cell Electric Battery"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SemiAutomaticPistol
+cco:SemiAutomaticPistol rdf:type owl:Class ;
+ rdfs:subClassOf cco:HandGun ;
+ cco:definition "A Hand Gun that has a single fixed firing chamber machined into the rear of the barrel and an ammunition magazine capable of holding multiple Cartridges such that the Hand Gun is designed to automatically reload each time it is fired and to fire a Bullet with each successive pull of the trigger until the stored ammunition is depleted."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Semi-automatic_pistol"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Semi-automatic Pistol"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Sensor
+cco:Sensor rdf:type owl:Class ;
+ rdfs:subClassOf cco:Transducer ;
+ cco:definition "A Transducer that is designed to convert incoming energy into a output signal which reliably corresponds to changes in that energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Sensor"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sensor"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SensorArtifactFunction
+cco:SensorArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes wherein its bearer is used to produce an output signal which reliably corresponds to changes in the artifact's environment."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Sensor"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sensor Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SensorDeploymentArtifactFunction
+cco:SensorDeploymentArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that inheres in Artifacts that are designed to support or convey one or more Sensors while the Sensors are realizing their own Artifact Functions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sensor Deployment Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SensorModalityFunction
+cco:SensorModalityFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SensorArtifactFunction ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:inheres_in ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sensor Modality Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SensorPlatform
+cco:SensorPlatform rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to support, and in some cases transport, a Sensor during its deployment and functioning."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sensor Platform"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ServiceArtifactFunction
+cco:ServiceArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process of providing intangible goods to consumers."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Goods_and_services"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Service Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SewageTreatmentFacility
+cco:SewageTreatmentFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:WasteManagementFacility ;
+ cco:definition "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Sewage_treatment"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sewage Treatment Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Shaft
+cco:Shaft rdf:type owl:Class ;
+ rdfs:subClassOf cco:MachineElement ;
+ cco:definition "A Machine Element that is designed to rotate and transmit Torque, Power, or Rotational Motion from one machine element to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Shaft"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "A Shaft is usually used to connect other components of a drive train that cannot be connected directly either because of the distance between them or the need to allow for relative movement between those components."^^xsd:string ;
+ rdfs:label "Shaft"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Shell
+cco:Shell rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:definition "A Portion of Ammunition that is designed to be a non-self-propelled projectile and to carry a payload (explosive or other) over a relatively short distance."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Shell_(projectile)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Shell"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Shop
+cco:Shop rdf:type owl:Class ;
+ rdfs:subClassOf cco:RetailFacility ;
+ cco:definition "A Commercial Facility designed to sell small lots of goods to consumers."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Retail#Types_by_marketing_strategy"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Shop"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Shotgun
+cco:Shotgun rdf:type owl:Class ;
+ rdfs:subClassOf cco:LongGun ;
+ cco:definition "A Long Gun that fires packets of shot, a single slug, a sabot, or a specialty round (such as tear gas, bolo shell, or a breaching round) over shorter ranges than that of Rifles and with less accuracy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Shotgun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Shotgun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ShouldFiredRocketLauncher
+cco:ShouldFiredRocketLauncher rdf:type owl:Class ;
+ rdfs:subClassOf cco:RocketLauncher ;
+ cco:definition "A Rocket Launcher that is designed to be small enough to be carried by a single person and fired while supported on the person's shoulder."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Shoulder-Fired Rocket Launcher"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SignalDetectionArtifactFunction
+cco:SignalDetectionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that inheres in Artifacts that are designed to discern between information-bearing patterns and random patterns, or noise, that distract from the information."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Detection_theory"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Signal Detection Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SignalProcessingArtifactFunction
+cco:SignalProcessingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that inheres in Artifacts that are designed to process or transfer information contained in signals."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Signal_processing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Signal Processing Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SniperRifle
+cco:SniperRifle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Rifle ;
+ cco:definition "A Rifle that is designed to be highly accurate for long-range precision tactical shooting."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Sniper_rifle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Sniper Rifle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolarPanel
+cco:SolarPanel rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:definition "An Electrical Power Source that consists in part of one or more photovoltaic (i.e. solar) cells that convert light energy (photons) directly into electricity by means of the photovoltaic effect."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Solar_panel and https://en.wikipedia.org/wiki/Solar_cell"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Solar Panel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolarPanelSystem
+cco:SolarPanelSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSource ;
+ cco:alternative_label "Photovoltaic System"^^xsd:string ,
+ "Solar Array"^^xsd:string ;
+ cco:definition "An Electrical Power Source that consists in part of one or more Solar Panels, a power inverter, electrical wiring between the components, a mounting and support structure, and may also include a battery and/or a solar tracking system and is the bearer of functions realized in processes of deriving, transferring, and storing electrical energy derived from light energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Photovoltaic_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Solar Panel System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolventArtifactFunction
+cco:SolventArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
+ cco:definition "A Chemical Reaction Artifact Function that is realized in the dissolving of other substances (namely, solutes) without change in the former's chemical structure."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Solvent"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Solvent Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Spacecraft
+cco:Spacecraft rdf:type owl:Class ;
+ rdfs:subClassOf cco:Vehicle ;
+ cco:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by space travel."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Spacecraft"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Spacecraft"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SparkIgnitionEngine
+cco:SparkIgnitionEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:InternalCombustionEngine ;
+ cco:definition "An Internal Combustion Engine that is designed to operate by generating a spark to ignite a portion of Fuel and Oxidizer mixture."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Spark Ignition Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SparkIgnitionSystem
+cco:SparkIgnitionSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:IgnitionSystem ;
+ cco:definition "An Ignition System that is designed to produce a spark in order to initiate an Ignition process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Spark Ignition System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SpeedArtifactFunction
+cco:SpeedArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MotionArtifactFunction ;
+ cco:definition "A Motion Artifact Function that is realized in some process in which its bearer has some speed."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Speed Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SpeedMeasurementArtifactFunction
+cco:SpeedMeasurementArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementArtifactFunction ;
+ cco:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Speed of a specified object's or class of objects' Motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Speed Measurement Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SprayNozzle
+cco:SprayNozzle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Nozzle ;
+ cco:definition "A Nozzle that is designed to facilitate a conversion of the flow of a portion of liquid into a dynamic collection of drops dispersed in a portion of gas."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Spray Nozzle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Spreadsheet
+cco:Spreadsheet rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some Information Content Entity in an interactive, tabular form."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Spreadsheet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Spreadsheet"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Stage
+cco:Stage rdf:type owl:Class ;
+ rdfs:subClassOf cco:EntertainmentFacility ;
+ cco:definition "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Stage_(theatre)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Stage"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SteamEngine
+cco:SteamEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:ExternalCombustionEngine ;
+ cco:definition "An External Combustion Engine that is designed to use steam as its working fluid."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Steam_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Steam Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SteeringControlComponent
+cco:SteeringControlComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:VehicleControlSystemComponent ;
+ cco:definition "An Vehicle Control System Component that is designed to be a component of a Steering Control System."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Steering Control Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SteeringControlSystem
+cco:SteeringControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:VehicleControlSystem ;
+ cco:definition "A Vehicle Control System that is designed to control the direction some Vehicle is traveling."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Steering Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StirlingEngine
+cco:StirlingEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:ExternalCombustionEngine ;
+ cco:definition "An External Combusion Engine that is designed to compress and expand some working fluid at different temperatures, such that there is a net conversion of heat energy to mechanical work."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Stirling_engine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Stirling Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Stock
+cco:Stock rdf:type owl:Class ;
+ rdfs:subClassOf cco:FinancialInstrument ;
+ cco:definition "A Financial Instrument that entitles holders to an ownership interest (equity) in the specified Incorporated Organization."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Stock"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Stock"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StockCertificate
+cco:StockCertificate rdf:type owl:Class ;
+ rdfs:subClassOf cco:Stock ;
+ cco:definition "Stock that consists of a Certificate."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Stock Certificate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StorageFacility
+cco:StorageFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to store materials or goods."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Storage"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Storage Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StructuralSupportArtifactFunction
+cco:StructuralSupportArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact providing physical support to another object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Structural Support Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SubmachineGun
+cco:SubmachineGun rdf:type owl:Class ;
+ rdfs:subClassOf cco:LongGun ;
+ cco:definition "An Long Gun that is designed to be have automatic-fire functionality, fire pistol-caliber ammunition that is magazine-fed, and which is usually smaller than other automatic firearms."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Submachine_gun"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Submachine Gun"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SubmersibleArtifactFunction
+cco:SubmersibleArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes of operating while submerged in water."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Submersible"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Submersible Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SubmillimeterWavelengthRadioTelescope
+cco:SubmillimeterWavelengthRadioTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioTelescope ;
+ cco:alternative_label "Microwave Telescope"^^xsd:string ;
+ cco:definition "A Radio Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing radio waves from the submillimeter waveband (i.e. microwaves) to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "http://kp12m.as.arizona.edu/docs/what_is_submillimeter.htm, https://en.wikipedia.org/wiki/Submillimetre_astronomy"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "The submillimeter waveband is between the far-infrared and microwave wavebands and is typically taken to have a wavelength of between a few hundred micrometers and a millimeter."^^xsd:string ;
+ rdfs:label "Submillimeter Wavelength Radio Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SurfactantArtifactFunction
+cco:SurfactantArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:EmulsifierArtifactFunction ;
+ cco:definition "An Emulsifier Artifact Function that is realized in a process that lowers the surface tension between two liquids or between a liquid and a solid."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Surfactant"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Surfactant Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SwitchArtifactFunction
+cco:SwitchArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in a process of breaking an electric circuit by interrupting the current or diverting it from one conductor to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Switch"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Switch Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Synagogue
+cco:Synagogue rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReligiousFacility ;
+ cco:definition "A Religious Facility that is designed for Judaic worship and prayer."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Synagogue"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Synagogue"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SyntheticApertureRadarImagingArtifactFunction
+cco:SyntheticApertureRadarImagingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadarImagingArtifactFunction ;
+ cco:definition "A Radar Imaging Artifact Function that inheres in Artifacts that are designed to produce visual representations of entities using the motion of a radar antenna over a targeted region to create a synthetic aperture."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Synthetic Aperture Radar Imaging Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SystemClock
+cco:SystemClock rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimekeepingInstrument ;
+ cco:definition "A Timekeeping Instrument that is part of a computer an is designed to issue a steady high-frequency signal that is used to synchronize all of the computer's internal components."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/system+clock"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "System Clock"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Tank
+cco:Tank rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:definition "A Ground Motor Vehicle that is designed to be armored, carry heavy firepower, have a powerful Engine, and travel on one or more continuous tracks such that it is suitable for front-line combat and can provide operational maneuverability as well as tactical offensive and defensive capabilities."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Tank"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Tank firepower is normally provided by a large-caliber main gun mounted in a rotating turret, which is supported by secondary machine guns. A tank's heavy armour and all-terrain mobility provide protection for both the tank and its crew, allowing it to perform all primary tasks of the armoured troops on the battlefield."^^xsd:string ;
+ rdfs:label "Tank"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationEndpoint
+cco:TelecommunicationEndpoint rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationNetworkNode ;
+ cco:definition "A Telecommunication Network Node that connects a Telecommunication Terminal to a Telecommunication Network."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Communication_endpoint"^^xsd:string ;
+ cco:elucidation "A Telecommunication Terminal is an end user device such as a Telephone, fax machine, or Computer."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telecommunication Endpoint"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationInfrastructure
+cco:TelecommunicationInfrastructure rdf:type owl:Class ;
+ rdfs:subClassOf cco:Infrastructure ;
+ cco:definition "An Infrastructure that is designed to support the use of Telecommunication Instruments to communicate."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Category:Telecommunications_infrastructure"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telecommunication Infrastructure"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationInstrument
+cco:TelecommunicationInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationInstrument ;
+ cco:definition "A Communication Instrument that is designed for use by some Agent in some Act of Communication where the recipient of that communication is potentially a significant distance away from the Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telecommunication Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetwork
+cco:TelecommunicationNetwork rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationInfrastructure ;
+ cco:definition "A Telecommunication Infrastructure Artifact that is a system of terminals, links, and designed to enable the transmission of information over significant distances between users of the terminals."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telecommunications_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telecommunication Network"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationNetworkNode
+cco:TelecommunicationNetworkNode rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationInfrastructure ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:TelecommunicationNetwork
+ ] ;
+ cco:definition "A Telecommunication Infrastructure Artifact that consists of a connection point, redistribution point, or endpoint within a Telecommunication Network and can be either active or passive."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Node_(networking)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telecommunication Network Node"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelecommunicationSwitchingNode
+cco:TelecommunicationSwitchingNode rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationNetworkNode ;
+ cco:definition "A Telecommunication Network Node that is capable of redirecting a communication transmission to another Telecommunication Network Node."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telecommunications_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telecommunication Switching Node"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Telephone
+cco:Telephone rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationInstrument ;
+ cco:alternative_label "Phone"^^xsd:string ;
+ cco:definition "A Telecommunication Instrument that is designed to provide point-to-point communication between agents by means of audio messages."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telephone"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telephone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelephoneLine
+cco:TelephoneLine rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationInfrastructure ;
+ cco:alternative_label "Telephone Circuit"^^xsd:string ;
+ cco:definition "A Telecommunications Infrastructure Artifact that consists of a physical wire or other signaling medium that connects two or more nodes within a Telecommunication Network."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telephone_line"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telephone Line"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelephoneNetwork
+cco:TelephoneNetwork rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationNetwork ;
+ cco:definition "A Telecommunication Network that is designed to allow telephone calls to be made between two or more parties connected to the network."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telephone_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telephone Network"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TelephoneSubscriberLine
+cco:TelephoneSubscriberLine rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelephoneLine ;
+ cco:definition "A Telephone Line that connects a Communication Endpoint to another node in a Telecommunication Network to enable service to a user's Telephone."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telephone_line"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telephone Subscriber Line"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Telescope
+cco:Telescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:ImagingInstrument ;
+ cco:definition "An Imaging Instrument that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing Electromagnetic Radiation to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TemperatureMeasurementArtifactFunction
+cco:TemperatureMeasurementArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementArtifactFunction ;
+ cco:definition "A Measurement Artifact Function that is realized during events in which an Artifact is used to measure the Temperature of a specified object or class of objects."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Temperature Measurement Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TerminalBoard
+cco:TerminalBoard rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
+ cco:definition "An Electrical Power Source Component that is designed to join electrical terminations and create an electrical circuit by means of a block which connects individual wires without a splice or physically joining the ends."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electrical_connector#Terminal_blocks"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Terminal Board"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TerroristTrainingCamp
+cco:TerroristTrainingCamp rdf:type owl:Class ;
+ rdfs:subClassOf cco:TrainingCamp ;
+ cco:definition "A Training Camp designed to teach students methods of terrorism."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Terrorist_training_camp"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Terrorist Training Camp"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThermalControlArtifactFunction
+cco:ThermalControlArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by an Artifact increasing, decreasing, or maintaining the temperature of itself, a part of itself, or another object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Thermal Control Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThermalImagingArtifactFunction
+cco:ThermalImagingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ImagingArtifactFunction ;
+ cco:definition "An Imaging Artifact Function that is realized during events in which an Artifact is used to create a visual representation of an entity using radiation from the far infrared region of the electromagnetic spectrum that the entity emits"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Thermal Imaging Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThermalInsulationArtifactFunction
+cco:ThermalInsulationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ThermalControlArtifactFunction ;
+ cco:definition "A Thermal Control Artifact Function that is realized during events in which an Artifact prevents or reduces the transfer of heat between objects that are in thermal contact or in range of radiative influence."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Thermal_insulation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Thermal Insulation Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThermalPowerPlant
+cco:ThermalPowerPlant rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricPowerStation ;
+ cco:definition "An Electric Power Station that is designed to convert heat energy into electrical energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Thermal_power_station"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Thermal Power Plant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TimekeepingArtifactFunction
+cco:TimekeepingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized during events in which an Artifact is used to keep track of and report the current time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Timekeeping Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TimekeepingInstrument
+cco:TimekeepingInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity that is about some temporal region."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Timekeeper"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Timekeeping Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TitleDocument
+cco:TitleDocument rdf:type owl:Class ;
+ rdfs:subClassOf cco:LegalInstrument ;
+ cco:definition "A Legal Instrument that is designed as evidence of ownership."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Title_(property)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Title Document"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Tool
+cco:Tool rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to assist in the performance of manual or mechanical work and not to be consumed in that process."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Tool"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Tool"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Torpedo
+cco:Torpedo rdf:type owl:Class ;
+ rdfs:subClassOf cco:PrecisionGuidedMissile ;
+ cco:definition "A Precision-Guided Missile that is designed to be fired into a body of water, be self-propelled through the water, and carry an explosive payload."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Torpedo"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Torpedo"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TorpedoTube
+cco:TorpedoTube rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProjectileLauncher ;
+ cco:definition "A Projectile Launcher that is designed to launch Torpedoes."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Torpedo_tube"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Torpedo Tube"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Trail
+cco:Trail rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable transport through rough country, such as a forest or moor."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Trail"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Trail"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Train
+cco:Train rdf:type owl:Class ;
+ rdfs:subClassOf cco:RailTransportVehicle ;
+ cco:alternative_label "Railroad Train"^^xsd:string ,
+ "Railway Train"^^xsd:string ;
+ cco:definition "A Rail Transport Vehicle that consists of a series of connected Train Cars or Railcars."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Train"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Train"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TrainCar
+cco:TrainCar rdf:type owl:Class ;
+ rdfs:subClassOf cco:RailTransportVehicle ;
+ cco:alternative_label "Railroad Car"^^xsd:string ;
+ cco:definition "A Rail Transport Vehicle that consists of a single Vehicle that is not a Train but is designed to be connected to other Train Cars along with at least one Locomotive to form a Train."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Railroad_car"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Train Car"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TrainingCamp
+cco:TrainingCamp rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Training_camp"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Training Camp"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Transcript
+cco:Transcript rdf:type owl:Class ;
+ rdfs:subClassOf cco:Document ;
+ cco:definition "A Document that is designed to bear some specific Information Content Entity that was originally recorded in a different medium."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transcript"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Transcript"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Transducer
+cco:Transducer rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to convert one form of energy to another."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transducer"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Transducer"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TransportationFacility
+cco:TransportationFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transport"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Transportation Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TransportationInfrastructure
+cco:TransportationInfrastructure rdf:type owl:Class ;
+ rdfs:subClassOf cco:Infrastructure ;
+ cco:definition "An Infrastructure that is designed to facilitate the movement of material entities from one location to another by providing the necessary structures for Persons to travel or for Vehicles to transport material entities."^^xsd:string ;
+ cco:definition_source "http://www.cfr.org/infrastructure/transportation-infrastructure-moving-america/p18611"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Transportation Infrastructure"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TrimTab
+cco:TrimTab rdf:type owl:Class ;
+ rdfs:subClassOf cco:ControlSurface ;
+ cco:definition "A Control Surface that is designed to counteract hydro-, aerodynamic, or other forces in order to stabilize the Vehicle it is part of in the desired Attitude."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Trim_tab"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Trim Tab"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TripleInertialNavigationSystem
+cco:TripleInertialNavigationSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:InertialNavigationSystem ;
+ cco:alternative_label "Triple INS"^^xsd:string ;
+ cco:definition "An Inertial Navigation System that is designed to use three redundant computers to continuously calculate via dead reckoning the position, orientation, and velocity of a moving object without the need for external references, in such a way that eliminates the need for a navigator."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Triple Inertial Navigation System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Tripod
+cco:Tripod rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that consists of three legs and a platform that joins them and which is designed to support the weight and maintain the stability of objects that are attached to or rested on the platform."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Tripod"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Tripod"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Truck
+cco:Truck rdf:type owl:Class ;
+ rdfs:subClassOf cco:GroundMotorVehicle ;
+ cco:definition "A Ground Motor Vehicle that is designed to be used to transport cargo."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Truck"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Trucks vary greatly in their size and power -- ranging from small ultra-light trucks to enormous heavy trucks. Trucks also vary greatly in their configurations -- ranging from very basic flatbeds or box trucks to highly specialized cargo carriers. Trucks may also be configured to mount specialized equipment, such as in the case of fire trucks, concrete mixers, and suction excavators."^^xsd:string ;
+ rdfs:label "Truck"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Tunnel
+cco:Tunnel rdf:type owl:Class ;
+ rdfs:subClassOf cco:TransportationInfrastructure ;
+ cco:definition "A Transportation Infrastructure Artifact that is designed to enable Ground Vehicles to travel underneath a surrounding soil, earth, or rock formation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Tunnel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Tunnel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TurbineSteamEngine
+cco:TurbineSteamEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:SteamEngine ;
+ cco:alternative_label "Steam Turbine"^^xsd:string ;
+ cco:definition "A Steam Engine that is designed to extract thermal energy from pressurized steam and use it to do mechanical work on a rotating output shaft."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Steam_turbine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Turbine Steam Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TurbofanAirBreathingJetEngine
+cco:TurbofanAirBreathingJetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:AirBreathingJetEngine ;
+ cco:definition "An Air-Breathing Jet Engine that uses a Turbofan, which consists of a Turbine and a Fan."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Turbofan"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Turbofan Air-Breathing Jet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TurbojetAirBreathingJetEngine
+cco:TurbojetAirBreathingJetEngine rdf:type owl:Class ;
+ rdfs:subClassOf cco:AirBreathingJetEngine ;
+ cco:definition "An Air-Breathing Jet Engine that uses a Turbojet, which consists of a Turbine with a Propelling Nozzle."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Turbojet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Turbojet Air-Breathing Jet Engine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UltraHighFrequencyCommunicationInstrument
+cco:UltraHighFrequencyCommunicationInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Ultra High Frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ultra High Frequency Communication Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UltravioletTelescope
+cco:UltravioletTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telescope ;
+ cco:alternative_label "UV Telescope"^^xsd:string ;
+ cco:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing ultraviolet light to form an enhanced image of the Object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ultraviolet Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UndergroundMine
+cco:UndergroundMine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Mine ;
+ cco:definition "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Underground Mine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UnderwaterMine
+cco:UnderwaterMine rdf:type owl:Class ;
+ rdfs:subClassOf cco:Mine ;
+ cco:definition "A Mine that is designed to support the extraction of materials from the ocean floor."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Naval_mine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Underwater Mine"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UnguidedRocket
+cco:UnguidedRocket rdf:type owl:Class ;
+ rdfs:subClassOf cco:PortionOfAmmunition ;
+ cco:alternative_label "Rocket"^^xsd:string ;
+ cco:definition "A Portion of Ammunition that is designed to be a self-propelled, but unguided, projectile that delivers some payload (explosive or other) over relatively long distances through the use of a Rocket Engine."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rocket_(weapon)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Unguided Rocket"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Valve
+cco:Valve rdf:type owl:Class ;
+ rdfs:subClassOf cco:FluidControlArtifact ;
+ cco:definition "A Fluid Control Artifact that is designed to regulate, direct, or control the flow of fluid by opening, closing, or partially obstructing the fluid from moving along a passageway."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Valve"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Valve"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Vehicle
+cco:Vehicle rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to facilitate the movement of material entities from one location to another by conveying them there."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Vehicle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleCompartment
+cco:VehicleCompartment rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:alternative_label "Compartment"^^xsd:string ;
+ cco:definition "An Artifact that is designed to partition a Vehicle into subdivisions for various purposes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Compartment"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleControlSystem
+cco:VehicleControlSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:ControlSystem ;
+ cco:definition "A Control System that is designed to enable some Agent to control some Vehicle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Control System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleControlSystemComponent
+cco:VehicleControlSystemComponent rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be a component of a Vehicle Control System."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Control System Component"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleFrame
+cco:VehicleFrame rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be the main supporting structure of some Vehicle."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Vehicle_frame"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Frame"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleFramePart
+cco:VehicleFramePart rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to be part of some Vehicle Frame."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Frame Part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleTrack
+cco:VehicleTrack rdf:type owl:Class ;
+ rdfs:subClassOf cco:ObjectTrack ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_spatial_part ;
+ owl:someValuesFrom cco:VehicleTrackPoint
+ ] ;
+ cco:definition "An Object Track for a Vehicle during some motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Track"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleTrackPoint
+cco:VehicleTrackPoint rdf:type owl:Class ;
+ rdfs:subClassOf cco:ObjectTrackPoint ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:spatial_part_of ;
+ owl:someValuesFrom cco:VehicleTrack
+ ] ;
+ cco:definition "An Object Track Point that is where a Vehicle is or was located during some motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Track Point"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleTransmission
+cco:VehicleTransmission rdf:type owl:Class ;
+ rdfs:subClassOf cco:PowerTransmissionArtifact ;
+ cco:alternative_label "Gearbox"^^xsd:string ,
+ "Transmission"^^xsd:string ;
+ cco:definition "A Power Transmission Artifact that is designed to vary the output speed and torque in a rotating power transfer system."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Transmission_(mechanics)"^^xsd:anyURI ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Transmission"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VentilationControlArtifactFunction
+cco:VentilationControlArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunction ;
+ cco:definition "An Artifact Function that is realized in processes in which some Artifact is used to control the quality of air in some space."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Ventilation Control Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VeryHighFrequencyCommunicationInstrument
+cco:VeryHighFrequencyCommunicationInstrument rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioCommunicationInstrument ;
+ cco:definition "A Radio Communication Instrument that is designed to participate in some process that has process part some Very High Frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Very High Frequency Communication Instrument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Video
+cco:Video rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity in the form of a sequence of representations that are presented sufficiently rapidly to create the appearance of motion and continuity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Video"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Video"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VideoCamera
+cco:VideoCamera rdf:type owl:Class ;
+ rdfs:subClassOf cco:Camera ;
+ cco:definition "A Camera that is designed to form and digitally or physically record a continuous stream of subsequent images of an entity or scene such that the images can be played back in succession as a video."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Video Camera"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VisualProsthesis
+cco:VisualProsthesis rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtificialEye ;
+ cco:alternative_label "Bionic Eye"^^xsd:string ;
+ cco:definition "An Artificial Eye that is designed to replace a missing eye, which performs the function of an eye."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Visual_prosthesis"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Visual Prosthesis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VoltageRegulatingArtifactFunction
+cco:VoltageRegulatingArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricalArtifactFunction ;
+ cco:definition "An Artifact Function that is realized by processes in which some Artifact is used to cause a change in the voltage magnitude between the sending and receiving end of an electrical component."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Voltage_regulation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Voltage Regulating Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Warehouse
+cco:Warehouse rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Storage Facility that is designed to store commercial goods."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Warehouse"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Warehouse"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WarningMessage
+cco:WarningMessage rdf:type owl:Class ;
+ rdfs:subClassOf cco:NotificationMessage ;
+ cco:definition "A Notification Message that is designed to bear an Information Content Entity that describes a possible or impending threat."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Warning Message"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WashingFacility
+cco:WashingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed to wash personnel or equipment."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Washing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Washing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WasteManagementArtifactFunction
+cco:WasteManagementArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:ServiceArtifactFunction ;
+ cco:definition "A Service Artifact Function that is realized in processes of collecting transporting processing recycling or disposing and monitoring of waste materials."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Waste_management"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Waste Management Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WasteManagementFacility
+cco:WasteManagementFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for managing waste from its inception to its final disposal."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Waste_management"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Waste Management Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WaterTower
+cco:WaterTower rdf:type owl:Class ;
+ rdfs:subClassOf cco:StorageFacility ;
+ cco:definition "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Water_tower"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Water Tower"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WaterTreatmentFacility
+cco:WaterTreatmentFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Facility ;
+ cco:definition "A Facility that is designed for making water more acceptable for a specific end-use."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Water_treatment"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Water Treatment Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Watercraft
+cco:Watercraft rdf:type owl:Class ;
+ rdfs:subClassOf cco:Vehicle ;
+ cco:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by water travel."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Watercraft"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Watercraft"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Weapon
+cco:Weapon rdf:type owl:Class ;
+ rdfs:subClassOf cco:Artifact ;
+ cco:definition "An Artifact that is designed to destroy or inflict damage to structures or systems, or to kill or wound living things."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Weapon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Weapon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WeaponManufacturingFacility
+cco:WeaponManufacturingFacility rdf:type owl:Class ;
+ rdfs:subClassOf cco:Factory ;
+ cco:definition "A Factory that is designed to produce or assemble weapons."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Arms_industry"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Weapon Manufacturing Facility"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WettingAgentArtifactFunction
+cco:WettingAgentArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:SurfactantArtifactFunction ;
+ cco:definition "A Surfactant Artifact Function that is realized in a process that reduces the water repellent tendency of a substance thereby allowing it to become wet."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Wetting"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wetting Agent Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WindFarm
+cco:WindFarm rdf:type owl:Class ;
+ rdfs:subClassOf cco:ElectricPowerStation ;
+ cco:definition "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Wind_farm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wind Farm"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WireAntenna
+cco:WireAntenna rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioAntenna ;
+ cco:definition "A Radio Antenna that consists primarily of a length of wire."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wire Antenna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WireReceiver
+cco:WireReceiver rdf:type owl:Class ;
+ rdfs:subClassOf cco:RadioReceiver ;
+ cco:definition "A Radio Receiver that uses a Wire Antenna to intercept radio signals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wire Receiver"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationArtifactFunction
+cco:WiredCommunicationArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationArtifactFunction ;
+ cco:definition "A Communication Artifact Function that is realized in a process that conveys meaningful signs by means of a (usually cylindrical) flexible strand or rod of metal."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telecommunication"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wired Communication Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationReceptionArtifactFunction
+cco:WiredCommunicationReceptionArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationReceptionArtifactFunction ;
+ cco:definition "A Communication Reception Artifact Function that inheres in an Artifact that is capable of receiving information transmitted from another Artifact to which it is connected by an electrical conductor."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wired Communication Reception Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationRelayArtifactFunction
+cco:WiredCommunicationRelayArtifactFunction rdf:type owl:Class ;
+ rdfs:subClassOf cco:CommunicationRelayArtifactFunction ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:RadioCommunicationArtifactFunction
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:RadioCommunicationReceptionArtifactFunction
+ ] ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wired Communication Relay Artifact Function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WirelessTelecommunicationNetwork
+cco:WirelessTelecommunicationNetwork rdf:type owl:Class ;
+ rdfs:subClassOf cco:TelecommunicationNetwork ;
+ cco:alternative_label "Wireless Network"^^xsd:string ;
+ cco:definition "A Telecommunication Network that uses wireless connections to connect Telecommunication Network Nodes."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Wireless_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wireless Telecommunication Network"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/XRayMicroscope
+cco:XRayMicroscope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Microscope ;
+ cco:definition "A Microscope that is designed to use Electromagnetic Radiation in the soft X-ray band to produce a significantly enlarged image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/X-ray_microscope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "X-ray Microscope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/XRayTelescope
+cco:XRayTelescope rdf:type owl:Class ;
+ rdfs:subClassOf cco:Telescope ;
+ cco:definition "A Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing X-rays to form an enhanced image of the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/X-ray_telescope"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "X-ray Telescope"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AztecCode
+cco:AztecCode rdf:type owl:Class ;
+ rdfs:subClassOf cco:TwoDimensionalBarCode ;
+ cco:definition "A Two-Dimensional Barcode that is used by the transportation industry to scan tickets."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Aztec Code"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Barcode
+cco:Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationBearingArtifact ;
+ cco:definition "An Information Bearing Artifact that consist of machine-readable symbols."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Barcode"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"^^xsd:string ;
+ rdfs:label "Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CodabarBarcode
+cco:CodabarBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of numbers 0-9 and the characters -$:/.+ and is used by logistics and healthcare professionals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Codabar Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Code128Barcode
+cco:Code128Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of up to 128 ASCII characters and is used primarily in supply chains."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Code 128 Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Code39Barcode
+cco:Code39Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Code 39 Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Code93Barcode
+cco:Code93Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of up to 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Code 93 Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DataMatrixCode
+cco:DataMatrixCode rdf:type owl:Class ;
+ rdfs:subClassOf cco:TwoDimensionalBarCode ;
+ cco:definition "A Two-Dimensional Barcode that consists of cells arranged in rectangular patterns and is used for marking small items in logistics and operations."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Data Matrix Code"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EAN13Barcode
+cco:EAN13Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:EANBarcode ;
+ cco:definition "An EAN Barcode that consists of 13 numerical digits and is used to designate products at the point of sale."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "EAN-13 Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EAN8Barcode
+cco:EAN8Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:EANBarcode ;
+ cco:definition "An EAN Barcode that consists of 8 numerical digits and is used to designate products at the point of sale."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "EAN-8 Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EANBarcode
+cco:EANBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of 8 or 13 numerical digits and is used to scan consumer goods."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "EAN Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GS1DataBar
+cco:GS1DataBar rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of 12-14 numerical digits and is used in retail and healthcare."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:comment "Further variants of GS1 DataBar have not been defined here."^^xsd:string ;
+ rdfs:label "GS1 DataBar Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ISBNBarcode
+cco:ISBNBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:EANBarcode ;
+ cco:definition "An EAN Barcode that is used to designate books."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "ISBN Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ISSNBarcode
+cco:ISSNBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:EANBarcode ;
+ cco:definition "An EAN Barcode that is used to designate periodicals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "ISSN Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ITFBarcode
+cco:ITFBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of an even number of numerical characters and is used primarily in packaging and distribution."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "ITF Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JAN13Barcode
+cco:JAN13Barcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:EANBarcode ;
+ cco:definition "An EAN Barcode that consists of 13 numerical digits and is used primarily in Japan to designate products at the point of sale."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "JAN-13 Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MSIPlesseyBarcode
+cco:MSIPlesseyBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of an indefinite number of numerical characters and is used for inventory control and marking storage containers and shelves in warehouse environments."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "MSI Plessey Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OneDimensionalBarcode
+cco:OneDimensionalBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:Barcode ;
+ cco:definition "A Barcode whose concretizations consist of one-dimensional symbols arranged as parallel lines."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "One-Dimensional Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PDF417Code
+cco:PDF417Code rdf:type owl:Class ;
+ rdfs:subClassOf cco:TwoDimensionalBarCode ;
+ cco:definition "A Two-Dimensional Barcode that is used in applications that require the storage of huge amounts of data."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "PDF417 Code"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/QRCode
+cco:QRCode rdf:type owl:Class ;
+ rdfs:subClassOf cco:TwoDimensionalBarCode ;
+ cco:definition "A Two-Dimensional Barcode that consists of numeric, alphanumeric, binary, or kanji information and is used primarily for tracking and marketing."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "QR Code"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TwoDimensionalBarCode
+cco:TwoDimensionalBarCode rdf:type owl:Class ;
+ rdfs:subClassOf cco:Barcode ;
+ cco:definition "A Barcode whose concretizations consist of two-dimensional symbol patterns."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Two-Dimensional Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UPCABarcode
+cco:UPCABarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:UPCBarcode ;
+ cco:definition "A UPC Barcode that consists of 12 numerical digits."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "UPC-A Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UPCBarcode
+cco:UPCBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalBarcode ;
+ cco:definition "A One-Dimensional Barcode that consists of 6 or 12 numerical digits and is used to scan consumer goods."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "UPC Barcode"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UPCEBarcode
+cco:UPCEBarcode rdf:type owl:Class ;
+ rdfs:subClassOf cco:UPCBarcode ;
+ cco:definition "A UPC Barcode that consists of 6 numerical digits."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "UPC-E Barcode"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/Best Practices of Ontology Development.docx b/Best Practices of Ontology Development.docx
new file mode 100644
index 0000000..65853ee
Binary files /dev/null and b/Best Practices of Ontology Development.docx differ
diff --git a/CCO Getting Started Guide.docx b/CCO Getting Started Guide.docx
new file mode 100644
index 0000000..ad2fb4d
Binary files /dev/null and b/CCO Getting Started Guide.docx differ
diff --git a/CurrencyUnitOntology.ttl b/CurrencyUnitOntology.ttl
new file mode 100644
index 0000000..b3a5cc9
--- /dev/null
+++ b/CurrencyUnitOntology.ttl
@@ -0,0 +1,936 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ rdfs:comment "This ontology is designed to represent currencies that are issued and used by countries."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ,
+ "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ rdfs:label "Currency Unit Ontology"^^xsd:string .
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CurrencyUnit
+cco:CurrencyUnit rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of financial values."^^xsd:string ;
+ cco:example_of_usage "U.S. Dollar, Euro, Yuan, South African Rand"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Currency"^^xsd:string .
+
+
+#################################################################
+# Individuals
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AfghanistanAfghani
+cco:AfghanistanAfghani rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Afghanistan Afghani"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AlbaniaLek
+cco:AlbaniaLek rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Albania Lek"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AlgerianDinar
+cco:AlgerianDinar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Algerian Dinar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AngolanKwanza
+cco:AngolanKwanza rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Angolan Kwanza"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArgentinePeso
+cco:ArgentinePeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Argentine Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArmenianDram
+cco:ArmenianDram rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Armenian Dram"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AustralianDollar
+cco:AustralianDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Australian Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AzerbaijanManat
+cco:AzerbaijanManat rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Azerbaijan Manat"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BangladeshTaka
+cco:BangladeshTaka rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Bangladesh Taka"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BelarussianRuble
+cco:BelarussianRuble rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Belarussian Ruble"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BhutanNgultrum
+cco:BhutanNgultrum rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Bhutan Ngultrum"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BoliviaBoliviano
+cco:BoliviaBoliviano rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Bolivia Boliviano"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BosniaAndHerzegovinaConvertibleMark
+cco:BosniaAndHerzegovinaConvertibleMark rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Bosnia And Herzegovina Convertible Mark"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BotswanaPula
+cco:BotswanaPula rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Botswana Pula"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BrazilianReal
+cco:BrazilianReal rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Brazilian Real"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BruneiDollar
+cco:BruneiDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Brunei Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BulgarianLev
+cco:BulgarianLev rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Bulgarian Lev"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BurundiFranc
+cco:BurundiFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Burundi Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CFAFranc
+cco:CFAFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "CFA Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CFPFranc
+cco:CFPFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "CFP Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CambodianRiel
+cco:CambodianRiel rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Cambodian Riel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CanadianDollar
+cco:CanadianDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Canadian Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CapeVerdeEscudo
+cco:CapeVerdeEscudo rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Cape Verde Escudo"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChileanPeso
+cco:ChileanPeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Chilean Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChineseRenminbi
+cco:ChineseRenminbi rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Chinese Renminbi"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ColombianPeso
+cco:ColombianPeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Colombian Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ComorosFranc
+cco:ComorosFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Comoros Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CostaRicaColon
+cco:CostaRicaColon rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Costa Rica Colon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CroatiaKuna
+cco:CroatiaKuna rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Croatia Kuna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CzechKoruna
+cco:CzechKoruna rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Czech Koruna"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DanishKrone
+cco:DanishKrone rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Danish Krone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DemocraticRepublicOfCongoFranc
+cco:DemocraticRepublicOfCongoFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Democratic Republic Of Congo Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DominicanPeso
+cco:DominicanPeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Dominican Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EgyptianPound
+cco:EgyptianPound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Egyptian Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EthiopianBirr
+cco:EthiopianBirr rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Ethiopian Birr"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Euro
+cco:Euro rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Euro"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FijiDollar
+cco:FijiDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Fiji Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GambianDalasi
+cco:GambianDalasi rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Gambian Dalasi"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeorgianLari
+cco:GeorgianLari rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Georgian Lari"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GhanaCedi
+cco:GhanaCedi rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Ghana Cedi"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GuatemalaQuetzal
+cco:GuatemalaQuetzal rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Guatemala Quetzal"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GuineanFranc
+cco:GuineanFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Guinean Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GuyanaDollar
+cco:GuyanaDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Guyana Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HaitiGourde
+cco:HaitiGourde rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Haiti Gourde"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HondurasLempira
+cco:HondurasLempira rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Honduras Lempira"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HongKongDollar
+cco:HongKongDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "HongKong Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HungaryForint
+cco:HungaryForint rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Hungary Forint"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IcelandKrona
+cco:IcelandKrona rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Iceland Krona"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IndianRupee
+cco:IndianRupee rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Indian Rupee"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IndonesiaRupiah
+cco:IndonesiaRupiah rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Indonesia Rupiah"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IranianRial
+cco:IranianRial rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Iranian Rial"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IsraelShekel
+cco:IsraelShekel rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Israel Shekel"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JamaicanDollar
+cco:JamaicanDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Jamaican Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JapaneseYen
+cco:JapaneseYen rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Japanese Yen"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KazakhstanTenge
+cco:KazakhstanTenge rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Kazakhstan Tenge"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KenyanShilling
+cco:KenyanShilling rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Kenyan Shilling"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KuwaitiDinar
+cco:KuwaitiDinar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Kuwaiti Dinar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KyrgyzstanSom
+cco:KyrgyzstanSom rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Kyrgyzstan Som"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LaosKip
+cco:LaosKip rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Laos Kip"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LebanesePound
+cco:LebanesePound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Lebanese Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LesothoLoti
+cco:LesothoLoti rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Lesotho Loti"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LiberianDollar
+cco:LiberianDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Liberian Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LibyanDinar
+cco:LibyanDinar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Libyan Dinar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MacaoPataca
+cco:MacaoPataca rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Macao Pataca"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MacedonianDenar
+cco:MacedonianDenar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Macedonian Denar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MadagascarMalagasyAriary
+cco:MadagascarMalagasyAriary rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Madagascar Malagasy Ariary"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MalawiKwacha
+cco:MalawiKwacha rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Malawi Kwacha"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MalaysiaRinggit
+cco:MalaysiaRinggit rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Malaysia Ringgit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MauritaniaOuguiya
+cco:MauritaniaOuguiya rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Mauritania Ouguiya"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MauritiusRupee
+cco:MauritiusRupee rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Mauritius Rupee"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MexicanPeso
+cco:MexicanPeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Mexican Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MoldovanLeu
+cco:MoldovanLeu rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Moldovan Leu"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MongoliaTugrik
+cco:MongoliaTugrik rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Mongolia Tugrik"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MoroccoDirham
+cco:MoroccoDirham rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Morocco Dirham"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MozambiqueMetical
+cco:MozambiqueMetical rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Mozambique Metical"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MyanmarKyat
+cco:MyanmarKyat rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Myanmar Kyat"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NamibiaDollar
+cco:NamibiaDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Namibia Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NepaleseRupee
+cco:NepaleseRupee rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Nepalese Rupee"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NewZealandDollar
+cco:NewZealandDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "New Zealand Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NicaraguaCordobaOro
+cco:NicaraguaCordobaOro rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Nicaragua Cordoba Oro"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NigeriaNaira
+cco:NigeriaNaira rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Nigeria Naira"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NorthKoreanWon
+cco:NorthKoreanWon rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "North Korean Won"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NorwegianKrone
+cco:NorwegianKrone rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Norwegian Krone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PakistaniRupee
+cco:PakistaniRupee rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Pakistani Rupee"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PapuaNewGuineaKina
+cco:PapuaNewGuineaKina rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Papua New Guinea Kina"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ParaguayGuarani
+cco:ParaguayGuarani rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Paraguay Guarani"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PeruNuevoSol
+cco:PeruNuevoSol rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Peru Nuevo Sol"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PhilippinePeso
+cco:PhilippinePeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Philippine Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PolandZloty
+cco:PolandZloty rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Poland Zloty"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RomanianLeu
+cco:RomanianLeu rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Romanian Leu"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RussianRouble
+cco:RussianRouble rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Russian Rouble"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RwandaFranc
+cco:RwandaFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Rwanda Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SamoaTala
+cco:SamoaTala rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Samoa Tala"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SaoTomePrincipeDobra
+cco:SaoTomePrincipeDobra rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Sao Tome Principe Dobra"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SerbianDinar
+cco:SerbianDinar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Serbian Dinar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SeychellesRupee
+cco:SeychellesRupee rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Seychelles Rupee"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SierraLeoneLeone
+cco:SierraLeoneLeone rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Sierra Leone Leone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SingaporeDollar
+cco:SingaporeDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Singapore Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolomonIslandDollar
+cco:SolomonIslandDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Solomon Island Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SouthAfricaRand
+cco:SouthAfricaRand rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "South Africa Rand"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SouthKoreanWon
+cco:SouthKoreanWon rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "South Korean Won"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SouthSudanesePound
+cco:SouthSudanesePound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "South Sudanese Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SriLankaRupee
+cco:SriLankaRupee rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Sri Lanka Rupee"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StHelenaPound
+cco:StHelenaPound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "St Helena Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SudanesePound
+cco:SudanesePound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Sudanese Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SurinameseDollar
+cco:SurinameseDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Surinamese Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SwazilandLilangeni
+cco:SwazilandLilangeni rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Swaziland Lilangeni"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SwedishKrona
+cco:SwedishKrona rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Swedish Krona"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SwissFranc
+cco:SwissFranc rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Swiss Franc"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SyrianPound
+cco:SyrianPound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Syrian Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TajikistanSomoni
+cco:TajikistanSomoni rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Tajikistan Somoni"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TanzaniaShilling
+cco:TanzaniaShilling rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Tanzania Shilling"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThaiBaht
+cco:ThaiBaht rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Thai Baht"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TongaPaanga
+cco:TongaPaanga rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Tonga Pa anga"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TrinidadandTobagoDollar
+cco:TrinidadandTobagoDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Trinidad and Tobago Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TunisianDinar
+cco:TunisianDinar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Tunisian Dinar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TurkishLira
+cco:TurkishLira rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Turkish Lira"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TurkmenistanManat
+cco:TurkmenistanManat rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Turkmenistan Manat"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UgandaShilling
+cco:UgandaShilling rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Uganda Shilling"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UkraineHryvnia
+cco:UkraineHryvnia rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Ukraine Hryvnia"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UnitedKingdomPound
+cco:UnitedKingdomPound rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "United Kingdom Pound"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UnitedStatesDollar
+cco:UnitedStatesDollar rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "United States Dollar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UruguayPeso
+cco:UruguayPeso rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Uruguay Peso"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UzbekistanSum
+cco:UzbekistanSum rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Uzbekistan Sum"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VanuatuVatu
+cco:VanuatuVatu rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Vanuatu Vatu"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VietNamDong
+cco:VietNamDong rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Viet Nam Dong"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/YemeniRial
+cco:YemeniRial rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Yemeni Rial"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ZambiaKwacha
+cco:ZambiaKwacha rdf:type owl:NamedIndividual ,
+ cco:CurrencyUnit ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/CurrencyUnitOntology"^^xsd:string ;
+ rdfs:label "Zambia Kwacha"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/EventOntology.ttl b/EventOntology.ttl
new file mode 100644
index 0000000..50a3f2e
--- /dev/null
+++ b/EventOntology.ttl
@@ -0,0 +1,3155 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+
+ a owl:Ontology ;
+ owl:imports ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ;
+ rdfs:comment "This ontology is designed to represent processual entities, especially those performed by agents, that occur within multiple domains."^^xsd:string ;
+ rdfs:label "Event Ontology"^^xsd:string .
+#
+#
+# #################################################################
+# #
+# # Classes
+# #
+# #################################################################
+#
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Acceleration
+
+cco:Acceleration a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 , _:genid1 .
+
+_:genid1 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:Velocity .
+
+cco:Acceleration cco:definition "A Process Profile that is the rate of change of the Velocity of an object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Acceleration"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Acceleration"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Act
+
+cco:Act a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process in which at least one Agent plays a causative role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAdvising
+
+cco:ActOfAdvising a owl:Class ;
+ rdfs:subClassOf cco:ActOfDirectiveCommunication ;
+ cco:definition "An Act of Directive Communication performed by providing advice or counsel to another agent."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/advising"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Advising"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfApologizing
+
+cco:ActOfApologizing a owl:Class ;
+ rdfs:subClassOf cco:ActOfExpressiveCommunication ;
+ cco:definition "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Apologizing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAppraisal
+
+cco:ActOfAppraisal a owl:Class ;
+ rdfs:subClassOf cco:ActOfMeasuring ;
+ cco:definition "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."^^xsd:string ;
+ cco:elucidation "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."^^xsd:string ;
+ cco:example_of_usage "a food critic rating the quality of a restaurant's ambiance, service, and food"^^xsd:string , "a mechanic assessing whether a damaged vehicle is repairable"^^xsd:string , "an insurance agent appraising the financial value of a building"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."^^xsd:string ;
+ rdfs:label "Act of Appraisal"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArrival
+
+cco:ActOfArrival a owl:Class ;
+ rdfs:subClassOf cco:ActOfLocationChange ;
+ cco:definition "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Arrival"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactAssembly
+
+cco:ActOfArtifactAssembly a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactProcessing ;
+ cco:definition "An Act of Artifact Processing wherein a new Artifact is created by fitting component parts together."^^xsd:string ;
+ cco:example_of_usage "putting together a piece of furniture purchased from Ikea"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."^^xsd:string ;
+ rdfs:label "Act of Artifact Assembly"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactEmployment
+
+cco:ActOfArtifactEmployment a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act of using an Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Artifact Employment"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactModification
+
+cco:ActOfArtifactModification a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactProcessing ;
+ cco:definition "An Act of Artifact Processing in which an existing Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."^^xsd:string ;
+ rdfs:label "Act of Artifact Modification"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactProcessing
+
+cco:ActOfArtifactProcessing a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act of performing a series of mechanical or chemical operations on something in order to change or preserve it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Artifact Processing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAssassination
+
+cco:ActOfAssassination a owl:Class ;
+ rdfs:subClassOf cco:ActOfMurder ;
+ cco:definition "An Act of Murder of a prominent person."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Assassination"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAssignment
+
+cco:ActOfAssignment a owl:Class ;
+ rdfs:subClassOf cco:ActOfDeclarativeCommunication ;
+ cco:definition "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Assignment_%28law%29"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Assignment"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAssociation
+
+cco:ActOfAssociation a owl:Class ;
+ rdfs:subClassOf cco:SocialAct ;
+ cco:definition "A Social Act wherein an Agent unites with some other Agent in an Intentional Act, enterprise or business."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/associate"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Association"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfBuying
+
+cco:ActOfBuying a owl:Class ;
+ rdfs:subClassOf cco:ActOfPurchasing ;
+ cco:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Buying"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCargoTransportation
+
+cco:ActOfCargoTransportation a owl:Class ;
+ rdfs:subClassOf cco:ActOfLocationChange ;
+ cco:definition "An Act of Location Change involving the movement of manufactured goods through some Transportation Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Cargo Transportation"^^rdfs:Literal .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCeremony
+
+cco:ActOfCeremony a owl:Class ;
+ rdfs:subClassOf cco:SocialAct ;
+ cco:definition "A Social Act of ritual significance, performed on a special occasion."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Ceremony"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Ceremony"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfChangeOfResidence
+
+cco:ActOfChangeOfResidence a owl:Class ;
+ rdfs:subClassOf cco:ActOfLocationChange ;
+ cco:definition "An Act of Location Change involving one or more Persons moving from one place of residence to another."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Change of Residence"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCollision
+
+cco:ActOfCollision a owl:Class ;
+ rdfs:subClassOf cco:ActOfLocationChange ;
+ cco:definition "An Act of Location Change involving the movement of one object such that it collides with another object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Collision"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommanding
+
+cco:ActOfCommanding a owl:Class ;
+ rdfs:subClassOf cco:ActOfDirectiveCommunication ;
+ cco:definition "An Act of Directive Communication that exercises authoritative control or power over another agent's actions."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Commanding"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommissiveCommunication
+
+cco:ActOfCommissiveCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication that commits a speaker to some future action."^^xsd:string ;
+ cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"^^xsd:string ;
+ rdfs:label "Act of Commissive Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommunication
+
+cco:ActOfCommunication a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act in which some Information Content Entity is transferred from some Agent to Another."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Communication"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommunicationByMedia
+
+cco:ActOfCommunicationByMedia a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication in which some Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Communication by Media"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCondoling
+
+cco:ActOfCondoling a owl:Class ;
+ rdfs:subClassOf cco:ActOfExpressiveCommunication ;
+ cco:definition "An Act of Expressive Communication performed by expressing sympathy or sorrow."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/condoling"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Condoling"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConductingMassMediaInterview
+
+cco:ActOfConductingMassMediaInterview a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Conducting Mass Media Interview"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConfessing
+
+cco:ActOfConfessing a owl:Class ;
+ rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
+ cco:definition "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Confessing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCongratulating
+
+cco:ActOfCongratulating a owl:Class ;
+ rdfs:subClassOf cco:ActOfExpressiveCommunication ;
+ cco:definition "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/congratulate"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Congratulating"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConstruction
+
+cco:ActOfConstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactProcessing ;
+ cco:definition "An Act of Artifact Processing wherein Artifacts are built on site as prescribed by some contract."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."^^xsd:string ;
+ rdfs:label "Act of Construction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConsumption
+
+cco:ActOfConsumption a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act in which a resource is ingested or used up."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Consumption"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfContractFormation
+
+cco:ActOfContractFormation a owl:Class ;
+ rdfs:subClassOf cco:ActOfPromising ;
+ cco:definition "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Contract#Formation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Contract Formation"^^rdfs:Literal .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDeceptiveCommunication
+
+cco:ActOfDeceptiveCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Deceptive Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDeclarativeCommunication
+
+cco:ActOfDeclarativeCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication that changes the reality in accord with the proposition of the declaration."^^xsd:string ;
+ cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"^^xsd:string ;
+ rdfs:label "Act of Declarative Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDecoyUse
+
+cco:ActOfDecoyUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which some Agent uses some Decoy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Decoy Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDenying
+
+cco:ActOfDenying a owl:Class ;
+ rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
+ cco:definition "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/denial"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Denying"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDeparture
+
+cco:ActOfDeparture a owl:Class ;
+ rdfs:subClassOf cco:ActOfLocationChange ;
+ cco:definition "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Departure"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDirectiveCommunication
+
+cco:ActOfDirectiveCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication that is intended to cause the hearer to take a particular action."^^xsd:string ;
+ cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"^^xsd:string ;
+ rdfs:label "Act of Directive Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDonating
+
+cco:ActOfDonating a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Donation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Donating"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEducationalTrainingAcquisition
+
+cco:ActOfEducationalTrainingAcquisition a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingAcquisition ;
+ cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Educational Training Acquisition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEducationalTrainingInstruction
+
+cco:ActOfEducationalTrainingInstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingInstruction ;
+ cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Educational Training Instruction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEmployment
+
+cco:ActOfEmployment a owl:Class ;
+ rdfs:subClassOf cco:ActOfAssociation ;
+ cco:definition "An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Employment"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEncounter
+
+cco:ActOfEncounter a owl:Class ;
+ rdfs:subClassOf cco:ActOfAssociation ;
+ cco:definition "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Encounter"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEntertainment
+
+cco:ActOfEntertainment a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act consisting of any activity which provides a diversion or permits people to amuse themselves."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Entertainment"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Entertainment"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEspionage
+
+cco:ActOfEspionage a owl:Class ;
+ rdfs:subClassOf cco:ActOfIntelligenceGathering ;
+ cco:definition "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Espionage"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Espionage"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEstimation
+
+cco:ActOfEstimation a owl:Class ;
+ rdfs:subClassOf cco:ActOfMeasuring ;
+ cco:alternative_label "Act of Approximation"^^xsd:string ;
+ cco:definition "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."^^xsd:string ;
+ cco:elucidation "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."^^xsd:string ;
+ cco:example_of_usage "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience"^^xsd:string , "measuring the amount of time required to do a task based on how long it took to do a similar task in the past"^^xsd:string , "measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building"^^xsd:string , "measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."^^xsd:string , "Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."^^xsd:string ;
+ rdfs:label "Act of Estimation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfExpressiveCommunication
+
+cco:ActOfExpressiveCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication that expresses the Speaker's attitudes and emotions towards some proposition."^^xsd:string ;
+ cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"^^xsd:string ;
+ rdfs:label "Act of Expressive Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFacilityUse
+
+cco:ActOfFacilityUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which an Agent makes use of some Facility."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Facility Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFinancialDeposit
+
+cco:ActOfFinancialDeposit a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Deposit_(bank)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Financial Deposit"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFinancialInstrumentUse
+
+cco:ActOfFinancialInstrumentUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which some Agent uses some Financial Instrument."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Financial Instrument Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFinancialWithdrawal
+
+cco:ActOfFinancialWithdrawal a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Deposit_(bank)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Financial Withdrawal"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFunding
+
+cco:ActOfFunding a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use in which an Agent provides a sum of money to another Agent for a particular purpose."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Funding"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfGovernment
+
+cco:ActOfGovernment a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Government"^^rdfs:Literal .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfHomicide
+
+cco:ActOfHomicide a owl:Class ;
+ rdfs:subClassOf cco:ActOfViolence , _:genid2 .
+
+_:genid2 a owl:Restriction ;
+ owl:onProperty cco:is_cause_of ;
+ owl:someValuesFrom cco:Death .
+
+cco:ActOfHomicide cco:definition "An Act of Violence which causes the unlawful killing of another person."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Homicide"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIdentifying
+
+cco:ActOfIdentifying a owl:Class ;
+ rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
+ cco:definition "An Act of Representative Communication performed by asserting who or what a particular person or thing is."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/identify"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Identifying"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfInhabitancy
+
+cco:ActOfInhabitancy a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/inhabit"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Inhabitancy"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIntelligenceGathering
+
+cco:ActOfIntelligenceGathering a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Intelligence Gathering"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfInterpersonalRelationship
+
+cco:ActOfInterpersonalRelationship a owl:Class ;
+ rdfs:subClassOf cco:ActOfAssociation ;
+ cco:definition "An Act of Association between two or more Persons that may range from fleeting to enduring."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Interpersonal_relationship"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Interpersonal Relationship"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfInviting
+
+cco:ActOfInviting a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommissiveCommunication ;
+ cco:definition "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/invite"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Inviting"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIssuingMassMediaArticle
+
+cco:ActOfIssuingMassMediaArticle a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Issuing Mass Media Article"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIssuingMassMediaDocumentary
+
+cco:ActOfIssuingMassMediaDocumentary a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Issuing Mass Media Documentary"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIssuingMassMediaPressRelease
+
+cco:ActOfIssuingMassMediaPressRelease a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Issuing Mass Media Press Release"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLegalInstrumentUse
+
+cco:ActOfLegalInstrumentUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which some Agent uses some Legal Instrument."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Legal Instrument Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLoaning
+
+cco:ActOfLoaning a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Loan"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Loaning"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLocationChange
+
+cco:ActOfLocationChange a owl:Class ;
+ rdfs:subClassOf cco:ActOfMotion ;
+ cco:definition "An Act of Motion in which the location of some Object is changed by some Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Location Change"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMaintenance
+
+cco:ActOfMaintenance a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactModification ;
+ cco:definition "An Act of Artifact Modification in which an Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Maintenance"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfManufacturing
+
+cco:ActOfManufacturing a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactProcessing ;
+ cco:definition "An Act of Artifact Processing wherein Artifacts are created in a Facility for the purpose of being sold to consumers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An Act of Manufacturing typically involves the mass production of goods."^^xsd:string ;
+ rdfs:label "Act of Manufacturing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMassMediaCommunication
+
+cco:ActOfMassMediaCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/The_media"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Mass Media Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMeasuring
+
+cco:ActOfMeasuring a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."^^xsd:string ;
+ cco:example_of_usage "putting an object on a scale to measure its weight in kilograms"^^xsd:string , "rating Hollywood movies on a 1 to 5 star scale"^^xsd:string , "using a tape measure to determine the height and width of a doorway in inches"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Measuring"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMeeting
+
+cco:ActOfMeeting a owl:Class ;
+ rdfs:subClassOf cco:ActOfAssociation ;
+ cco:definition "An Act of Association wherein two or more Persons assemble for some common purpose."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Meeting"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryForce
+
+cco:ActOfMilitaryForce a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act of employing a Military Force to achieve some desired result."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Military Force"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryService
+
+cco:ActOfMilitaryService a owl:Class ;
+ rdfs:subClassOf cco:ActOfEmployment ;
+ cco:definition "An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."^^xsd:string ;
+ cco:definition_source "http://www.collinsdictionary.com/dictionary/english/military-service"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Military Service"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryTrainingAcquisition
+
+cco:ActOfMilitaryTrainingAcquisition a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingAcquisition ;
+ cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Military Training Acquisition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryTrainingInstruction
+
+cco:ActOfMilitaryTrainingInstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingInstruction ;
+ cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Military Training Instruction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMotion
+
+cco:ActOfMotion a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act by which an Agent causes the position or location of some Object to change."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/motion"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMurder
+
+cco:ActOfMurder a owl:Class ;
+ rdfs:subClassOf cco:ActOfHomicide ;
+ cco:definition "An Act of Homicide with malice aforethought."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Murder"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfOathTaking
+
+cco:ActOfOathTaking a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommissiveCommunication ;
+ cco:definition "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Oath"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Oath Taking"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfObservation
+
+cco:ActOfObservation a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act of acquiring information from a source via the use of one or more senses."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Observation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Observation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfOfficialDocumentation
+
+cco:ActOfOfficialDocumentation a owl:Class ;
+ rdfs:subClassOf cco:ActOfDeclarativeCommunication ;
+ cco:definition "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Official Documentation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfOwnership
+
+cco:ActOfOwnership a owl:Class ;
+ rdfs:subClassOf cco:ActOfPossession ;
+ cco:definition "An Act of Possession that includes an agent having certain rights and duties over the property owned."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Ownership"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."^^xsd:string ;
+ rdfs:label "Act of Ownership"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPersonalCommunication
+
+cco:ActOfPersonalCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication having a small audience."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Personal Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPilgrimage
+
+cco:ActOfPilgrimage a owl:Class ;
+ rdfs:subClassOf cco:ActOfTravel ;
+ cco:definition "An Act of Travel to a location of importance to a person's beliefs and faith."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Pilgrimage"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Pilgrimage"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPlanning
+
+cco:ActOfPlanning a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act that involves making a Plan to achieve some specified Objective."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Planning"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPortionOfMaterialConsumption
+
+cco:ActOfPortionOfMaterialConsumption a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which a Portion of Material is expended."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Portion of Material Consumption"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPositionChange
+
+cco:ActOfPositionChange a owl:Class ;
+ rdfs:subClassOf cco:ActOfMotion ;
+ cco:definition "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."^^xsd:string ;
+ cco:example_of_usage "a top spinning in place"^^xsd:string , "adjusting your posture"^^xsd:string , "raising your left arm"^^xsd:string , "swivelling your office chair to face the window"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An Act of Position Change does not entail a change of location."^^xsd:string ;
+ rdfs:label "Act of Position Change"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPossession
+
+cco:ActOfPossession a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act in which an agent intentionally exercises control towards a thing."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Possession_(law)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "In all cases, to possess something, an agent must have an intention to possess it."^^xsd:string ;
+ rdfs:label "Act of Possession"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPrediction
+
+cco:ActOfPrediction a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."^^xsd:string ;
+ cco:elucidation "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."^^xsd:string ;
+ cco:example_of_usage "a chess master predicting the next 8 moves his opponent will make"^^xsd:string , "predicting that a particular stock will double in value over the next fiscal quarter"^^xsd:string , "using sample exit polls data to predict the winners of an election"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."^^xsd:string ;
+ rdfs:label "Act of Prediction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPromising
+
+cco:ActOfPromising a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommissiveCommunication ;
+ cco:definition "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/promise"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Promising"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPropaganda
+
+cco:ActOfPropaganda a owl:Class ;
+ rdfs:subClassOf cco:ActOfDeceptiveCommunication ;
+ cco:definition "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Propaganda"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Propaganda"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPublishingMassMediaArticle
+
+cco:ActOfPublishingMassMediaArticle a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Publishing Mass Media Article"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPublishingMassMediaDocumentary
+
+cco:ActOfPublishingMassMediaDocumentary a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Publishing Mass Media Documentary"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPublishingMassMediaPressRelease
+
+cco:ActOfPublishingMassMediaPressRelease a owl:Class ;
+ rdfs:subClassOf cco:ActOfMassMediaCommunication ;
+ cco:definition "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."^^xsd:string ;
+ cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Publishing Mass Media Press Release"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPurchasing
+
+cco:ActOfPurchasing a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Purchase"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Purchasing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReconnaissance
+
+cco:ActOfReconnaissance a owl:Class ;
+ rdfs:subClassOf cco:ActOfIntelligenceGathering ;
+ cco:definition "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Reconnaissance"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Reconnaissance"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousGroupAffiliation
+
+cco:ActOfReligiousGroupAffiliation a owl:Class ;
+ rdfs:subClassOf cco:ActOfAssociation ;
+ cco:definition "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Religious Group Affiliation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousTrainingAcquisition
+
+cco:ActOfReligiousTrainingAcquisition a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingAcquisition ;
+ cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Religious Training Acquisition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousTrainingInstruction
+
+cco:ActOfReligiousTrainingInstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingInstruction ;
+ cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Religious Training Instruction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousWorship
+
+cco:ActOfReligiousWorship a owl:Class ;
+ rdfs:subClassOf cco:ActOfCeremony ;
+ cco:definition "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Religious Worship"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRemuneration
+
+cco:ActOfRemuneration a owl:Class ;
+ rdfs:subClassOf cco:ActOfPurchasing ;
+ cco:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Remuneration"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."^^xsd:string ;
+ rdfs:label "Act of Remuneration"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRenting
+
+cco:ActOfRenting a owl:Class ;
+ rdfs:subClassOf cco:ActOfPurchasing ;
+ cco:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Renting"^^rdfs:Literal .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRepayment
+
+cco:ActOfRepayment a owl:Class ;
+ rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
+ cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is returned by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount owed to the Creditor from an earlier Act of Loaning."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Loan"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Repayment"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReporting
+
+cco:ActOfReporting a owl:Class ;
+ rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
+ cco:definition "An Act of Representative Communication performed by giving a detailed account or statement."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/report"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Reporting"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRepresentativeCommunication
+
+cco:ActOfRepresentativeCommunication a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunication ;
+ cco:definition "An Act of Communication that commits a speaker to the truth of the expressed proposition."^^xsd:string ;
+ cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"^^xsd:string ;
+ rdfs:label "Act of Representative Communication"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRequesting
+
+cco:ActOfRequesting a owl:Class ;
+ rdfs:subClassOf cco:ActOfDirectiveCommunication ;
+ cco:definition "An Act of Directive Communication performed by asking for something."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/request"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Requesting"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfResiding
+
+cco:ActOfResiding a owl:Class ;
+ rdfs:subClassOf cco:ActOfInhabitancy ;
+ cco:definition "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/reside"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Residing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSocialGroupMembership
+
+cco:ActOfSocialGroupMembership a owl:Class ;
+ rdfs:subClassOf cco:ActOfAssociation ;
+ cco:definition "An Act of Association wherein a Person belongs to some Social Group."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Social Group Membership"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSocialMovement
+
+cco:ActOfSocialMovement a owl:Class ;
+ rdfs:subClassOf cco:SocialAct ;
+ cco:definition "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Social_movement"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Social Movement"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSojourn
+
+cco:ActOfSojourn a owl:Class ;
+ rdfs:subClassOf cco:ActOfInhabitancy ;
+ cco:definition "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Sojourn"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSuicide
+
+cco:ActOfSuicide a owl:Class ;
+ rdfs:subClassOf cco:ActOfViolence , _:genid3 .
+
+_:genid3 a owl:Restriction ;
+ owl:onProperty cco:is_cause_of ;
+ owl:someValuesFrom cco:Death .
+
+cco:ActOfSuicide cco:alternative_label "Suicide"^^xsd:string ;
+ cco:definition "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/suicide"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Suicide"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTerrorism
+
+cco:ActOfTerrorism a owl:Class ;
+ rdfs:subClassOf cco:ActOfViolence ;
+ cco:definition "An Act of Violence which creates fear and which is prescribed by religious, political or ideological objectives, and which deliberately target or disregard the safety of civilians and are committed by members of non-government organizations."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Terrorism"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Terrorism"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTerroristTrainingAcquisition
+
+cco:ActOfTerroristTrainingAcquisition a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingAcquisition ;
+ cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature from an Agent or communication medium that realizes a capacity derived from its affiliation with a Terrorist Organization."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Terrorist Training Acquisition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTerroristTrainingInstruction
+
+cco:ActOfTerroristTrainingInstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingInstruction ;
+ cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Terrorist Organization by imparting knowledge of the tactics, techniques, and/or strategies of the use of violence against civilians in order to attain goals that are political, religous, or ideological in nature to an Agent either directly or indirectly through some communication medium."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=terrorism"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Terrorist Training Instruction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTestifying
+
+cco:ActOfTestifying a owl:Class ;
+ rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
+ cco:definition "An Act of Representative Communication performed by making a statement about one's personal knowledge or belief."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/testify"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Testifying"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfThanking
+
+cco:ActOfThanking a owl:Class ;
+ rdfs:subClassOf cco:ActOfExpressiveCommunication ;
+ cco:definition "An Act of Expressive Communication performed by expressing gratitude."^^xsd:string ;
+ cco:definition_source " http://www.merriam-webster.com/dictionary/thanks"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Thanking"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfToolUse
+
+cco:ActOfToolUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which some Agent uses some Tool."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Tool Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTraining
+
+cco:ActOfTraining a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act in which knowledge, skills or values are imparted from one or more Agents to at least one other Agent."^^xsd:string ;
+ cco:definition_source " http://en.wikipedia.org/wiki/Education"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Training"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTrainingAcquisition
+
+cco:ActOfTrainingAcquisition a owl:Class ;
+ rdfs:subClassOf cco:ActOfTraining ;
+ cco:definition "An Act of Training performed by an Agent by acquiring knowledge from another Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Training Acquisition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTrainingInstruction
+
+cco:ActOfTrainingInstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfTraining ;
+ cco:definition "An Act of Training performed by an Agent by imparting knowledge to another Agent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Training Instruction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfTravel
+
+cco:ActOfTravel a owl:Class ;
+ rdfs:subClassOf cco:ActOfLocationChange ;
+ cco:definition "An Act of Location Change wherein one or more Persons move between relatively distant geographical locations for any purpose and any duration, with or without any means of transport."^^xsd:string ;
+ cco:definition_source " http://en.wikipedia.org/wiki/Travel"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Travel"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfVehicleUse
+
+cco:ActOfVehicleUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which some Agent uses some Vehicle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Vehicle Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfViolence
+
+cco:ActOfViolence a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act of causing harm to oneself or to another through the use of physical or verbal force."^^xsd:string ;
+ cco:definition_source " http://en.wikipedia.org/wiki/Violence"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Violence"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfVocationalTrainingAcquisition
+
+cco:ActOfVocationalTrainingAcquisition a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingAcquisition ;
+ cco:definition "An Act of Training Acquisition performed by an Agent by acquiring skills required for a specific occupation in industry, agriculture or trade from an Agent or communication medium that realizes a capacity derived from its affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Vocational Training Acquisition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfVocationalTrainingInstruction
+
+cco:ActOfVocationalTrainingInstruction a owl:Class ;
+ rdfs:subClassOf cco:ActOfTrainingInstruction ;
+ cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with a Vocational School, Technical School, Trade Organization, or Industry Educational Program Provider by imparting skills required for a specific occupation in industry, agriculture or trade to an Agent either directly or indirectly through some communication medium."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=vocational%20training"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Vocational Training Instruction"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfVolunteering
+
+cco:ActOfVolunteering a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommissiveCommunication ;
+ cco:definition "An Act of Commissive Communication performed by voluntarily undertaking or expressing a willingness to undertake a service."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/volunteer"^^xsd:string ;
+ cco:example_of_usage "entering into military service voluntarily"^^xsd:string , "rendering a service voluntarily"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Volunteering"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfWalking
+
+cco:ActOfWalking a owl:Class ;
+ rdfs:subClassOf cco:ActOfTravel ;
+ cco:definition "An Act of Travel that proceeds by foot."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Walking"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfWarning
+
+cco:ActOfWarning a owl:Class ;
+ rdfs:subClassOf cco:ActOfDirectiveCommunication ;
+ cco:definition "An Act of Directive Communication performed by indicating a possible or impending danger, problem, or other unpleasant situation."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/warning"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Warning"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActOfWeaponUse
+
+cco:ActOfWeaponUse a owl:Class ;
+ rdfs:subClassOf cco:ActOfArtifactEmployment ;
+ cco:definition "An Act of Artifact Employment in which some Agent uses some Weapon."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Act of Weapon Use"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ActiveStasis
+
+cco:ActiveStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfArtifactOperationality ;
+ owl:disjointWith cco:DeactivatedStasis ;
+ cco:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is realizing one or more of its designed Artifact Functions (especially one of its primary functions)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Active Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Amplitude
+
+cco:Amplitude a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile of an Oscillation Process that is the absolute value of the maximum displacement from a zero, equilibrium, or mean value during one cycle of the Oscillation Process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Amplitude"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/AngularMomentum
+
+cco:AngularMomentum a owl:Class ;
+ rdfs:subClassOf cco:Momentum ;
+ cco:definition "A Momentum that is the product of an object's moment of inertia and its Angular Velocity."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Angular_momentum#Definition"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Angular Momentum"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/AngularVelocity
+
+cco:AngularVelocity a owl:Class ;
+ rdfs:subClassOf cco:Velocity ;
+ cco:definition "A Velocity that describes both the angular (i.e. rotational) Speed of an object and the Axis about which the object is Rotating."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Angular_velocity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Angular Velocity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/BeginningOfLifeStasis
+
+cco:BeginningOfLifeStasis a owl:Class ;
+ rdfs:subClassOf cco:OperationalStasis ;
+ cco:acronym "BOL"^^xsd:string , "BoL"^^xsd:string ;
+ cco:definition "A Operational Stasis that holds during a Temporal Interval when an Artifact is first put into operational use such that its designed set of Artifact Functions is capable of operating at or near their designed peak performance levels."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "A Beginning of Life Stasis (BoL) is a relatively brief Operational Stasis that is primarily of interest for the purpose of establishing a baseline for operational parameters to be compared to the designed specifications as well as the Artifact's performance throughout its operational life."^^xsd:string ;
+ rdfs:label "Beginning of Life Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Behavior
+
+cco:Behavior a owl:Class ;
+ rdfs:subClassOf cco:Act ;
+ cco:definition "An Act in which an Independent Continuant participates as an Agent in response to external or internal stimuli and following some pattern which is dependent upon some combination of that Independent Continuant's internal state and external conditions."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/GO_0007610"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Behavior"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/BiographicalLife
+
+cco:BiographicalLife a owl:Class ;
+ rdfs:subClassOf cco:Act ;
+ cco:definition "An Act composed of the Life Events that occur during the course of existence of an Agent (i.e. Person or Organization)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Biographical Life"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Birth
+
+cco:Birth a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:definition "A Natural Process of bringing forth offspring."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Birth"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Birth"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Cause
+
+cco:Cause a owl:Class ;
+ owl:equivalentClass _:genid4 .
+
+_:genid4 a owl:Restriction ;
+ owl:onProperty cco:is_cause_of ;
+ owl:someValuesFrom obo:BFO_0000003 .
+
+cco:Cause rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process that is the cause of or one of the causes of some other Process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Cause"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Change
+
+cco:Change a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process in which some independent continuant endures and 1) one or more of the dependent entities it bears increase or decrease in intensity, 2) the entity begins to bear some dependent entity or 3) the entity ceases to bear some dependent entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Change"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ClockwiseRotationalMotion
+
+cco:ClockwiseRotationalMotion a owl:Class ;
+ rdfs:subClassOf cco:RotationalMotion ;
+ cco:alternative_label "CW Rotational Motion"^^xsd:string , "Clockwise Rotation"^^xsd:string ;
+ cco:definition "A Rotational Motion in which the direction of rotation is toward the right as seen relative to the designated side of the plane of rotation."^^xsd:string ;
+ cco:example_of_usage "the axial rotation of the Earth as seen from above the South Pole"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Clockwise Rotational Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Combustion
+
+cco:Combustion a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:alternative_label "Burning Process"^^xsd:string , "Combustion Process"^^xsd:string ;
+ cco:definition "A Natural Process in which a Portion of Fuel or other Material Entity is burned."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Combustion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/CounterClockwiseRotationalMotion
+
+cco:CounterClockwiseRotationalMotion a owl:Class ;
+ rdfs:subClassOf cco:RotationalMotion ;
+ cco:alternative_label "Anti-Clockwise Rotation"^^xsd:string , "CCW Rotational Motion"^^xsd:string , "Counter-Clockwise Rotation"^^xsd:string ;
+ cco:definition "A Rotational Motion in which the direction of rotation is toward the left as seen relative to the designated side of the plane of rotation."^^xsd:string ;
+ cco:example_of_usage "the axial rotation of the Earth as seen from above the North Pole"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Counter-Clockwise Rotational Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/CriminalAct
+
+cco:CriminalAct a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act committed in violation of rules or laws for which some governing authority (via mechanisms such as legal systems) can prescribe a conviction."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Crime"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Criminal Act"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DamagedStasis
+
+cco:DamagedStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfSpecificallyDependentContinuant ;
+ cco:alternative_label "Damaged"^^xsd:string ;
+ cco:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to a previous action or event such that the Independent Continuant is now of lesser value, usefulness, or functionality."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/damaged"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Damaged Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DeactivatedStasis
+
+cco:DeactivatedStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfArtifactOperationality ;
+ cco:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact is not realizing any of its designed Artifact Functions (or at least not realizing any of its primary functions)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Deactivated Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Death
+
+cco:Death a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:definition "A Natural Process in which all biological functions that sustain a living organism cease."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Death"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Death"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfDependentContinuant
+
+cco:DecreaseOfDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:Change ;
+ cco:definition "A Change in which some Independent Continuant has a decrease in the level of some Dependent Continuant that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfDisposition
+
+cco:DecreaseOfDisposition a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfRealizableEntity ;
+ cco:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Disposition it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Disposition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfFunction
+
+cco:DecreaseOfFunction a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfRealizableEntity ;
+ cco:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Function that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Function"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfGenericallyDependentContinuant
+
+cco:DecreaseOfGenericallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfDependentContinuant ;
+ cco:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in the level of a Generically Dependent Continuant that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "For the most part Generically Dependent Continuants do not inhere in their bearers over some continuous scale. The primary exception is religion and this class allows annotation of those cases where an Agent is described as becoming less religious. Other cases would include the decrease of an organization's bearing of some objective."^^xsd:string ;
+ rdfs:label "Decrease of Generically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfQuality
+
+cco:DecreaseOfQuality a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfSpecificallyDependentContinuant ;
+ cco:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Quality that it bears."^^xsd:string ;
+ cco:example_of_usage "Weight Loss, Decreasing Temperature, decreasing color intensity, loss of structural integrity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfRealizableEntity
+
+cco:DecreaseOfRealizableEntity a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfSpecificallyDependentContinuant ;
+ cco:definition "A Decrease of Specifically Dependent Continuant in which some Independent Continuant has a decrease of some Realizable Entity that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Realizable Entity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfRole
+
+cco:DecreaseOfRole a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfRealizableEntity ;
+ cco:definition "A Decrease of Realizable Entity in which some Independent Continuant has a decrease of some Role that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Role"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DecreaseOfSpecificallyDependentContinuant
+
+cco:DecreaseOfSpecificallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:DecreaseOfDependentContinuant ;
+ cco:definition "A Decrease of Dependent Continuant in which some Independent Continuant has a decrease in some Specifically Dependent Continuant that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Decrease of Specifically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DefunctStasis
+
+cco:DefunctStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfArtifactOperationality ;
+ owl:disjointWith cco:OperationalStasis ;
+ cco:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact no longer maintains its designed set of Artifact Functions (or at least no longer maintains its primary functions)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Defunct Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/DeltaV
+
+cco:DeltaV a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 , _:genid5 .
+
+_:genid5 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:Velocity .
+
+cco:DeltaV cco:alternative_label "Change in Velocity"^^xsd:string , "DeltaV"^^xsd:string ;
+ cco:definition "A Process Profile that is the total change in Velocity of an object's Motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Delta-v is not equivalent to and should not be confused with Acceleration, which is the rate of change of Velocity."^^xsd:string ;
+ rdfs:label "Delta-v"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Economy
+
+cco:Economy a owl:Class ;
+ rdfs:subClassOf cco:ProcessAggregate ;
+ cco:definition "A Process Aggregate comprising the production, exchange, distribution and consumption of goods that occurs at some Geopolitical Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Economy"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Effect
+
+cco:Effect a owl:Class ;
+ owl:equivalentClass _:genid6 .
+
+_:genid6 a owl:Restriction ;
+ owl:onProperty cco:caused_by ;
+ owl:someValuesFrom obo:BFO_0000003 .
+
+cco:Effect rdfs:subClassOf obo:BFO_0000015 ;
+ cco:alternative_label "Consequence"^^xsd:string ;
+ cco:definition "A Process that follows and is caused by some previous Process."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=effect"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Effect"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/EffectOfLocationChange
+
+cco:EffectOfLocationChange a owl:Class ;
+ rdfs:subClassOf cco:Effect , _:genid7 .
+
+_:genid7 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:ActOfLocationChange .
+
+cco:EffectOfLocationChange rdfs:subClassOf _:genid8 .
+
+_:genid8 a owl:Restriction ;
+ owl:onProperty cco:caused_by ;
+ owl:someValuesFrom cco:ActOfLocationChange .
+
+cco:EffectOfLocationChange cco:definition "An Effect caused by some Act of Location Change and which results in an Object being located in a different place."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Effect of Location Change"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Election
+
+cco:Election a owl:Class ;
+ rdfs:subClassOf cco:SocialAct ;
+ cco:alternative_label "Act of Political Election"^^xsd:string ;
+ cco:definition "A Social Act by which a population chooses an individual to hold public office."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Election"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Election"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticPulse
+
+cco:ElectromagneticPulse a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticWaveProcess ;
+ cco:alternative_label "EMP"^^xsd:string , "Transient Electromagnetic Disturbance"^^xsd:string ;
+ cco:definition "An Electromagnetic Wave Process that consists of a short high-energy burst of electromagnetic energy."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_pulse"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Pulse"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticRadiationFrequency
+
+cco:ElectromagneticRadiationFrequency a owl:Class ;
+ rdfs:subClassOf cco:Frequency ;
+ cco:definition "A Frequency that is characterized by the rate of Oscillations per second of an Electromagnetic Wave."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_spectrum"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Divisions between EM radiation frequencies are fiat and sources vary on where to draw boundaries."^^xsd:string ;
+ rdfs:label "Electromagnetic Radiation Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticWaveProcess
+
+cco:ElectromagneticWaveProcess a owl:Class ;
+ rdfs:subClassOf cco:WaveProcess , _:genid9 .
+
+_:genid9 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:TransverseWaveProfile .
+
+cco:ElectromagneticWaveProcess cco:alternative_label "Electromagnetic Radiation"^^xsd:string ;
+ cco:definition "A Wave Process that is produced by charged particles, involves the periodic Oscillation of electric and magnetic fields at right angles to each other and the direction of wave propogation such that it has a Transverse Wave Profile, and which transfers electromagnetic radiant energy through a portion of space or matter."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Wave Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/EmailMessaging
+
+cco:EmailMessaging a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Emailing"^^xsd:string ;
+ cco:definition "An Act of Communication by Media in which text-based communication occurs between two or more people using personal computers or other devices using some Email Client Software conveyed over the Internet."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Email"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Email Messaging"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/EndOfLifeStasis
+
+cco:EndOfLifeStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfArtifactOperationality ;
+ cco:acronym "EOL"^^xsd:string , "EoL"^^xsd:string ;
+ cco:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when the participating Artifact is no longer capable of realizing all of its designed primary Artifact Functions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An End of Life Stasis (EoL) is distinguished from a Stasis of Partially Mission Capable or Stasis of Non-Mission Capable in that EoL is more inclusive such that the participating Artifact may be either Partially or Non-Mission Capable. Additionally, EoL applies only to Artifacts and is typically determined in relation to its original mission and designed primary functions. In contrast, an Artifact's level of Mission Capability depends on the requirements of the mission under consideration such that a given Artifact may simultaneously be Fully Mission Capable for mission1, Partially Mission Capable for mission2, and Non-Mission Capable for mission3."^^xsd:string ;
+ rdfs:label "End of Life Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/EnhancedStasis
+
+cco:EnhancedStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfSpecificallyDependentContinuant ;
+ cco:alternative_label "Enhanced"^^xsd:string ;
+ cco:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has undergone improvement (i.e., an increase or gain) due to a previous action or event such that the Independent Continuant is now of greater value, usefulness, or functionality."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/enhance"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Enhanced Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/EssentialServiceProvision
+
+cco:EssentialServiceProvision a owl:Class ;
+ rdfs:subClassOf cco:ProcessAggregate ;
+ cco:definition "A Process Aggregate comprising the delivery of one or more essential services."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An essential service is defined here as being one of: medical care, food and water, shelter, or sanitation."^^xsd:string ;
+ rdfs:label "Essential Service Provision"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ExtremeUltravioletLightFrequency
+
+cco:ExtremeUltravioletLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:UltravioletLightFrequency ;
+ cco:definition "An Ultraviolet Light Frequency of some Electromagnetic Wave, typically between 3 and 30 petahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ultraviolet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Extreme Ultraviolet Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ExtremelyHighFrequency
+
+cco:ExtremelyHighFrequency a owl:Class ;
+ rdfs:subClassOf cco:MicrowaveFrequency ;
+ cco:acronym "EHF"^^xsd:string ;
+ cco:definition "A Microwave Frequency of some Electromagnetic Wave, typically between 30 and 300 gigahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Extremely High Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ExtremelyLowFrequency
+
+cco:ExtremelyLowFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "ELF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 3 and 30 hertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Extremely Low Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/FacsimileTransmission
+
+cco:FacsimileTransmission a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Facsimile Transmission"^^xsd:string , "Act of Faxing"^^xsd:string ;
+ cco:definition "An Act of Communication by Media in which the Information Content Entity that inheres in a Document is transmitted over a Telephone Network."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Facsimile_machine"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Facsimile Transmission"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/FarInfraredLightFrequency
+
+cco:FarInfraredLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:InfraredLightFrequency ;
+ cco:definition "An Infrared Light Frequency of some Electromagnetic Wave, typically between 300 gigahertz and 20 terahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_spectrum#Infrared_radiation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Far Infrared Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/FiatProcessPart
+
+cco:FiatProcessPart a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process that is part of another Process and is differentiated from the whole conceptually."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Fiat Process Part"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/FixedLineNetworkTelephoneCall
+
+cco:FixedLineNetworkTelephoneCall a owl:Class ;
+ rdfs:subClassOf cco:TelephoneCall ;
+ cco:definition "A Telephone Call transmitted over a telephone network where the telephones are wired into a single telephone exchange."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Telephone_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Fixed Line Network Telephone Call"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Force
+
+cco:Force a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile that is the rate of change of an object's Momentum, is the product of an object's Mass and Acceleration with respect to an inertial frame of reference, and is measured in units of Newtons (N)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Force"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Frequency
+
+cco:Frequency a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:alternative_label "Temporal Frequency"^^xsd:string ;
+ cco:definition "A Process Profile that is characterized by the number of repetitive processes during a particular time period."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Frequency"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/FundamentalFrequency
+
+cco:FundamentalFrequency a owl:Class ;
+ rdfs:subClassOf cco:SoundFrequency ;
+ cco:definition "A Sound Frequency that is charaterized as the lowest Frequency of a Sound Wave."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Fundamental Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Funeral
+
+cco:Funeral a owl:Class ;
+ rdfs:subClassOf cco:ActOfCeremony ;
+ cco:alternative_label "Act of Funeral Ceremony"^^xsd:string ;
+ cco:definition "An Act of Ceremony in which the Life of a Person who has died is celebrated, sanctified, or remembered."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Funeral"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Funeral"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfDependentContinuant
+
+cco:GainOfDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:Change , _:genid10 .
+
+_:genid10 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid11 .
+
+_:genid11 owl:intersectionOf _:genid17 .
+
+_:genid17 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid12 .
+
+_:genid12 a rdf:List ;
+ rdf:first _:genid13 .
+
+_:genid13 a owl:Restriction ;
+ owl:onProperty cco:bearer_of ;
+ owl:someValuesFrom _:genid14 .
+
+_:genid14 a owl:Class ;
+ owl:unionOf _:genid16 .
+
+_:genid16 a rdf:List ;
+ rdf:first obo:BFO_0000020 ;
+ rdf:rest _:genid15 .
+
+_:genid15 a rdf:List ;
+ rdf:first obo:BFO_0000031 ;
+ rdf:rest rdf:nil .
+
+_:genid12 rdf:rest rdf:nil .
+
+_:genid11 a owl:Class .
+
+cco:GainOfDependentContinuant cco:definition "A Change in which an Independent Continuant becomes the bearer of some Dependent Continuant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Gain of Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfDisposition
+
+cco:GainOfDisposition a owl:Class ;
+ rdfs:subClassOf cco:GainOfRealizableEntity , _:genid18 .
+
+_:genid18 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid19 .
+
+_:genid19 owl:intersectionOf _:genid22 .
+
+_:genid22 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid20 .
+
+_:genid20 a rdf:List ;
+ rdf:first _:genid21 .
+
+_:genid21 a owl:Restriction ;
+ owl:onProperty cco:has_disposition ;
+ owl:someValuesFrom obo:BFO_0000016 .
+
+_:genid20 rdf:rest rdf:nil .
+
+_:genid19 a owl:Class .
+
+cco:GainOfDisposition cco:definition "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Disposition."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Disposition."^^xsd:string ;
+ rdfs:label "Gain of Disposition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfFunction
+
+cco:GainOfFunction a owl:Class ;
+ rdfs:subClassOf cco:GainOfRealizableEntity , _:genid23 .
+
+_:genid23 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid24 .
+
+_:genid24 owl:intersectionOf _:genid27 .
+
+_:genid27 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid25 .
+
+_:genid25 a rdf:List ;
+ rdf:first _:genid26 .
+
+_:genid26 a owl:Restriction ;
+ owl:onProperty cco:has_function ;
+ owl:someValuesFrom obo:BFO_0000034 .
+
+_:genid25 rdf:rest rdf:nil .
+
+_:genid24 a owl:Class .
+
+cco:GainOfFunction cco:definition "A Gain of Realizable Entity in which some Independent Continuant becomes the bearer of some Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Function."^^xsd:string ;
+ rdfs:label "Gain of Function"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfGenericallyDependentContinuant
+
+cco:GainOfGenericallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:GainOfDependentContinuant , _:genid28 .
+
+_:genid28 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid29 .
+
+_:genid29 owl:intersectionOf _:genid32 .
+
+_:genid32 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid30 .
+
+_:genid30 a rdf:List ;
+ rdf:first _:genid31 .
+
+_:genid31 a owl:Restriction ;
+ owl:onProperty cco:bearer_of ;
+ owl:someValuesFrom obo:BFO_0000031 .
+
+_:genid30 rdf:rest rdf:nil .
+
+_:genid29 a owl:Class .
+
+cco:GainOfGenericallyDependentContinuant cco:definition "A Gain of Dependent Continuant wherein some Independent Continuant becomes the bearer of some Generically Dependent Continuant."^^xsd:string ;
+ cco:example_of_usage "A Person forms a Plan, A Person is initiated into a Religion, A photgraphic image is produced."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Gain of Generically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfQuality
+
+cco:GainOfQuality a owl:Class ;
+ rdfs:subClassOf cco:GainOfSpecificallyDependentContinuant , _:genid33 .
+
+_:genid33 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid34 .
+
+_:genid34 owl:intersectionOf _:genid37 .
+
+_:genid37 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid35 .
+
+_:genid35 a rdf:List ;
+ rdf:first _:genid36 .
+
+_:genid36 a owl:Restriction ;
+ owl:onProperty cco:has_quality ;
+ owl:someValuesFrom obo:BFO_0000019 .
+
+_:genid35 rdf:rest rdf:nil .
+
+_:genid34 a owl:Class .
+
+cco:GainOfQuality cco:definition "A Gain of Specifically Dependent Continuant in which an Independent Continuant becomes the bearer of some Quality."^^xsd:string ;
+ cco:example_of_usage "A person becoming pregnant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Gain of Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRealizableEntity
+
+cco:GainOfRealizableEntity a owl:Class ;
+ rdfs:subClassOf cco:GainOfSpecificallyDependentContinuant , _:genid38 .
+
+_:genid38 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid39 .
+
+_:genid39 owl:intersectionOf _:genid42 .
+
+_:genid42 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid40 .
+
+_:genid40 a rdf:List ;
+ rdf:first _:genid41 .
+
+_:genid41 a owl:Restriction ;
+ owl:onProperty cco:bearer_of ;
+ owl:someValuesFrom obo:BFO_0000017 .
+
+_:genid40 rdf:rest rdf:nil .
+
+_:genid39 a owl:Class .
+
+cco:GainOfRealizableEntity cco:definition "A Gain of Specifically Dependent Continuant in which some Independent Continuant becomes the bearer of some Realizable Entity."^^xsd:string ;
+ cco:example_of_usage "An informant becomes unreliable (disposition), A person begins to speak French (function), a person becomes a welder (role)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Gain of Realizable Entity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfRole
+
+cco:GainOfRole a owl:Class ;
+ rdfs:subClassOf cco:GainOfRealizableEntity , _:genid43 .
+
+_:genid43 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid44 .
+
+_:genid44 owl:intersectionOf _:genid47 .
+
+_:genid47 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid45 .
+
+_:genid45 a rdf:List ;
+ rdf:first _:genid46 .
+
+_:genid46 a owl:Restriction ;
+ owl:onProperty cco:has_role ;
+ owl:someValuesFrom obo:BFO_0000023 .
+
+_:genid45 rdf:rest rdf:nil .
+
+_:genid44 a owl:Class .
+
+cco:GainOfRole cco:definition "A Gain of Realizable Entity in which some Independent Continuant becomes bearer of some Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "This class should be used to demarcate the start of the temporal interval (through the occurs_on property) that the Entity bears the Role."^^xsd:string ;
+ rdfs:label "Gain of Role"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GainOfSpecificallyDependentContinuant
+
+cco:GainOfSpecificallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:GainOfDependentContinuant , _:genid48 .
+
+_:genid48 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom _:genid49 .
+
+_:genid49 owl:intersectionOf _:genid52 .
+
+_:genid52 a rdf:List ;
+ rdf:first obo:BFO_0000004 ;
+ rdf:rest _:genid50 .
+
+_:genid50 a rdf:List ;
+ rdf:first _:genid51 .
+
+_:genid51 a owl:Restriction ;
+ owl:onProperty cco:bearer_of ;
+ owl:someValuesFrom obo:BFO_0000020 .
+
+_:genid50 rdf:rest rdf:nil .
+
+_:genid49 a owl:Class .
+
+cco:GainOfSpecificallyDependentContinuant cco:definition "A Gain of Dependent Continuant in which some Independent Continuant becomes the bearer of some Specifically Dependent Continuant."^^xsd:string ;
+ cco:example_of_usage "A Person becomes pregnant (gain of quality), A person becomes forgetful (gain of disposition), A vehicle becomes amphibious (gain of function), A Person becomes a Database Administrator (gain of role)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Gain of Specifically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GammaRayFrequency
+
+cco:GammaRayFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically above 30 exahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Gamma_ray"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment """Currently gamma radiation is distinguished from x-rays by their source--either inside or outside of the nucleus--rather than by frequency, energy, and wavelength.
+https://en.wikipedia.org/wiki/Gamma_ray#Naming_conventions_and_overlap_in_terminology"""^^xsd:string ;
+ rdfs:label "Gamma Ray Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/HardXrayFrequency
+
+cco:HardXrayFrequency a owl:Class ;
+ rdfs:subClassOf cco:XrayFrequency ;
+ cco:definition "An X-Ray Frequency of some Electromagnetic Wave, typically between 3 and 30 exahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Hard X-ray Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/HighFrequency
+
+cco:HighFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "HF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 3 and 30 megahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "High Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IgnitionProcess
+
+cco:IgnitionProcess a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:alternative_label "Ignition"^^xsd:string ;
+ cco:definition "A Natural Process that initiates a Combustion process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Ignition Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ImpulsiveForce
+
+cco:ImpulsiveForce a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:alternative_label "Imp"^^xsd:string , "Impulse"^^xsd:string , "J"^^xsd:string ;
+ cco:definition "A Process Profile that is the integral of a Force that is applied to a portion of matter over a period of time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An Impulse changes the Momentum (and potentially also the direction of Motion) of the object it is applied to and is typically measured in Newton meters."^^xsd:string ;
+ rdfs:label "Impulsive Force"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfDependentContinuant
+
+cco:IncreaseOfDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:Change ;
+ cco:definition "A Change in which some Independent Continuant has an increase in the level of some Dependent Continuant that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfDisposition
+
+cco:IncreaseOfDisposition a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfRealizableEntity ;
+ cco:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Disposition that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Disposition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfFunction
+
+cco:IncreaseOfFunction a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfRealizableEntity ;
+ cco:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Function that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Function"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfGenericallyDependentContinuant
+
+cco:IncreaseOfGenericallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfDependentContinuant ;
+ cco:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Generically Dependent Continuant that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Generically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfQuality
+
+cco:IncreaseOfQuality a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfSpecificallyDependentContinuant ;
+ cco:definition "An Increase of Specifically Dependent Continuant in which some Indpendent Continuant has an increase of some Quality that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfRealizableEntity
+
+cco:IncreaseOfRealizableEntity a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfSpecificallyDependentContinuant ;
+ cco:definition "An Increase of Specifically Dependent Continuant in which some Independent Continuant has an increase of some Realizable Entity that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Realizable Entity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfRole
+
+cco:IncreaseOfRole a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfRealizableEntity ;
+ cco:definition "An Increase of Realizable Entity in which some Independent Continuant has an increase of some Role that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Role"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IncreaseOfSpecificallyDependentContinuant
+
+cco:IncreaseOfSpecificallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:IncreaseOfDependentContinuant ;
+ cco:definition "An Increase of Dependent Continuant in which some Independent Continuant has an increase of some Specifically Dependent Continuant that it bears."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Increase of Specifically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/InfraredLightFrequency
+
+cco:InfraredLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically between 300 gigahertz and 430 tetrahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Infrared"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Infrared Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/InfrasonicFrequency
+
+cco:InfrasonicFrequency a owl:Class ;
+ rdfs:subClassOf cco:SoundFrequency ;
+ cco:definition "A Sound Frequency that is below 20 hertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Infrasonic Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/InstantMessaging
+
+cco:InstantMessaging a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of IMing"^^xsd:string , "Act of Instant Messaging"^^xsd:string ;
+ cco:definition "An Act of Communication by Media in which real-time direct text-based communication occurs between two or more people using personal computers or other devices, along with shared Instant Messaging Client Software conveyed over a network, such as the Internet."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Instant_messaging#Clients"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Instant Messaging"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/IntentionalAct
+
+cco:IntentionalAct a owl:Class ;
+ rdfs:subClassOf cco:Act ;
+ cco:definition "An Act in which at least one Agent plays a causative role and which is prescribed by some Directive Information Content Entity held by at least one of the Agents."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Intentional Act"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/InverseSawtoothWaveform
+
+cco:InverseSawtoothWaveform a owl:Class ;
+ rdfs:subClassOf cco:Waveform ;
+ cco:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from maximum to minimum Amplitudes followed by a near-instantaneous transition from the minimum to maximum Amplitudes of the Wave Cycle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Inverse Sawtooth Waveform"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LegalSystemAct
+
+cco:LegalSystemAct a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act performed by an Agent that realizes their role within the context of a legal system of some jurisdiction."^^xsd:string ;
+ cco:definition_source "http://www.id.uscourts.gov/glossary.htm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Legal System Act"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LifeEvent
+
+cco:LifeEvent a owl:Class ;
+ rdfs:subClassOf cco:FiatProcessPart , _:genid53 .
+
+_:genid53 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:BiographicalLife .
+
+cco:LifeEvent cco:definition "A Fiat Process Part participated in by the Agent of some Biographical Life."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Life Event"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LongitudinalWaveProfile
+
+cco:LongitudinalWaveProfile a owl:Class ;
+ rdfs:subClassOf cco:WaveProcessProfile , _:genid54 .
+
+_:genid54 a owl:Restriction ;
+ owl:onProperty cco:is_part_of_process ;
+ owl:someValuesFrom cco:MechanicalWaveProcess .
+
+cco:LongitudinalWaveProfile cco:alternative_label "Compression Wave"^^xsd:string , "Longitudinal Wave"^^xsd:string ;
+ cco:definition "A Wave Process Profile in which the displacement of participating particles is parallel to the direction of the Wave Process' propogation such that the particles alternate between participating in processes of compression and rarefaction as they participate in individual Wave Processes."^^xsd:string ;
+ cco:definition_source "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Longitudinal Wave Profile"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfDependentContinuant
+
+cco:LossOfDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:Change ;
+ cco:definition "A Change in which some Independent Continuant ceases to be the bearer of some Dependent Continuant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfDisposition
+
+cco:LossOfDisposition a owl:Class ;
+ rdfs:subClassOf cco:LossOfRealizableEntity ;
+ cco:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Disposition."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Disposition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfFunction
+
+cco:LossOfFunction a owl:Class ;
+ rdfs:subClassOf cco:LossOfRealizableEntity ;
+ cco:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Function"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfGenericallyDependentContinuant
+
+cco:LossOfGenericallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:LossOfDependentContinuant ;
+ cco:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Generically Dependent Continuant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Generically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfQuality
+
+cco:LossOfQuality a owl:Class ;
+ rdfs:subClassOf cco:LossOfSpecificallyDependentContinuant ;
+ cco:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Quality."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfRealizableEntity
+
+cco:LossOfRealizableEntity a owl:Class ;
+ rdfs:subClassOf cco:LossOfSpecificallyDependentContinuant ;
+ cco:definition "A Loss of Specifically Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Realizable Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Realizable Entity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfRole
+
+cco:LossOfRole a owl:Class ;
+ rdfs:subClassOf cco:LossOfRealizableEntity ;
+ cco:definition "A Loss of Realizable Entity in which some Independent Continuant ceases to be the bearer of some Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Role"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LossOfSpecificallyDependentContinuant
+
+cco:LossOfSpecificallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:LossOfDependentContinuant ;
+ cco:definition "A Loss of Dependent Continuant in which some Independent Continuant ceases to be the bearer of some Specifically Dependent Continuant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loss of Specifically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Loudness
+
+cco:Loudness a owl:Class ;
+ rdfs:subClassOf cco:SoundProcessProfile ;
+ cco:definition "A Sound Process Profile that is characterized by the amplitude, frequency and power of translated sound waves, typically on a continuum from soft to loud."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Loudness"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LowFrequency
+
+cco:LowFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "LF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 30 and 300 kilohertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Low Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Mailing
+
+cco:Mailing a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Mailing"^^xsd:string ;
+ cco:definition "An Act of Communication by Media in which information and tangible objects, usually written documents, are delivered to destinations around the world."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Mail"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Mailing"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Married
+
+cco:Married a owl:Class ;
+ rdfs:subClassOf cco:StasisOfGenericallyDependentContinuant ;
+ cco:alternative_label "Married Stasis"^^xsd:string ;
+ cco:definition "A Stasis of Generically Dependent Continuant that consists of a socially, culturally, or ritually recognized union or legal contract between spouses that establishes rights and obligations between them, between them and their children, and between them and their in-laws."^^xsd:string ;
+ cco:definition_source "Haviland, William A.; Prins, Harald E. L.; McBride, Bunny; Walrath, Dana (2011). Cultural Anthropology: The Human Challenge (13th ed.). Cengage Learning. ISBN 978-0-495-81178-7"^^xsd:string , "http://en.wikipedia.org/wiki/Marriage"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Married"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MaximumPower
+
+cco:MaximumPower a owl:Class ;
+ rdfs:subClassOf cco:Power ;
+ cco:definition "A Power that is characterized by the maximum rate of Work, or Energy consumed, done in a given time period."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Maximum Power"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MechanicalProcess
+
+cco:MechanicalProcess a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process that is the realization of some Disposition of an Artifact"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Mechanical Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MechanicalWaveProcess
+
+cco:MechanicalWaveProcess a owl:Class ;
+ rdfs:subClassOf cco:WaveProcess ;
+ cco:definition "A Wave Process that involves Oscillation of a portion of matter such that energy is transferred through the material medium."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Mechanical_wave"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Mechanical Wave Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MediumFrequency
+
+cco:MediumFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "MF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 300 kilohertz and 3 megahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Medium Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MicrowaveFrequency
+
+cco:MicrowaveFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:definition "A Radio Frequency of some some Electromagnetic Wave, typically between 300 megahertz and 300 gigahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Microwave"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Microwave Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MidInfraredLightFrequency
+
+cco:MidInfraredLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:InfraredLightFrequency ;
+ cco:definition "An Infrared Light Frequency of some Electromagnetic Wave, typically between 20 to 214 terahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_spectrum#Infrared_radiation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Mid Infrared Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Momentum
+
+cco:Momentum a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile of an object in Motion that is the product of its Mass and Velocity with respect to a frame of reference."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "The SI unit of measure for Momentum is Newton seconds (N s)."^^xsd:string ;
+ rdfs:label "Momentum"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MotionProcess
+
+cco:MotionProcess a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:definition "A Natural Process in which a Continuant changes its Location or Spatial Orientation over some Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/MuzzleBlast
+
+cco:MuzzleBlast a owl:Class ;
+ rdfs:subClassOf cco:SoundWaveProcess ;
+ cco:definition "A Sound Wave Process that is caused by a projectile being pushed from the barrel of a firearm by an explosive charge."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Muzzle Blast"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/NaturalProcess
+
+cco:NaturalProcess a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process existing in or produced by nature; rather than by the intent of human beings."^^xsd:string ;
+ cco:definition_source "http://www.thefreedictionary.com/natural+process"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Natural Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/NearInfraredLightFrequency
+
+cco:NearInfraredLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:InfraredLightFrequency ;
+ cco:definition "An Infrared Light Frequency of some Electromagnetic Wave, typically between 214 and 400 terahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Electromagnetic_spectrum#Infrared_radiation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Near Infrared Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/NearUltravioletLightFrequency
+
+cco:NearUltravioletLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:UltravioletLightFrequency ;
+ cco:definition "An Ultraviolet Light Frequency of some Electromagnetic Wave, typically between 750 terahertz and 3 petahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ultraviolet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Near Ultraviolet Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/NominalStasis
+
+cco:NominalStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfSpecificallyDependentContinuant ;
+ cco:alternative_label "Nominal"^^xsd:string ;
+ cco:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears a Quality or Realizable Entity that has a level of intensity or functionality that falls within the designed, expected, or acceptable range such that the Independent Continuant is of normal value, usefulness, or functionality."^^xsd:string ;
+ cco:definition_source "https://en.oxforddictionaries.com/definition/nominal (Definition 6)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Nominal Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/OperationalStasis
+
+cco:OperationalStasis a owl:Class ;
+ rdfs:subClassOf cco:StasisOfArtifactOperationality ;
+ cco:definition "A Stasis of Artifact Operationality that holds during a Temporal Interval when an Artifact maintains its designed set of Artifact Functions (or at least maintains its primary functions)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Operational Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/OscillationProcess
+
+cco:OscillationProcess a owl:Class ;
+ rdfs:subClassOf cco:ProcessRecurrenceAggregate ;
+ cco:alternative_label "Oscillation"^^xsd:string ;
+ cco:definition "A Process Recurrence Aggregate that consists of the repetitive variation of some entity between two or more states that surround a central state toward which the entity tends."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Oscillation Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Pitch
+
+cco:Pitch a owl:Class ;
+ rdfs:subClassOf cco:SoundProcessProfile ;
+ cco:definition "A Sound Process Profile that is characterized by the frequency of translated sound waves, typically on a continuum from low to high."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Pitch"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Power
+
+cco:Power a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile that is characterized by the rate of Work, or Energy consumed, done in a given time period."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Power"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Pressure
+
+cco:Pressure a owl:Class ;
+ rdfs:subClassOf cco:Force ;
+ cco:definition "A Force that is applied perpendicular to the surface of an Object per unit area over which that Force is distributed."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Pressure"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/PrivateNetworkTelephoneCall
+
+cco:PrivateNetworkTelephoneCall a owl:Class ;
+ rdfs:subClassOf cco:TelephoneCall ;
+ cco:definition "A Telephone Call transmitted over a network where a closed group of telephones are connected primarily to each other and use a gateway to reach the outside world, usually used inside companies and call centers (a.k.a. private branch exchange (PBX))."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Telephone_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Private Network Telephone Call"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ProcessAggregate
+
+cco:ProcessAggregate a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000003 ;
+ cco:definition "An Occurrent that is a collection of processes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Process Aggregate"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ProcessBeginning
+
+cco:ProcessBeginning a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000035 ;
+ cco:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the starting instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Process Beginning"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ProcessEnding
+
+cco:ProcessEnding a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000035 ;
+ cco:definition "A Process Boundary that occurs on a Zero-Dimensional Temporal Region that is the ending instant of the One-Dimensional Temporal Region on which the Process, of which the Process Boundary is a part, occurs."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Process Ending"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ProcessHistory
+
+cco:ProcessHistory a owl:Class ;
+ rdfs:subClassOf cco:ProcessAggregate ;
+ cco:definition "A Process Aggregate that consists of the sum of all Processes that are part of or otherwise involved in the primary Process (i.e., the Process for which the history is being represented) and which are bounded by the Spatiotemporal Region in which the primary Process occurs."^^xsd:string ;
+ cco:elucidation "While a History is, roughly, the sum of all Processes involving a particular Independent Continuant, a Process History is, roughly, the sum of all Processes involved with a particular Process, which often includes other Processes that the Agents and Participants in the primary Process are participating in during the same Temporal Region."^^xsd:string ;
+ cco:example_of_usage "The Process History of a particular passenger flight includes the processes of refueling, takeoff, landing, passenger and luggage loading and unloading, flight attendants serving refreshments and peanuts, passengers sitting, pilots operating the flight controls, air rushing past the plane, communications with air traffic control, sensor operations, and many more."^^xsd:string , "The Process History of a particular sporting event includes the processes of the fans arriving, cheering, booing, holding up signs, buying food and merchandise, and leaving as well as the processes that the coaches, players, and referees engage in during the sporting event."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Process History"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ProcessRecurrenceAggregate
+
+cco:ProcessRecurrenceAggregate a owl:Class ;
+ rdfs:subClassOf cco:ProcessAggregate ;
+ cco:definition "A Process Aggregate that consists of the collection of subprocesses that are all instances of a single type of Process and are parts of a given History or Process History."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Process Recurrence Aggregate"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ProperAcceleration
+
+cco:ProperAcceleration a owl:Class ;
+ rdfs:subClassOf cco:Acceleration ;
+ cco:definition "An Acceleration of an object relative to a free-fall, or inertial, observer who is momentarily at rest relative to the object being measured (hence, gravity does not cause Proper Acceleration)."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Proper_acceleration"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Proper Acceleration"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/PropulsionProcess
+
+cco:PropulsionProcess a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:definition "A Natural Process in which one or more Forces are generated and applied to a participating Object such that the Object is set in Motion or has the direction or magnitude of its Motion altered."^^xsd:string ;
+ cco:elucidation "In each case, a Propulsion Process minimally involves the Object being propelled, a Reaction Mass (e.g. a portion of water, atmosphere, exhaust, etc.), and the Force(s) acting between these two entities."^^xsd:string ;
+ cco:example_of_usage "a twin-engine turboprop plane rotating both of its propellers against a portion of atmosphere to propel the plane forward"^^xsd:string , "an apple falling to the ground under the power of Earth's gravitational force"^^xsd:string , "burning a portion of fuel to produce exhaust that is ejected through a jet nozzle to propel a rocket and its payload"^^xsd:string , "heat from a fire causing ashes to rise into the sky"^^xsd:string , "launching a water balloon using a sling shot"^^xsd:string , "the wind blowing leaves across a lawn"^^xsd:string , "turning a paddle wheel against a portion of water to propel the paddle boat forward"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Propulsion Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RadioBroadcast
+
+cco:RadioBroadcast a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Radio Broadcasting"^^xsd:string ;
+ cco:definition "An Act of Communciation by Media that is transmitted to an audience through a radio network."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Radio_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Radio Broadcast"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RadioFrequency
+
+cco:RadioFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically between 3 kilohertz and 300 gigahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Radio_wave"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Radio Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RadioInterference
+
+cco:RadioInterference a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:definition "A Natural Process in which a radio signal is disrupted, whether unintentionally or as the result of an Act of Radio Jamming, Act of Radio Spoofing, or similar Intentional Act."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Radio Interference"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RevolvingMotion
+
+cco:RevolvingMotion a owl:Class ;
+ rdfs:subClassOf cco:RotationalMotion ;
+ cco:definition "A Rotational Motion of an Object around an Axis of Rotation that is located externally to the Site occupied by the Object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Revolving Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RotationalMotion
+
+cco:RotationalMotion a owl:Class ;
+ rdfs:subClassOf cco:MotionProcess , _:genid55 .
+
+_:genid55 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:AngularVelocity .
+
+cco:RotationalMotion cco:alternative_label "Rotation"^^xsd:string ;
+ cco:definition "A Motion Process in which an Object moves in a Circular or Elliptical Path around an Axis of Rotation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Rotation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Rotational Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SawtoothWaveform
+
+cco:SawtoothWaveform a owl:Class ;
+ rdfs:subClassOf cco:Waveform ;
+ cco:definition "A Waveform that is characterized by a sawtooth shape due to the continuous linear transition from minimum to maximum Amplitudes followed by a near-instantaneous transition from the maximum to minimum Amplitudes of the Wave Cycle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sawtooth Waveform"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ShearWaveProcess
+
+cco:ShearWaveProcess a owl:Class ;
+ owl:equivalentClass _:genid56 .
+
+_:genid56 owl:intersectionOf _:genid59 .
+
+_:genid59 a rdf:List ;
+ rdf:first cco:MechanicalWaveProcess ;
+ rdf:rest _:genid57 .
+
+_:genid57 a rdf:List ;
+ rdf:first _:genid58 .
+
+_:genid58 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:TransverseWaveProfile .
+
+_:genid57 rdf:rest rdf:nil .
+
+_:genid56 a owl:Class .
+
+cco:ShearWaveProcess rdfs:subClassOf cco:MechanicalWaveProcess ;
+ cco:definition "A Mechanical Wave that has a Transverse Wave Profile."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Shear Wave Process"^^xsd:string .
+
+
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SineWaveform
+
+cco:SineWaveform a owl:Class ;
+ rdfs:subClassOf cco:Waveform ;
+ cco:alternative_label "Sinusoidal Waveform"^^xsd:string ;
+ cco:definition "A Waveform that is characterized by a smooth curved shape due to the continuous non-linear transitions between minimum and maximum Amplitudes of the Wave Cycle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sine Waveform"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SocialAct
+
+cco:SocialAct a owl:Class ;
+ rdfs:subClassOf cco:IntentionalAct ;
+ cco:definition "An Intentional Act having an objective that affects, is performed by, or is performed on behalf of, a community or group of Persons."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/commually"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Social Act"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoftXrayFrequency
+
+cco:SoftXrayFrequency a owl:Class ;
+ rdfs:subClassOf cco:XrayFrequency ;
+ cco:definition "An X-Ray Frequency of some Electromagnetic Wave, typically between 30 petahertz and 3 exahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Soft X-ray Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SonicFrequency
+
+cco:SonicFrequency a owl:Class ;
+ rdfs:subClassOf cco:SoundFrequency ;
+ cco:definition "A Sound Frequency that is in the range of 20 hertz to 20 kilohertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sonic Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoundFrequency
+
+cco:SoundFrequency a owl:Class ;
+ rdfs:subClassOf cco:Frequency ;
+ cco:definition "A Frequency that is characterized by the rate of Oscillations per second of a Sound Wave."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sound Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoundPressure
+
+cco:SoundPressure a owl:Class ;
+ rdfs:subClassOf cco:Pressure ;
+ cco:alternative_label "Acoustic Pressure"^^xsd:string ;
+ cco:definition "A Pressure caused by a Sound Wave that is a local deviation from the ambient Pressure."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sound Pressure"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoundProcessProfile
+
+cco:SoundProcessProfile a owl:Class ;
+ owl:equivalentClass _:genid64 .
+
+_:genid64 owl:intersectionOf _:genid67 .
+
+_:genid67 a rdf:List ;
+ rdf:first obo:BFO_0000144 ;
+ rdf:rest _:genid65 .
+
+_:genid65 a rdf:List ;
+ rdf:first _:genid66 .
+
+_:genid66 a owl:Restriction ;
+ owl:onProperty cco:is_part_of_process ;
+ owl:someValuesFrom cco:SoundWaveProcess .
+
+_:genid65 rdf:rest rdf:nil .
+
+_:genid64 a owl:Class .
+
+cco:SoundProcessProfile rdfs:subClassOf obo:BFO_0000144 ;
+ cco:alternative_label "Sound Quality"^^xsd:string ;
+ cco:definition "A Process Profile that is part of a sound reception process and is characterized by properties of incoming sound waves as they are translated by some sensory system."^^xsd:string ;
+ cco:definition_source "http://www.animations.physics.unsw.edu.au/waves-sound/quantifying/index.html"^^xsd:string , "https://en.wikipedia.org/wiki/Sound#Perception_of_sound"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sound Process Profile"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoundProduction
+
+cco:SoundProduction a owl:Class ;
+ rdfs:subClassOf cco:WaveProduction ;
+ cco:alternative_label "Sound Production Process"^^xsd:string ;
+ cco:definition "A Wave Production Process that produces a Sound Wave."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sound Production"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoundWaveProcess
+
+cco:SoundWaveProcess a owl:Class ;
+ rdfs:subClassOf cco:MechanicalWaveProcess , _:genid68 .
+
+_:genid68 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:LongitudinalWaveProfile .
+
+cco:SoundWaveProcess cco:definition "A Mechanical Wave Process of Pressure and displacement that is parallel to the propogation direction of the Wave Process through a medium."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Sound"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sound Wave Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SoundWavelength
+
+cco:SoundWavelength a owl:Class ;
+ rdfs:subClassOf cco:Wavelength ;
+ cco:definition "A Wavelength that is the distance a Sound Wave traverses during one Wave Cycle."^^xsd:string ;
+ cco:definition_source "http://www.physicsclassroom.com/Class/waves/u10l2b.cfm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Sound Wavelength"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Speed
+
+cco:Speed a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile that is characterized by the rate of an object's change in position during some time period."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Velocity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "An object's speed is the scalar absolute value of it's Velocity."^^xsd:string ;
+ rdfs:label "Speed"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SpinningMotion
+
+cco:SpinningMotion a owl:Class ;
+ rdfs:subClassOf cco:RotationalMotion ;
+ cco:definition "A Rotational Motion of an Object around an Axis of Rotation that passes through the Object's Center of Mass."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Spinning Motion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SquareWaveform
+
+cco:SquareWaveform a owl:Class ;
+ rdfs:subClassOf cco:Waveform ;
+ cco:definition "A Waveform that is characterized by a square shape due to the near-instantaneous transitions between minimum and maximum Amplitudes of the Wave Cycle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Square Waveform"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StableOrientation
+
+cco:StableOrientation a owl:Class ;
+ rdfs:subClassOf cco:StasisOfQuality ;
+ cco:definition "A Stasis of Quality that holds during a Temporal Interval when an object maintains the same Spatial Orientation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stable Orientation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Stasis
+
+cco:Stasis a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000015 ;
+ cco:definition "A Process in which some Independent Continuant endures and one or more of the dependent entities it bears does not change in kind or intensity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfArtifactOperationality
+
+cco:StasisOfArtifactOperationality a owl:Class ;
+ rdfs:subClassOf cco:StasisOfRealizableEntity ;
+ cco:definition "A Stasis of Realizable Entity that holds during a Temporal Interval when an Artifact's designed set of Artifact Functions (or at least its primary functions) or the realizations of those functions remain unchanged."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Artifact Operationality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfDisposition
+
+cco:StasisOfDisposition a owl:Class ;
+ rdfs:subClassOf cco:StasisOfRealizableEntity ;
+ cco:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Disposition that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Disposition"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfFullyMissionCapable
+
+cco:StasisOfFullyMissionCapable a owl:Class ;
+ rdfs:subClassOf cco:StasisOfMissionCapability ;
+ cco:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing all of its primary functions for the specified Mission."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Fully Mission Capable"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfFunction
+
+cco:StasisOfFunction a owl:Class ;
+ rdfs:subClassOf cco:StasisOfRealizableEntity ;
+ cco:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Function that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Function"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfGenericallyDependentContinuant
+
+cco:StasisOfGenericallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:Stasis ;
+ cco:definition "A Stasis in which some Independent Continuant bears some Generically Dependent Continuant that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Generically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfMissionCapability
+
+cco:StasisOfMissionCapability a owl:Class ;
+ rdfs:subClassOf cco:StasisOfRealizableEntity ;
+ cco:definition "A Stasis of Realizable Entity that holds during a temporal interval when a Continuant's capability (or lack thereof) to perform its intended Functions, tasks, or Objectives remains at a relatively constant level."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Mission Capability"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfNonMissionCapable
+
+cco:StasisOfNonMissionCapable a owl:Class ;
+ rdfs:subClassOf cco:StasisOfMissionCapability ;
+ cco:definition "A Stasis of Mission Capability during which the participating Continuant is not capable of performing any of its primary functions for the specified Mission."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Non-Mission Capable"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfNonMissionCapableMaintenance
+
+cco:StasisOfNonMissionCapableMaintenance a owl:Class ;
+ rdfs:subClassOf cco:StasisOfNonMissionCapable , _:genid69 .
+
+_:genid69 a owl:Restriction ;
+ owl:onProperty cco:caused_by ;
+ owl:someValuesFrom cco:ActOfMaintenance .
+
+cco:StasisOfNonMissionCapableMaintenance cco:definition "A Stasis of Non-Mission Capable during which the participating Continuant is not capable of performing its primary functions for the specified Mission due to participating in an Act Of Maintenance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Non-Mission Capable Maintenance"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfPartiallyMissionCapable
+
+cco:StasisOfPartiallyMissionCapable a owl:Class ;
+ rdfs:subClassOf cco:StasisOfMissionCapability ;
+ cco:definition "A Stasis of Mission Capability during which the participating Continuant is capable of performing some but not all of its primary functions for the specified Mission."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Partially Mission Capable"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfPartiallyMissionCapableMaintenance
+
+cco:StasisOfPartiallyMissionCapableMaintenance a owl:Class ;
+ rdfs:subClassOf cco:StasisOfPartiallyMissionCapable ;
+ cco:definition "A Stasis of Partially Mission Capable during which the participating Continuant is not capable of performing some of its primary functions for the specified Mission due to participating in an Act Of Maintenance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Partially Mission Capable Maintenance"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfQuality
+
+cco:StasisOfQuality a owl:Class ;
+ rdfs:subClassOf cco:StasisOfSpecificallyDependentContinuant ;
+ cco:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Quality that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfRealizableEntity
+
+cco:StasisOfRealizableEntity a owl:Class ;
+ rdfs:subClassOf cco:StasisOfSpecificallyDependentContinuant ;
+ cco:definition "A Stasis of Specifically Dependent Continuant in which some Independent Continuant bears some Realizable Entity that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Realizable Entity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfRole
+
+cco:StasisOfRole a owl:Class ;
+ rdfs:subClassOf cco:StasisOfRealizableEntity ;
+ cco:definition "A Stasis of Realizable Entity in which some Independent Continuant bears some Role that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Role"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/StasisOfSpecificallyDependentContinuant
+
+cco:StasisOfSpecificallyDependentContinuant a owl:Class ;
+ rdfs:subClassOf cco:Stasis ;
+ cco:definition "A Stasis in which some Independent Continuant bears some Specifically Dependent Continuant that remains unchanged during a Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Stasis of Specifically Dependent Continuant"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SuperHighFrequency
+
+cco:SuperHighFrequency a owl:Class ;
+ rdfs:subClassOf cco:MicrowaveFrequency ;
+ cco:acronym "SHF"^^xsd:string ;
+ cco:definition "A Microwave Frequency of some Electromagnetic Wave, typically between 3 and 30 gigahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Super High Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SuperLowFrequency
+
+cco:SuperLowFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "SLF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 30 and 300 hertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Super Low Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SurfaceWaveProfile
+
+cco:SurfaceWaveProfile a owl:Class ;
+ rdfs:subClassOf cco:WaveProcessProfile ;
+ cco:alternative_label "Surface Wave"^^xsd:string ;
+ cco:definition "A Wave Process Profile in which the Wave Process propogates along the surface of a medium and which involves both transverse and longitudinal wave profiles such that the motion of the displacement of participating particles is circular or elliptical."^^xsd:string ;
+ cco:example_of_usage "the motion of an ocean wave"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Surface Wave Profile"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Target
+
+cco:Target a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000001 ;
+ cco:definition "An Entity that has the role of Target in virtue of its being involved in the Objective of some Intentional Act or in the described outcome of some Plan."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Target"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TelemetryProcess
+
+cco:TelemetryProcess a owl:Class ;
+ rdfs:subClassOf cco:MechanicalProcess , _:genid70 .
+
+_:genid70 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:ActOfCommunicationByMedia .
+
+cco:TelemetryProcess rdfs:subClassOf _:genid71 .
+
+_:genid71 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:ActOfMeasuring .
+
+cco:TelemetryProcess cco:definition "A Mechanical Process that is highly automated and in which measurements are made or other data is collected and transmitted to receiving equipment to facilitate the monitoring of environmental conditions or equipment parameters at a remote or inaccessible location."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Telemetry"^^xsd:string ;
+ cco:example_of_usage "using a GPS tag to track a shark's migratory pattern"^^xsd:string , "using a portable cardiac monitor to remotely collect data on a patient's heart activity (biotelemetry)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Telemetry Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TelephoneCall
+
+cco:TelephoneCall a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Telephone Calling"^^xsd:string ;
+ cco:definition "An Act of Communciation by Media transmitted over a telephone network to two or more Persons."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Telephone_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Telephone Call"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TelevisionBroadcast
+
+cco:TelevisionBroadcast a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Television Broadcasting"^^xsd:string ;
+ cco:definition "An Act of Communciation by Media that is transmitted to an audience through a television network."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Television_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Television Broadcast"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TextMessaging
+
+cco:TextMessaging a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Text Messaging"^^xsd:string , "Act of Texting"^^xsd:string ;
+ cco:definition "An Act of Communication by Media involving the exchange of brief written messages between fixed-line phone or mobile phone and fixed or portable devices over a network."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Text_messaging"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Text Messaging"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Thrust
+
+cco:Thrust a owl:Class ;
+ rdfs:subClassOf cco:Force ;
+ cco:definition "A Force that is equal in magnitude to but in the opposite direction of an exerted Force and which is used to describe the forward Force of a Jet or Rocket Engine in reaction to the Acceleration of its Reaction Mass in the opposite direction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "More generally, Thrust is the propulsive Force of a Rocket."^^xsd:string ;
+ rdfs:label "Thrust"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Timbre
+
+cco:Timbre a owl:Class ;
+ rdfs:subClassOf cco:SoundProcessProfile ;
+ cco:definition "A Sound Process Profile that is characterized by the variation, spectrum, or envelope of translated sound waves, typically on a continuum from dull or dark to bright."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Timbre"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Torque
+
+cco:Torque a owl:Class ;
+ rdfs:subClassOf cco:Force ;
+ cco:alternative_label "Moment of Force"^^xsd:string ;
+ cco:definition "A Force that is applied to an object in a direction that would tend to cause the object to rotate around an Axis of Rotation and is the rate of change of an object's Angular Momentum."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Torque#Terminology"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Torque"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TranslationalMotion
+
+cco:TranslationalMotion a owl:Class ;
+ rdfs:subClassOf cco:MotionProcess , _:genid72 .
+
+_:genid72 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:Velocity .
+
+cco:TranslationalMotion cco:definition "A Motion Process in which the position of a participating Object is changed without altering its Spatial Orientation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Translational Motion" .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TransverseWaveProfile
+
+cco:TransverseWaveProfile a owl:Class ;
+ rdfs:subClassOf cco:WaveProcessProfile ;
+ cco:alternative_label "Transverse Wave"^^xsd:string ;
+ cco:definition "A Wave Process Profile in which the displacement of participating particles is perpendicular to the direction of the Wave Process' propogation."^^xsd:string ;
+ cco:definition_source "http://www.acs.psu.edu/drussell/Demos/waves/wavemotion.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Transverse Wave Profile"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TremendouslyHighFrequency
+
+cco:TremendouslyHighFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:acronym "THF"^^xsd:string ;
+ cco:alternative_label "Terahertz Radiation Frequency"^^xsd:string ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically between 300 gigahertz and 3 terahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Terahertz_radiation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Tremendously High Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TriangularWaveform
+
+cco:TriangularWaveform a owl:Class ;
+ rdfs:subClassOf cco:Waveform ;
+ cco:definition "A Waveform that is characterized by a triangular shape due to the continuous linear zig-zag transitions between minimum and maximum Amplitudes of the Wave Cycle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Triangular Waveform"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/UltraHighFrequency
+
+cco:UltraHighFrequency a owl:Class ;
+ rdfs:subClassOf cco:MicrowaveFrequency ;
+ cco:acronym "UHF"^^xsd:string ;
+ cco:definition "A Microwave Frequency of some Electromagnetic Wave, typically between 300 megahertz and 3 gigahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Ultra High Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/UltraLowFrequency
+
+cco:UltraLowFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "ULF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 300 hertz and 3 kilohertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Ultra Low Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/UltrasonicFrequency
+
+cco:UltrasonicFrequency a owl:Class ;
+ rdfs:subClassOf cco:SoundFrequency ;
+ cco:definition "A Sound Frequency that is greater than 20 kilohertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Ultrasonic Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/UltravioletLightFrequency
+
+cco:UltravioletLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically between 750 terahertz and 30 petahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ultraviolet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Ultraviolet Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/UnderActiveControl
+
+cco:UnderActiveControl a owl:Class ;
+ rdfs:subClassOf cco:ActiveStasis , _:genid73 .
+
+_:genid73 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:ActOfArtifactEmployment .
+
+cco:UnderActiveControl cco:definition "An Active Stasis during which an Artifact participates in an Act of Artifact Employment."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Under Active Control"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/UnintentionalAct
+
+cco:UnintentionalAct a owl:Class ;
+ rdfs:subClassOf cco:Act ;
+ cco:definition "An Act in which at least one Agent plays a causative role and which is not prescribed by some Objective held by any of the Agents."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Unintentional Act"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Velocity
+
+cco:Velocity a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile of an object's Motion that describes its Speed and direction with respect to a frame of reference."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Velocity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/VeryHighFrequency
+
+cco:VeryHighFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "VHF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 30 and 300 megahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Very High Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/VeryLowFrequency
+
+cco:VeryLowFrequency a owl:Class ;
+ rdfs:subClassOf cco:RadioFrequency ;
+ cco:acronym "VLF"^^xsd:string ;
+ cco:definition "A Radio Frequency of some Electromagnetic Wave, typically between 3 and 30 kilohertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Very Low Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/VibrationProcess
+
+cco:VibrationProcess a owl:Class ;
+ rdfs:subClassOf cco:OscillationProcess ;
+ cco:alternative_label "Mechanical Oscillation"^^xsd:string , "Vibration"^^xsd:string ;
+ cco:definition "An Oscillation Process that occurs around an equilibrium point in a material medium such that there is variation over time in the position of the material medium or its parts relative to that point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Vibration Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/VisibleLightFrequency
+
+cco:VisibleLightFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically in the range of 400 to 800 terahertz."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Light"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Visible light overlaps with near infrared and near ultraviolet."^^xsd:string ;
+ rdfs:label "Visible Light Frequency"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/VisibleLightReflectionProcess
+
+cco:VisibleLightReflectionProcess a owl:Class ;
+ rdfs:subClassOf cco:WaveProcess ;
+ cco:definition "A Wave Process in which an Electromagnetic Wave with a Visible Light Frequency is reflected off a portion of matter."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Visible Light Reflection Process" .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/VisibleObservation
+
+cco:VisibleObservation a owl:Class ;
+ rdfs:subClassOf cco:ActOfObservation , _:genid74 .
+
+_:genid74 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:VisibleLightReflectionProcess .
+
+cco:VisibleObservation cco:definition "An Act of Observation that involves visual perception."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Visible Observation" .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/WaveCycle
+
+cco:WaveCycle a owl:Class ;
+ rdfs:subClassOf cco:FiatProcessPart ;
+ cco:definition "A Fiat Process Part that consists of a portion of a Wave Process that begins at an arbitrary point of the Wave Process and ends at the next point when the pattern of the Wave Process begins to repeat."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Wave Cycle"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/WaveProcess
+
+cco:WaveProcess a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess , _:genid75 .
+
+_:genid75 a owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:WaveProduction .
+
+cco:WaveProcess rdfs:subClassOf _:genid76 .
+
+_:genid76 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:OscillationProcess .
+
+cco:WaveProcess rdfs:subClassOf _:genid77 .
+
+_:genid77 a owl:Restriction ;
+ owl:onProperty cco:has_process_part ;
+ owl:someValuesFrom cco:WaveProcessProfile .
+
+cco:WaveProcess cco:definition "A Natural Process that involves Oscillation accompanied by a transfer of energy that travels through a portion of matter or spatial region."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Wave"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Wave Process"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/WaveProcessProfile
+
+cco:WaveProcessProfile a owl:Class ;
+ owl:equivalentClass _:genid78 .
+
+_:genid78 owl:intersectionOf _:genid81 .
+
+_:genid81 a rdf:List ;
+ rdf:first obo:BFO_0000144 ;
+ rdf:rest _:genid79 .
+
+_:genid79 a rdf:List ;
+ rdf:first _:genid80 .
+
+_:genid80 a owl:Restriction ;
+ owl:onProperty cco:is_part_of_process ;
+ owl:someValuesFrom cco:WaveProcess .
+
+_:genid79 rdf:rest rdf:nil .
+
+_:genid78 a owl:Class .
+
+cco:WaveProcessProfile rdfs:subClassOf obo:BFO_0000144 ;
+ cco:definition "A Process Profile of a Wave Process."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class used to group process profiles of Wave Processes. Note that not every relevant process profile can be asserted as a subtype, however, because they (e.g. Frequency and Amplitude) are applicable to other processes as well (e.g. Oscillation Process)."^^xsd:string ;
+ rdfs:label "Wave Process Profile"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/WaveProduction
+
+cco:WaveProduction a owl:Class ;
+ rdfs:subClassOf cco:NaturalProcess ;
+ cco:alternative_label "Wave Production Process"^^xsd:string ;
+ cco:definition "A Natural Process in which a Wave Process is generated."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Wave Production"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Waveform
+
+cco:Waveform a owl:Class ;
+ rdfs:subClassOf cco:WaveProcessProfile ;
+ cco:definition "A Wave Process Profile that is the shape of the Wave Cycles of the Wave Process when depicted in a visual graph."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Waveform"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Wavelength
+
+cco:Wavelength a owl:Class ;
+ rdfs:subClassOf cco:WaveProcessProfile ;
+ cco:definition "A Wave Process Profile that is the distance the Wave Process traverses during one Wave Cycle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Assuming a non-dispersive media, the Wavelength will be the inverse of the Frequency."^^xsd:string ;
+ rdfs:label "Wavelength"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Webcast
+
+cco:Webcast a owl:Class ;
+ rdfs:subClassOf cco:ActOfCommunicationByMedia ;
+ cco:alternative_label "Act of Webcasting"^^xsd:string ;
+ cco:definition "An Act of Communciation by Media transmitted to an audience over the Internet using streaming media technology to distribute a single content source that may be distributed live or on demand."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Webcast"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:comment "Essentially, webcasting is “broadcasting” over the Internet."^^xsd:string ;
+ rdfs:label "Webcast"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Wedding
+
+cco:Wedding a owl:Class ;
+ rdfs:subClassOf cco:ActOfCeremony ;
+ cco:alternative_label "Act of Wedding Ceremony"^^xsd:string ;
+ cco:definition "An Act of Ceremony in which two Persons are united in Marriage or a similar institution."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Wedding"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Wedding"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/WirelessNetworkTelephoneCall
+
+cco:WirelessNetworkTelephoneCall a owl:Class ;
+ rdfs:subClassOf cco:TelephoneCall ;
+ cco:definition "A Telephone Call transmitted over a network where the telephones are mobile and can move anywhere within the coverage area."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Telephone_network"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Wireless Network Telephone Call"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/WoundedStasis
+
+cco:WoundedStasis a owl:Class ;
+ rdfs:subClassOf cco:DamagedStasis ;
+ cco:alternative_label "Wounded"^^xsd:string ;
+ cco:definition "A Damaged Stasis in which a Person or other organism is the bearer of a Quality or Realizable Entity that has suffered impairment (i.e., a decrease or loss) due to an injuring event."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "Wounded Stasis"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/XrayFrequency
+
+cco:XrayFrequency a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationFrequency ;
+ cco:definition "An Electromagnetic Radiation Frequency of some Electromagnetic Wave, typically between 30 petahertz and 30 exahertz."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:string ;
+ rdfs:label "X-ray Frequency"^^xsd:string .
+#
+# Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/ExtendedRelationOntology.ttl b/ExtendedRelationOntology.ttl
new file mode 100644
index 0000000..b5da0b3
--- /dev/null
+++ b/ExtendedRelationOntology.ttl
@@ -0,0 +1,765 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ 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."^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ rdfs:label "Extended Relation Ontology"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ,
+ "Version 1.1"^^xsd:string .
+
+#################################################################
+# Annotation properties
+#################################################################
+
+### 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "acronym"^^xsd:string ;
+ rdfs:subPropertyOf cco:alternative_label .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/alternative_label
+cco:alternative_label rdf:type owl:AnnotationProperty ;
+ cco:definition "A term or phrase that may be used in place of the stated rdfs:label to denote the entity in question."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "alternative label"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/code_license
+cco:code_license rdf:type owl:AnnotationProperty ;
+ cco:definition "The name and description of the license under which the .owl file is released."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "code license"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/content_license
+cco:content_license rdf:type owl:AnnotationProperty ;
+ cco:definition "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "content license"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/copyright
+cco:copyright rdf:type owl:AnnotationProperty ;
+ cco:definition "An assertion of copyright"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "copyright"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/definition
+cco:definition rdf:type owl:AnnotationProperty ;
+ cco:definition "A natural language explication of the meaning of the term."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "definition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/definition_source
+cco:definition_source rdf:type owl:AnnotationProperty ;
+ cco:definition "A citation of where all or some of the information used to create the term's Definition was acquired from."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "definition source"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/designator_annotation
+cco:designator_annotation rdf:type owl:AnnotationProperty ;
+ cco:definition "A name or other identifier that is used to designate an individual."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "designator annotation"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_acronym
+cco:doctrinal_acronym rdf:type owl:AnnotationProperty ;
+ cco:definition "An Acronym that is used by a Doctrinal Source to denote the entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "doctrinal acronym"^^xsd:string ;
+ rdfs:subPropertyOf cco:acronym .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_definition
+cco:doctrinal_definition rdf:type owl:AnnotationProperty ;
+ cco:definition "A Definition that is taken directly from a Doctrinal Source."^^xsd:string ;
+ cco:elucidation "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "doctrinal definition"^^xsd:string ;
+ rdfs:subPropertyOf cco:definition .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_label
+cco:doctrinal_label rdf:type owl:AnnotationProperty ;
+ cco:definition "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."^^xsd:string ;
+ cco:elucidation "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "doctrinal label"^^xsd:string ;
+ rdfs:subPropertyOf cco:alternative_label .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_source
+cco:doctrinal_source rdf:type owl:AnnotationProperty ;
+ cco:definition "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "doctrinal source"^^xsd:string ;
+ rdfs:subPropertyOf cco:definition_source .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/elucidation
+cco:elucidation rdf:type owl:AnnotationProperty ;
+ cco:definition "A clarification or further explanation of a term beyond what is included in the Definition or which is used when the term is primitive such that no non-circular definition can be given for it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "elucidation"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/example_of_usage
+cco:example_of_usage rdf:type owl:AnnotationProperty ;
+ cco:definition "A phrase, sentence or set of terms intended to convey the conventional usage of the term."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "example of usage"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_token_unit
+cco:has_token_unit rdf:type owl:AnnotationProperty ;
+ cco:definition "A relation between an information content entity and a widely used measurement unit of the token used to express it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has token unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/http_query_string
+cco:http_query_string rdf:type owl:AnnotationProperty ;
+ cco:definition "The text of an HTTP request that can be sent to a SPARQL Protocol service."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "http query string"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_measurement_annotation
+cco:interval_measurement_annotation rdf:type owl:AnnotationProperty ;
+ cco:definition "A interval measurement value of an instance of a quality, realizable or process profile "^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "interval measurement annotation"^^xsd:string ;
+ rdfs:subPropertyOf cco:measurement_annotation .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology
+cco:is_curated_in_ontology rdf:type owl:AnnotationProperty ;
+ cco:definition "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is curated in ontology"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_tokenized_by
+cco:is_tokenized_by rdf:type owl:AnnotationProperty ;
+ cco:definition "A relation between an information content entity and a widely used token used to express it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is tokenized by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/measurement_annotation
+cco:measurement_annotation rdf:type owl:AnnotationProperty ;
+ cco:definition "A measurement value of an instance of a quality, reazlizable or process profile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "measurement annotation"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/nominal_measurement_annotation
+cco:nominal_measurement_annotation rdf:type owl:AnnotationProperty ;
+ cco:definition "A nominal measurement value of an instance of a quality, realizable or process profile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "nominal measurement annotation"^^xsd:string ;
+ rdfs:subPropertyOf cco:measurement_annotation .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ordinal_measurement_annotation
+cco:ordinal_measurement_annotation rdf:type owl:AnnotationProperty ;
+ cco:definition "An ordinal measurement value of an instance of a quality, realizable or process profile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "ordinal measurement annotation"^^xsd:string ;
+ rdfs:subPropertyOf cco:measurement_annotation .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/query_text
+cco:query_text rdf:type owl:AnnotationProperty ;
+ cco:definition "The text of a query that is associated with a class"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "query text"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ratio_measurement_annotation
+cco:ratio_measurement_annotation rdf:type owl:AnnotationProperty ;
+ cco:definition "A ratio measurement value of an instance of a quality, realizable or process profile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "ratio measurement annotation"^^xsd:string ;
+ rdfs:subPropertyOf cco:measurement_annotation .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/term_creator
+cco:term_creator rdf:type owl:AnnotationProperty ;
+ cco:definition "The name of the Term Editor who added the term to the ontology."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "term creator"^^xsd:string ;
+ rdfs:subPropertyOf cco:term_editor .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/term_editor
+cco:term_editor rdf:type owl:AnnotationProperty ;
+ cco:definition "The name of a person who contributed to the development or enhancement of the term."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "term editor"^^xsd:string .
+
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://www.obofoundry.org/ro/ro.owl#has_participant
+ rdf:type owl:ObjectProperty .
+
+
+### http://www.obofoundry.org/ro/ro.owl#participates_in
+ rdf:type owl:ObjectProperty .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/accessory_in
+cco:accessory_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:has_accessory ;
+ rdfs:domain obo:BFO_0000040 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "An agent a1 is accessory_in some Processual Entity p1 iff a1 assists in the commission of p1, is not located_at the location of p1, and is not agent_in p1. "^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accessory_(legal_term)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "accessory in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/accomplice_in
+cco:accomplice_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:has_accomplice ;
+ rdfs:domain obo:BFO_0000040 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "An agent a1 is accomplice_in some Processual Entity p1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accomplice"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "accomplice in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/affects
+cco:affects rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:is_affected_by ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000002 ;
+ cco:definition "If p is a process and c is a continuant, then p affects c if and only if p influences c in some manner, most often by producing a change in c."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "affects"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_disposition
+cco:aggregate_has_disposition rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:aggregrate_bearer_of ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000016 ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_has_disposition of some instance of a Disposition if and only if every member of the Object Aggregate instance has_disposition some instance of the Disposition."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has disposition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_quality
+cco:aggregate_has_quality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:aggregrate_bearer_of ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000019 ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_has_quality of some instance of a Quality if and only if every member of the Object Aggregate instance has_quality some instance of the Quality."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has quality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_role
+cco:aggregate_has_role rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:aggregrate_bearer_of ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_has_role of some instance of a Role if and only if every member of the Object Aggregate instance has_role some instance of the Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/aggregrate_bearer_of
+cco:aggregrate_bearer_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_bearer_of some instance of a Dependent Continuant (or any of its subtypes) if and only if every member of the Object Aggregate instance is bearer_of some instance of the Dependent Continuant"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate bearer of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/bearer_of
+cco:bearer_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:inheres_in ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ cco:definition "Inverse of inheres in."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "bearer of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/caused_by
+cco:caused_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_cause_of ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "For types of Processual Entities P1 and P2, P1 caused by P2 if and only if for all instances p1 of P1 there is some instance p2 of P2 such that p1 is the consequence of p2. Inverse of is_cause_of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "caused by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/disposition_of
+cco:disposition_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:realizable_entity_of ;
+ owl:inverseOf cco:has_disposition ;
+ rdfs:domain obo:BFO_0000016 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types D and E where D is a type of Disposition and E is a type of Entity, D disposition of E if and only if for every instance d of D, there is some instance e of E such that d \"disposition of\" e. Here \"disposition of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "disposition of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/disposition_of_aggregate
+cco:disposition_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in_aggregate ;
+ rdfs:domain obo:BFO_0000016 ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Disposition is disposition_of_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Disposition that is disposition_of each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "disposition of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/function_of
+cco:function_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:disposition_of ;
+ owl:inverseOf cco:has_function ;
+ rdfs:domain obo:BFO_0000034 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "A relation between a function F and an entity E. F function_of E iff: F inheres_in E and F is a function"^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "function of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_accessory
+cco:has_accessory rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000040 ;
+ cco:definition "A Processual Entity p1 has_accessory some Agent a1 iff a1 assists in the commission of p1, is not located at the location of p1, and is not agent_in p1."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accessory_(legal_term)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has accessory"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_accomplice
+cco:has_accomplice rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000040 ;
+ cco:definition "An 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."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accomplice"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has accomplice"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_disposition
+cco:has_disposition rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_realizable_entity ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000016 ;
+ cco:definition "For types E and D where E is a type of Entity and D is a type of Disposition, E has disposition D if and only if for all instances e of E there is some instance d of D such that e \"has disposition\" d. Here \"has disposition\" denotes the primitive instance level relation. Inverse of disposition_of."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro-proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has disposition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_function
+cco:has_function rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_disposition ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000034 ;
+ cco:definition "Inverse of is function of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_input
+cco:has_input rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:is_input_of ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000002 ;
+ cco:definition "Inverse of is_input_of, a relation between a Processual Entity and a Continuant such that the presence of the Continuant at the beginning of the Processual Entity is a necessary condition for the start of the Processual Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has input"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_member
+cco:has_member rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:member_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:comment "Inverse of member_of."^^xsd:string ;
+ rdfs:label "has member"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_member_of_located_in
+cco:has_member_of_located_in rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000040 ;
+ cco:definition "An instance of an Object Aggregate 'has member of located in' an instance of some material entity if and only if every member of that Aggregate is located in the same instance of that material entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has member of located in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_object
+cco:has_object rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology" ;
+ rdfs:label "has object"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_output
+cco:has_output rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:is_output_of ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000002 ;
+ cco:definition "Inverse of is_output_of, a relation between a Processual Entity and a Continuant such that the presence of the Continuant at the end of the Processual Entity is a necessary condition for the completion of the Processual Entity"^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/IPO_model"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has output"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_process_part
+cco:has_process_part rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_part_of_process ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For processes P1 and P2, P1 has process part P2 if and only if P2 occurs on a temporal interval that is during the temporal interval of P1 and P2 either provides an input to P1, recieves an output of P1 or both."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has process part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_quality
+cco:has_quality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:bearer_of ;
+ owl:inverseOf cco:quality_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000019 ;
+ cco:definition "For types E and Q where E is a type of Entity and Q is a type of Quality, E has quality Q if and only if for every instance e of E there is some instance q of Q such that e \"has quality\" q. Here \"has quality\" denotes the primitive instance level relation. Inverse of quality_of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has quality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_realizable_entity
+cco:has_realizable_entity rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:bearer_of ;
+ owl:inverseOf cco:realizable_entity_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000017 ;
+ cco:definition "For types E and R where E is a type of Entity and R is a type of Realizable Entity, E has realizable entity R if and only if for all instances e of E there is some instance r of R such that e \"has realizable entity\" r. Here \"has realizable entity\" denotes the primitive instance level relation. Inverse of realizable_entity_of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has realizable entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_role
+cco:has_role rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_realizable_entity ;
+ owl:inverseOf cco:role_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "For types E and R where E is a type of Entity and R is a type of Role, E has role R if and only if for all instances e of E there is some instance r of R such that e \"has role\" r. Here \"has role\" denotes the primitive instance level relation. Inverse of role_of."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro-proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "has role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/inheres_in
+cco:inheres_in rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types T1 and T2, if T1 inheres in T2, then for all instances of T1, t1, there is some instance of T2, t2, such that t1 \"inheres in\" t2. Here, \"inheres in\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl "^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "inheres in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/inheres_in_aggregate
+cco:inheres_in_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Dependent Continuant inheres_in_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Dependent Continuant that inhere_in each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "inheres in aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_affected_by
+cco:is_affected_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "If c is a continuant and p is a process, the c is affected by p if and only if c undergoes some change as a result of the occurrence of p."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is affected by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_cause_of
+cco:is_cause_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000001 ;
+ rdfs:range obo:BFO_0000003 ;
+ cco:definition "For types of Processual Entities P1 and P2, P1 is cause of P2 if and only if for all instances p1 of P1 there is some instance p2 of P2 such that p1 is a causal factor in p2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is cause of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_input_of
+cco:is_input_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between a Continuant and a Processual Entity in which the Continuant participates. The presence of the Continuant at the begining of the Processual Entity is a necessary condition for the start of the Processual Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is input of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_made_of
+cco:is_made_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ owl:inverseOf cco:is_material_of ;
+ rdfs:domain obo:BFO_0000030 ;
+ rdfs:range obo:BFO_0000030 ;
+ cco:definition "An object o is made of an object m when m is the material that o consists of and that material does not undergo a change of kind during the creation of o"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is made of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_material_of
+cco:is_material_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000030 ;
+ rdfs:range obo:BFO_0000030 ;
+ cco:definition "An object m is material of an object o when m is the material of which o consists and that material does not undergo a change of kind during the creation of o"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is material of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_object_of
+cco:is_object_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology" ;
+ rdfs:label "is object of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_output_of
+cco:is_output_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between a Continuant and a Processual Entity in which the Continuant participates. The presence of the Continuant at the end of the Processual Entity is a necessary condition for the completion of the Processual Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is output of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_part_of_process
+cco:is_part_of_process rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "Inverse of has process part"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is part of process"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_predecessor_of
+cco:is_predecessor_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_successor_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "A continuant c1 is a predecessor of some continuant c2 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1."^^xsd:string ;
+ cco:elucidation "More informally, c1 is a predecessor of c2 iff c1 has been followed or replaced by c2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is predecessor of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of
+cco:is_site_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:occurs_at ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000006
+ obo:BFO_0000029
+ )
+ ] ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between some Spatial Region and some Processual Entity which holds whenever the Processual Entity occurs at that Spatial Region"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is site of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_successor_of
+cco:is_successor_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "A continuant c2 is a successor of some continuant c1 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1. Inverse of is predecessor. "^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is successor of"^^xsd:string .
+
+
+### 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 ;
+ cco:definition "Inverse of occurs on."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "is temporal region of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/member_of
+cco:member_of rdf:type owl:ObjectProperty ;
+ cco:definition "An entity E1 is member_of some aggregate A1 iff E1 is of type T, A1 is a collection of individuals of type T, and E1 is one of the individuals in that collection."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/RO_0002351"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "member of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/occurs_at
+cco:occurs_at rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000006
+ obo:BFO_0000029
+ )
+ ] ;
+ cco:definition "An instance level relation that holds between instances of Processual Entities and Spatial Regions whevever some spatial region is the site of some processual entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "occurs at"^^xsd:string .
+
+
+### 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 "An instance level relation which holds between some Processual Entity and some Temporal Region whenever the duration of the Processual Entity is contained by the Temporal Region"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "occurs on"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/quality_of
+cco:quality_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in ;
+ rdfs:domain obo:BFO_0000019 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types Q and E where Q is a type of Quality and E is a type of Entity, if Q is a quality of E, then for all instances q of Q there is some instance e of E such that q \"quality of\" e. Here, \"quality of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "quality of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/quality_of_aggregate
+cco:quality_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in_aggregate ;
+ rdfs:domain obo:BFO_0000019 ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Quality is quality_of_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Quality that is quality_of each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "quality of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/realizable_entity_of
+cco:realizable_entity_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in ;
+ rdfs:domain obo:BFO_0000017 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types R and E where R is a type of Realizable Entity and E is a type of Entity, R realizable entity of E if and only if for every instance r of R, there is some instance e of E such that r \"realizable entity of\" e. Here \"realizable entity of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "realizable entity of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/realized_by
+cco:realized_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:realizes ;
+ rdfs:domain obo:BFO_0000017 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between a Realizable Entity and a Processual Entity, inverse of realizes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "realized by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/realizes
+cco:realizes rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000017 ;
+ cco:definition "A Relation between a Process and a Function, where the unfolding of the process requires the execution of the function. Class level: P realizes F iff: given any p that instantiates P, there exists some f, t such that f instantiates F at t and p *realizes* f. Here, *realizes* is the primitive instance level relation"^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "realizes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/role_of
+cco:role_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:realizable_entity_of ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types R and E where R is a type of Role and E is a type of Entity, if R role of E, then for all instances r of R there is some instance e of E such that r \"role of\" e. Here, \"role of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "role of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/role_of_aggregate
+cco:role_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in_aggregate ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Role is role_of_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Role that is role_of each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:label "role of aggregate"^^xsd:string .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ObsoleteClass
+cco:ObsoleteClass rdf:type owl:Class ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:string ;
+ rdfs:comment "Definition: A class used only as a parent class of obsoleted classes. It is understood that subclasses of this class are classified as such incorrectly. The obsoleted classes are instances of the parent class, not subclasses." ;
+ rdfs:label "Obsolete Class" .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/GeospatialOntology.ttl b/GeospatialOntology.ttl
new file mode 100644
index 0000000..529b511
--- /dev/null
+++ b/GeospatialOntology.ttl
@@ -0,0 +1,828 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ 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."^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ;
+ rdfs:label "Geospatial Ontology"^^xsd:string ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string .
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with
+cco:coincides_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "coincides with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/connected_with
+cco:connected_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "connected with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/disconnected_with
+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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "disconnected with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/externally_connects_with
+cco:externally_connects_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "externally connects with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_proper_part
+cco:has_nontangential_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_spatial_proper_part ;
+ owl:inverseOf cco:nontangential_proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of nontangential proper part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "has nontangential proper part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part
+cco:has_spatial_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:spatial_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of spatial part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "has spatial part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_proper_part
+cco:has_spatial_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ owl:inverseOf cco:spatial_proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of spatial proper part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "has spatial proper part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_tangential_proper_part
+cco:has_tangential_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:has_spatial_proper_part ;
+ owl:inverseOf cco:tangential_proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of tangential proper part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "has tangential proper part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/nontangential_proper_part_of
+cco:nontangential_proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:spatial_proper_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 proper part of some immaterial entity im2 iff im1 is a spatial proper part of im2 and there does not exist an immaterial entity im such that im externally connects with im1 and im externally connects with im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "nontangential proper part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/overlaps_with
+cco:overlaps_with rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "An immaterial entity im1 overlaps with some immaterial entity im2 iff there exists some immaterial entity im such that im is a spatial part of im1 and im is a spatial part of im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "overlaps with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/partially_overlaps_with
+cco:partially_overlaps_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "partially overlaps with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of
+cco:spatial_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "An immaterial entity im1 is a spatial part of some immaterial entity im2 iff for every immaterial entity im if im is connected with im1, then im is connected with im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "spatial part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/spatial_proper_part_of
+cco:spatial_proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "An immaterial entity im1 is a spatial proper part of some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is not a spatial part of im1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "spatial proper part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/tangential_proper_part_of
+cco:tangential_proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:spatial_proper_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 proper part of some immaterial entity im2 iff im1 is a proper part of im2 and there exists some immaterial entity im such that im externally connects with im1 and im externally connects with im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "tangential proper part of"^^xsd:string .
+
+
+#################################################################
+# Data properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_altitude_value
+cco:has_altitude_value rdf:type owl:DatatypeProperty ;
+ cco:elucidation "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."^^xsd:string ;
+ rdfs:label "has altitude value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_latitude_value
+cco:has_latitude_value rdf:type owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ cco:definition "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "has latitude value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_longitude_value
+cco:has_longitude_value rdf:type owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ cco:definition "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "has longitude value"^^xsd:string .
+
+
+### http://www.opengis.net/ont/geosparql#asWKT
+ rdf:type owl:DatatypeProperty ;
+ cco:definition "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."^^xsd:string ;
+ cco:example_of_usage "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))
, Point ZM (1 2 5 40)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "ISO 19162:2015"^^xsd:string ;
+ rdfs:label "as WKT"^^xsd:string .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AnthropogenicFeature
+cco:AnthropogenicFeature rdf:type owl:Class ;
+ rdfs:subClassOf cco:EnvironmentalFeature ;
+ cco:definition "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/anthropogenic"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Anthropogenic Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AtmosphericFeature
+cco:AtmosphericFeature rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeographicFeature ;
+ cco:definition "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Atmospheric Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AxisOfRotation
+cco:AxisOfRotation rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:alternative_label "Rotational Axis"^^xsd:string ;
+ cco:definition "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Axis of Rotation"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BoundingBoxPoint
+cco:BoundingBoxPoint rdf:type owl:Class ;
+ owl:equivalentClass [ owl:intersectionOf ( cco:GeospatialPosition
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:GeospatialRegionBoundingBox
+ ]
+ ) ;
+ rdf:type owl:Class
+ ] ;
+ rdfs:subClassOf cco:GeospatialPosition ;
+ cco:definition "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Bounding Box Point"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CenterOfMass
+cco:CenterOfMass rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000018 ;
+ cco:definition "A Zero-Dimensional Spatial Region that is the point where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Center_of_mass"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Center of Mass"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/City
+cco:City rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ;
+ cco:definition "A Geopolitical Entity in which a relatively large human population permanently resides; is designated as a city based on a particular administrative, legal, or historical status; and which delimits a local Government that typically oversees the provision of systems for sanitation, utilities, land usage, housing, and transportation."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/City"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "City"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CityPart
+cco:CityPart rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:City
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPart ;
+ cco:definition "A Geopolitical Entity Part that consists of one or more fiat sub-sections of a City."^^xsd:string ;
+ cco:example_of_usage "the Flatbush neighorhood of New York City"^^xsd:string ,
+ "the French Quarter of New Orleans"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "This defined class should be used for instances that are sections of a City demarcated based on cultural, historic, or demographic reasons."^^xsd:string ;
+ rdfs:label "City Part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ConstructedFeature
+cco:ConstructedFeature rdf:type owl:Class ;
+ rdfs:subClassOf cco:AnthropogenicFeature ;
+ cco:definition "An Anthropogenic Feature that has been constructed by deliberate human effort."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Constructed Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Continent
+cco:Continent rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialRegion ;
+ cco:definition "A Geospatial Region bounded by any of the Earth's main continuous expanses of land."^^xsd:string ;
+ cco:definition_source "JC3IEDM version 3.0.2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Continent"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoordinateSystemAxis
+cco:CoordinateSystemAxis rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Coordinate System Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Country
+cco:Country rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ;
+ cco:alternative_label "Sovereign State"^^xsd:string ;
+ cco:definition "A Geopolitical Entity that delimits a Government with effective internal and external sovereignty over the region and its population, and which is not dependent on or subject to any other power or Geopolitical Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Country"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CountryPart
+cco:CountryPart rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Country
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPart ;
+ cco:definition "A Geopolitical Entity Part that consists of one or more fiat sub-sections of a Country."^^xsd:string ;
+ cco:example_of_usage "Northern Iraq"^^xsd:string ,
+ "Southeastern United States"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "This defined class should be used for instances which are not proper sub-national entities (e.g. it should not be used for Cities, Provinces, or States)."^^xsd:string ;
+ rdfs:label "Country Part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EnvironmentalFeature
+cco:EnvironmentalFeature rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000040 ;
+ cco:definition "A Material Entity that is either a natural or man-made feature of the environment."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Environmental Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion
+cco:FirstOrderAdministrativeRegion rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Country
+ ] ;
+ cco:definition "A Geopolitical Entity that is a primary administrative division of a Country."^^xsd:string ;
+ cco:definition_source "http://www.geonames.org/export/codes.html"^^xsd:string ;
+ cco:example_of_usage "a state in the United States"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "First-Order Administrative Region"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FourthOrderAdministrativeRegion
+cco:FourthOrderAdministrativeRegion rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:ThirdOrderAdministrativeRegion
+ ] ;
+ cco:definition "A Geopolitical Entity that is a subdivision of a Third-Order Administrative Region."^^xsd:string ;
+ cco:definition_source "http://www.geonames.org/export/codes.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Fourth-Order Administrative Region"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeographicFeature
+cco:GeographicFeature rdf:type owl:Class ;
+ rdfs:subClassOf cco:EnvironmentalFeature ;
+ cco:definition "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geographic Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntity
+cco:GeopoliticalEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialRegion ;
+ cco:definition "A Geospatial Region that delimits the authority of a formally constituted Government to exercise its control within the bounded area."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geopolitical Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntityBorder
+cco:GeopoliticalEntityBorder rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialBoundary ;
+ cco:definition "A Geospatial Boundary that is a boundary of some Geopolitical Entity."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/International_border"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geopolitical Entity Border"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntityPart
+cco:GeopoliticalEntityPart rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:GeopoliticalEntity
+ ] ;
+ rdfs:subClassOf cco:GeospatialRegion ;
+ cco:definition "A Geospatial Region that consists of one or more fiat sub-sections of a Geopolitical Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geopolitical Entity Part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialBoundary
+cco:GeospatialBoundary rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000142 ;
+ cco:definition "A One-Dimensional Continuant Fiat Boundary that is a boundary of some Geospatial Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Boundary"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialEllipse
+cco:GeospatialEllipse rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialLineString ;
+ cco:definition "A Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Ellipse"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialErrorRegion
+cco:GeospatialErrorRegion rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialBoundary ;
+ cco:definition "A Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Error Region"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLine
+cco:GeospatialLine rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialLineString ;
+ cco:definition "A Geospatial Line String that has only two vertices."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Line"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLineString
+cco:GeospatialLineString rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialBoundary ;
+ cco:definition "A Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Line String"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLocation
+cco:GeospatialLocation rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialRegion ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ cco:definition "A Geospatial Region at which an Entity or Event is located."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Location"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPolygon
+cco:GeospatialPolygon rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialLineString ;
+ cco:definition "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Polygon"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPosition
+cco:GeospatialPosition rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000147 ;
+ cco:definition "A zero-dimensional continuant fiat boundary that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Position"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegion
+cco:GeospatialRegion rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000029 ;
+ cco:definition "A Site at or near the surface of the Earth."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Region"^^xsd:string .
+
+
+### 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_proper_part ;
+ owl:someValuesFrom cco:GeospatialRegion
+ ] ;
+ cco:definition "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Geospatial Region Bounding Box"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroundTrack
+cco:GroundTrack rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:alternative_label "Ground Trace"^^xsd:string ;
+ cco:definition "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ground_track"^^xsd:string ;
+ cco:elucidation "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Ground Track"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GroundTrackPoint
+cco:GroundTrackPoint rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000018 ;
+ cco:definition "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Ground Track Point"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HighDensityResidentialArea
+cco:HighDensityResidentialArea rdf:type owl:Class ;
+ rdfs:subClassOf cco:PopulatedPlace ;
+ cco:definition "A Populated Place which is characterized by densely contained multiple-unit living structures."^^xsd:string ;
+ cco:definition_source "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "High Density Residential Area"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HydrographicFeature
+cco:HydrographicFeature rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeographicFeature ;
+ cco:definition "A Geographic Feature associated with water."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Hydrographic Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LowDensityResidentialArea
+cco:LowDensityResidentialArea rdf:type owl:Class ;
+ rdfs:subClassOf cco:PopulatedPlace ;
+ cco:definition "A Populated Place where houses are on lots of more than one acre."^^xsd:string ;
+ cco:definition_source "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Low Density Residential Area"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MajorAxis
+cco:MajorAxis rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Major Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinorAxis
+cco:MinorAxis rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Semi-minor_axis#Ellipse"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Minor Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Nadir
+cco:Nadir rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Nadir"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Nadir"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ObjectTrack
+cco:ObjectTrack rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_spatial_part ;
+ owl:someValuesFrom cco:ObjectTrackPoint
+ ] ;
+ cco:definition "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."^^xsd:string ;
+ rdfs:label "Object Track"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ObjectTrackPoint
+cco:ObjectTrackPoint rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000018 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:spatial_part_of ;
+ owl:someValuesFrom cco:ObjectTrack
+ ] ;
+ cco:definition "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Object Track Point"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Park
+cco:Park rdf:type owl:Class ;
+ rdfs:subClassOf cco:AnthropogenicFeature ;
+ cco:definition "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."^^xsd:string ;
+ cco:definition_source "Wikipedia: Park"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Park"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PhysiographicFeature
+cco:PhysiographicFeature rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeographicFeature ;
+ cco:definition "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Landform"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Physiographic Feature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PitchAxis
+cco:PitchAxis rdf:type owl:Class ;
+ rdfs:subClassOf cco:AxisOfRotation ;
+ cco:alternative_label "Lateral Axis"^^xsd:string ;
+ cco:definition "An Axis of Rotation that passes through the center of an object's Mass from one side of the object to the other and is perpendicular to the direction of the object's motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Pitch Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PopulatedPlace
+cco:PopulatedPlace rdf:type owl:Class ;
+ rdfs:subClassOf cco:AnthropogenicFeature ;
+ cco:definition "An Anthropogenic Feature at which people live or have lived."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Human_settlement"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Populated place"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Province
+cco:Province rdf:type owl:Class ;
+ rdfs:subClassOf cco:FirstOrderAdministrativeRegion ;
+ cco:definition "A First-Order Administrative Region that is part of a Country and delimits the authority of a magistrate who holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the Province."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Province"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Province"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProvincePart
+cco:ProvincePart rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Province
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPart ;
+ cco:definition "A Geopolitical Entity Part that consists of one or more fiat sub-sections of a Province."^^xsd:string ;
+ cco:example_of_usage "the Greater Montreal Area of Quebec"^^xsd:string ,
+ "the southwest area of Al Anbar Province"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "This defined class should be used for instances that are sections of a Province demarcated based on cultural, historic, or demographic reasons."^^xsd:string ;
+ rdfs:label "Province Part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RollAxis
+cco:RollAxis rdf:type owl:Class ;
+ rdfs:subClassOf cco:AxisOfRotation ;
+ cco:alternative_label "Longitudinal Axis"^^xsd:string ;
+ cco:definition "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Roll Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SeaLevel
+cco:SeaLevel rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000146 ;
+ cco:definition "A two-dimensional continuant fiat boundary that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Sea Level"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion
+cco:SecondOrderAdministrativeRegion rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:FirstOrderAdministrativeRegion
+ ] ;
+ cco:definition "A Geopolitical Entity that is a subdivision of a First-Order Administrative Region."^^xsd:string ;
+ cco:definition_source "http://www.geonames.org/export/codes.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Second-Order Administrative Region"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SemiMajorAxis
+cco:SemiMajorAxis rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Semi-Major Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SemiMinorAxis
+cco:SemiMinorAxis rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Semi-Minor Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/State
+cco:State rdf:type owl:Class ;
+ rdfs:subClassOf cco:FirstOrderAdministrativeRegion ;
+ cco:alternative_label "Constituent State"^^xsd:string ;
+ cco:definition "A First-Order Administrative Region that is part of a Country and delimits a centralized regional Government that holds constitutionally-defined administrative jurisdiction over the defined geographic territory that bounds the State."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Constituent_state"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "State"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StatePart
+cco:StatePart rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:State
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPart ;
+ cco:definition "A Geopolitical Entity Part that consists of one or more fiat sub-sections of a State."^^xsd:string ;
+ cco:example_of_usage "the Texas Panhandle"^^xsd:string ,
+ "the Western New York Region"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "This defined class should be used for instances that are sections of a State demarcated based on cultural, historic, or demographic reasons."^^xsd:string ;
+ rdfs:label "State Part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Subcontinent
+cco:Subcontinent rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeospatialRegion ;
+ cco:definition "A Geospatial Region bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Subcontinent"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Subcontinent"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion
+cco:ThirdOrderAdministrativeRegion rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:SecondOrderAdministrativeRegion
+ ] ;
+ cco:definition "A Geopolitical Entity that is a subdivision of a Second-Order Administrative Region."^^xsd:string ;
+ cco:definition_source "http://www.geonames.org/export/codes.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Third-Order Administrative Region"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalPath
+cco:ThreeDimensionalPath rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000028 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:has_spatial_part ;
+ owl:someValuesFrom cco:ThreeDimensionalPosition
+ ] ;
+ cco:definition "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Three-Dimensional Path"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalPosition
+cco:ThreeDimensionalPosition rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000028 ;
+ cco:definition "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:comment "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."^^xsd:string ;
+ rdfs:label "Three-Dimensional Position"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Town
+cco:Town rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ;
+ cco:definition "A Geopolitical Entity in which a human population permanently resides that is typically larger than the population of a Village but smaller than that of a City; is designated as a town based on a particular administrative, legal, or historical status; and which delimits a local Government that typically exercises less power than that of a City Government."^^xsd:string ;
+ cco:definition_source "http://www.dictionary.com/browse/town"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Town"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Village
+cco:Village rdf:type owl:Class ;
+ rdfs:subClassOf cco:GeopoliticalEntity ;
+ cco:definition "A Geopolitical Entity in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/village"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Village"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/YawAxis
+cco:YawAxis rdf:type owl:Class ;
+ rdfs:subClassOf cco:AxisOfRotation ;
+ cco:alternative_label "Vertical Axis"^^xsd:string ;
+ cco:definition "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Yaw Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Zenith
+cco:Zenith rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000026 ;
+ cco:definition "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Zenith"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "Zenith"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/xAxis
+cco:xAxis rdf:type owl:Class ;
+ rdfs:subClassOf cco:CoordinateSystemAxis ;
+ cco:definition "A Coordinate System Axis designated by the variable 'x'."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "x-Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/yAxis
+cco:yAxis rdf:type owl:Class ;
+ rdfs:subClassOf cco:CoordinateSystemAxis ;
+ cco:definition "A Coordinate System Axis designated by the variable 'y'."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "y-Axis"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/zAxis
+cco:zAxis rdf:type owl:Class ;
+ rdfs:subClassOf cco:CoordinateSystemAxis ;
+ cco:definition "A Coordinate System Axis designated by the variable 'z'."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:string ;
+ rdfs:label "z-Axis"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/InformationEntityOntology.ttl b/InformationEntityOntology.ttl
new file mode 100644
index 0000000..3270b89
--- /dev/null
+++ b/InformationEntityOntology.ttl
@@ -0,0 +1,2678 @@
+@prefix : .
+@prefix dc: .
+@prefix ro: .
+@prefix bfo: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ,
+ ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ rdfs:label "Information Entity Ontology"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ;
+ rdfs:comment "This ontology is designed to represent generic types of information as well as the relationships between information and other entities."^^xsd:string .
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/condition_described_by
+cco:condition_described_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:describes_condition ;
+ owl:propertyChainAxiom ( cco:described_by
+ ro:part_of
+ ) ;
+ 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 c is an entity that is causally relevant to s existing as prescribed by p."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "condition described by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/described_by
+cco:described_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_subject_of ;
+ owl:inverseOf cco:describes ;
+ rdfs:range cco:DescriptiveInformationContentEntity ;
+ cco:definition "The inverse of describes, which relates an Entity to some Descriptive Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "described by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/describes
+cco:describes rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_about ;
+ rdfs:domain cco:DescriptiveInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes T2 then there is some instance of T1, t1 that presents the characteristics by which some instance of T2, t2 can be recognized or visualized."^^xsd:string ;
+ cco:example_of_usage "a newspaper article describes some current event"^^xsd:string ,
+ "a visitor's log describes some facility visit"^^xsd:string ,
+ "an accident report describes some accident"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."^^xsd:string ;
+ rdfs:label "describes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/describes_condition
+cco:describes_condition rdf:type owl:ObjectProperty ;
+ owl:propertyChainAxiom ( ro:has_part
+ 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 c is an entity that is causally relevant to s existing as prescribed by p."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "describes condition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/describes_set_with
+cco:describes_set_with rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes ;
+ owl:inverseOf cco:set_described_by ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ rdfs:range cco:MeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 further describes some entity described by t1 when compared to all the entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "describes set with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/describes_set_with_expected_element
+cco:describes_set_with_expected_element rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes_set_with ;
+ owl:inverseOf cco:set_described_by_expected_element ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with expected element T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 indicates that an entity described by t1 is the most likely element to occur relative to the set of entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "describes set with expected element"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/describes_set_with_ordinality
+cco:describes_set_with_ordinality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes_set_with ;
+ owl:inverseOf cco:set_described_by_ordinality ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ rdfs:range cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with ordinailty T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 indicates the rank order of an entity described by t1 with respect to the set of entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "describes set with ordinality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/describes_set_with_proportion
+cco:describes_set_with_proportion rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes_set_with ;
+ owl:inverseOf cco:set_described_by_proportion ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ rdfs:range cco:ProportionalRatioMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with proportion T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 is a proportional measurement of a subset of entities described by t1 when compared to all the entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "describes set with proportion"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/designated_by
+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 "The inverse of designates, which relates an Entity to some Designative Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "designated by"^^xsd:string .
+
+
+### 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 "For all types T1 and T2, if T1 designates T2, then there is some instance of T1, t1, by which some instance of T2, t2, is called, or classified, distinguished from others."^^xsd:string ;
+ cco:example_of_usage "a URL identifies the location of a Web Page on the internet"^^xsd:string ,
+ "a person's name designates that person"^^xsd:string ,
+ "a vehicle identification number designates some vehicle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "designates"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_denominator_measurement_of
+cco:has_denominator_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes ;
+ rdfs:domain cco:ProportionalRatioMeasurementInformationContentEntity ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "For all Types T1 and T2, if T1 has denominator measurement of T2, then there is some instance of T1, t1 that is a proportional measurement of some instance of T2, t2 such that t2 is the whole being compared to by some portion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has denominator measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_numerator_measurement_of
+cco:has_numerator_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes ;
+ rdfs:domain cco:ProportionalRatioMeasurementInformationContentEntity ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "For all Types T1 and T2, if T1 has numerator measurement of T2, then there is some instance of T1, t1 that is a proportional measurement of some instance of T2, t2 such that t2 is the portion being compared to some whole."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has numerator measurement of"^^xsd:string .
+
+
+### 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 "For all Types T1 and T2, if T1 is a interval measurement of T2 then there is some instance of T1, t1, that places some instance of T2, t2, onto a scale which has uniform intervals but has a zero value that does not correspond to an absence of the quality being measured."^^xsd:string ;
+ cco:example_of_usage "a measurement of air temperature on the Celsius scale."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is a interval measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_measurement_of
+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 "For all Types T1 and T2, if T1 is a measurement of T2 then there is some instance of T1, t1, that describes some characteristic of some instance of T2, t2, relative to some scale or classification scheme."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ 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."^^xsd:string ;
+ rdfs:label "is a measurement of"^^xsd:string .
+
+
+### 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 "For all Types T1 and T2, if T1 is a nominal measurement of T2 then there is some instance of T1, t1, that classifies some instance of T2, t2, relative to some set of shared, possibly arbitrary, characteristics."^^xsd:string ;
+ cco:example_of_usage "classifying automobiles as sedans, coupes, hatchbacks, or convertibles"^^xsd:string ,
+ "classifying military intelligence as strategic, operational, or tactical"^^xsd:string ,
+ "classifying rocks as igneous, sedimentary, or metamorphic"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is a nominal measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ordinal_measurement_of
+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 "For all Types T1 and T2, if T1 is an ordinal measurement of T2 then there is some instance of T1, t1, that places some instance of T2, t2, onto a rank order."^^xsd:string ;
+ cco:example_of_usage "placing Geospatial Regions into a rank order of small, medium, large"^^xsd:string ,
+ "placing military units onto a readiness rank order of red, yellow, green"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is a ordinal measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ratio_measurement_of
+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 "For all Types T1 and T2, if T1 is a ratio measurement of T2 then there is some instance of T1, t1, that places some instance of T2, t2, onto a scale having equal unit values and a zero value that corresponds to the absence of the quality being measured."^^xsd:string ;
+ cco:example_of_usage "the barometric pressure at 1,000 feet above sea level"^^xsd:string ,
+ "the measure of air temperature on the Kelvin scale"^^xsd:string ,
+ "the number of members in an Organization"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is a ratio measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_about
+cco:is_about rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_subject_of ;
+ rdfs:domain cco:InformationContentEntity ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "A primitive relationship between an Information Content Entity and some Entity."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000136"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is about"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_excerpted_from
+cco:is_excerpted_from rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:definition "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is the bearer of some Information Content Entity C1, B2 is the bearer of some Information Content Entity C2, C1 is not identical with C2, b1 is the bearer of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is the bearer of c1 (i.e. the same Information Content Entity as borne by b1)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is excerpted from"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_geospatial_coordinate_reference_system_of
+cco:is_geospatial_coordinate_reference_system_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_reference_system_of ;
+ owl:inverseOf cco:uses_geospatial_coordinate_reference_system ;
+ rdfs:domain cco:GeospatialCoordinateReferenceSystem ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is geospatial coordinate reference system of"^^xsd:string .
+
+
+### 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 "The inverse of is a measurement of, which relates an Entity to some Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is measured by"^^xsd:string .
+
+
+### 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 "The inverse of is a interval measurement of, which relates an Entity to some Interval Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is measured by interval"^^xsd:string .
+
+
+### 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 "The inverse of is a nominal measurement of, which relates an Entity to some Nominal Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is measured by nominal"^^xsd:string .
+
+
+### 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 "The inverse of is a ordinal measurement of, which relates an Entity to some Ordinal Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is measured by ordinal"^^xsd:string .
+
+
+### 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 "The inverse of is a ratio measurement of, which relates an Entity to some Ratio Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is measured by ratio"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_measurement_unit_of
+cco:is_measurement_unit_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in ;
+ owl:inverseOf cco:uses_measurement_unit ;
+ rdfs:domain cco:MeasurementUnit ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:elucidation "An Information Bearing Entity carries the content of some corresponding Information Content Entity. In some cases of measurements, this content is composed of both some amount and the scale according to which the measurement was made."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is measurement unit of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_mention_of
+cco:is_mention_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_mentioned_by ;
+ cco:definition "An instance b1 of a Information Bearing Entity is mention of some instance c1 of some Entity or Event iff b1 is used as a reference to c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is mention of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_mentioned_by
+cco:is_mentioned_by rdf:type owl:ObjectProperty ;
+ cco:definition "An instance c1 of a Entity or Event is mentioned by an instance b1 of some Information Bearing Entity iff b1 is used as a reference to c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is mentioned by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_reference_system_of
+cco:is_reference_system_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:inheres_in ;
+ owl:inverseOf cco:uses_reference_system ;
+ rdfs:domain cco:ReferenceSystem ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is reference system of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_subject_of
+cco:is_subject_of rdf:type owl:ObjectProperty ;
+ rdfs:range cco:InformationContentEntity ;
+ cco:definition "The inverse of is about, which relates an Entity to some Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "is subject of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/language_used_in
+cco:language_used_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:prescribes ;
+ owl:inverseOf cco:uses_language ;
+ rdfs:domain cco:Language ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:elucidation "A Language L is used in an Information Bearing Entity iff the literal value of that Information Bearing Entity is a string that is encoded according to the syntax of L."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "language used in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/prescribed_by
+cco:prescribed_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_subject_of ;
+ owl:inverseOf cco:prescribes ;
+ rdfs:range cco:DirectiveInformationContentEntity ;
+ cco:definition "The inverse of prescribes, which relates an Entity to some Directive Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "prescribed by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/prescribes
+cco:prescribes rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:is_about ;
+ rdfs:domain cco:DirectiveInformationContentEntity ;
+ cco:definition "For all types T1 and T2, if T1 prescribes T2, then there is some instance of T1, t1, that serves as a rule or guide to some instance of T2, t2 (if T2 is a type of bfo:Occurrent) or that serves as a model for some instance of T2, t2 (if T2 is a type of bfo:Continuant)."^^xsd:string ;
+ cco:example_of_usage "a blueprint serves as a model of some Artifact or Facility"^^xsd:string ,
+ "a professional code of conduct serves as a set of rules to be followed while acting in a role within that profession"^^xsd:string ,
+ "an Operations Plan serves as a guide for the tasks that need to be performed to achieve the Objectives of the Operation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "prescribes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/represented_by
+cco:represented_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:described_by ;
+ owl:inverseOf cco:represents ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:RepresentationalInformationContentEntity ;
+ cco:definition "The inverse of designates, which relates an Entity to some Representational Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "represented by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/represents
+cco:represents rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:describes ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:RepresentationalInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 represents T2 then there is some instance of T1, t1, that presents the characteristics by which some instance of T2, t2, can be recognized or visualized and moreover, there is a one-to-one correspondence between the components of t1 and t2."^^xsd:string ;
+ cco:elucidation "The relationship that is being defined here is that between a photographic image and its object, or between a written transcript and the verbal event that it transcribes."^^xsd:string ;
+ cco:example_of_usage "a court transcript represents a courtroom proceeding"^^xsd:string ,
+ "a photograph of the Statue of Liberty represents the Statue of Liberty"^^xsd:string ,
+ "a video of a sporting event represents that sporting event"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "represents"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/set_described_by
+cco:set_described_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:described_by ;
+ rdfs:domain cco:MeasurementInformationContentEntity ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "set described by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/set_described_by_expected_element
+cco:set_described_by_expected_element rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:set_described_by ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "set described by expected element"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/set_described_by_ordinality
+cco:set_described_by_ordinality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:set_described_by ;
+ rdfs:domain cco:OrdinalMeasurementInformationContentEntity ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "set described by ordinality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/set_described_by_proportion
+cco:set_described_by_proportion rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:set_described_by ;
+ rdfs:domain cco:ProportionalRatioMeasurementInformationContentEntity ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "set described by proportion"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/time_zone_identifier_used_by
+cco:time_zone_identifier_used_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:uses_time_zone_identifier ;
+ rdfs:domain cco:TimeZoneIdentifier ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "time zone identifier used by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/uses_geospatial_coordinate_reference_system
+cco:uses_geospatial_coordinate_reference_system rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:uses_reference_system ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:GeospatialCoordinateReferenceSystem ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "uses geospatial coordinate reference system"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/uses_language
+cco:uses_language rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:prescribed_by ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:Language ;
+ cco:elucidation "An Information Bearing Entity uses language L iff the literal value of that Information Bearing Entity is a string that is encoded according to the syntax of L."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "uses language"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/uses_measurement_unit
+cco:uses_measurement_unit rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:bearer_of ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:MeasurementUnit ;
+ cco:elucidation "An Information Bearing Entity carries the content of some corresponding Information Content Entity. In some cases of measurements, this content is composed of both some amount and the scale according to which the measurement was made."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "uses measurement unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/uses_reference_system
+cco:uses_reference_system rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:bearer_of ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:ReferenceSystem ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "uses reference system"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/uses_time_zone_identifier
+cco:uses_time_zone_identifier rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:TimeZoneIdentifier ;
+ cco:definition "An object property holding between an Information Bearing Entity and a Time Zone Identifier which designates which time zone is being referred to in the date time string attached to the Information Bearing Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "uses time zone identifier"^^xsd:string .
+
+
+#################################################################
+# Data properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_URI_value
+cco:has_URI_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:anyURI ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has URI value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_boolean_value
+cco:has_boolean_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:boolean ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has boolean value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_date_value
+cco:has_date_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has date value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_datetime_value
+cco:has_datetime_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:dateTime ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has datetime value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_decimal_value
+cco:has_decimal_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:decimal ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has decimal value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_double_value
+cco:has_double_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:double ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has double value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_integer_value
+cco:has_integer_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:integer ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has integer value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_text_value
+cco:has_text_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:string ;
+ cco:definition "A relationship between an Information Bearing Entity and a string representation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "has text value"^^xsd:string .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AbbreviatedName
+cco:AbbreviatedName rdf:type owl:Class ;
+ rdfs:subClassOf cco:DesignativeName ;
+ cco:definition "A Designative Name that is a shortened form of a Proper Name."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Abbreviated Name"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Acronym
+cco:Acronym rdf:type owl:Class ;
+ rdfs:subClassOf cco:AbbreviatedName ;
+ cco:definition "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."^^xsd:string ;
+ cco:example_of_usage "Wi-Fi, ASCII, OPSEC"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Acronym"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Algorithm
+cco:Algorithm rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective." ;
+ cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Algorithm"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArbitraryIdentifier
+cco:ArbitraryIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:NonNameIdentifier ;
+ owl:disjointWith cco:CodeIdentifier ;
+ cco:alternative_label "Arbitrary ID"^^xsd:string ;
+ cco:definition "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Arbitrary Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactVersionOrdinality
+cco:ArtifactVersionOrdinality rdf:type owl:Class ;
+ rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "An Ordinal Measurement Information Content Entity that is about the form of an Artifact which differs in some respects from previous or future forms of that Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Artifact Version Ordinality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ArtificialLanguage
+cco:ArtificialLanguage rdf:type owl:Class ;
+ rdfs:subClassOf cco:Language ;
+ owl:disjointWith cco:NautralLanguage ;
+ cco:definition "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Constructed_language"^^xsd:string ;
+ cco:example_of_usage "Esperanto"^^xsd:string ,
+ "Python Programming Language"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Artificial Language"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BoundingBoxPointIdentifier
+cco:BoundingBoxPointIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:BoundingBoxPoint
+ ] ;
+ rdfs:subClassOf cco:GeospatialPositionIdentifier ;
+ cco:definition "A Geospatial Position Identifier that designates some Bounding Box Point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Bounding Box Point Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarDateIdentifier
+cco:CalendarDateIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:DateIdentifier ;
+ cco:definition "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."^^xsd:string ;
+ cco:example_of_usage "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Calendar Date Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarSystem
+cco:CalendarSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:TemporalReferenceSystem ;
+ cco:definition "A Temporal Reference System that is designed to organize and identify dates."^^xsd:string ;
+ cco:elucidation "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Calendar System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CartesianCoordinateSystem
+cco:CartesianCoordinateSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpatialReferenceSystem ;
+ cco:alternative_label "Rectangular Coordinate System"^^xsd:string ;
+ cco:definition "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cartesian_coordinate_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Cartesian Coordinate System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CityIdentifier
+cco:CityIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:City
+ ] ;
+ rdfs:subClassOf cco:SubNationalEntityIdentifier ;
+ cco:definition "A Sub-National Entity Identifier that designates some City."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "City Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CityPartIdentifier
+cco:CityPartIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:CityPart
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPartIdentifier ;
+ cco:definition "A Geopolitical Entity Part Identifier that designates some City Part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "City Part Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CivilTimeReferenceSystem
+cco:CivilTimeReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:TemporalReferenceSystem ;
+ cco:definition "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."^^xsd:string ,
+ "Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."^^xsd:string ;
+ rdfs:label "Civil Time Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ClockTimeSystem
+cco:ClockTimeSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:TemporalReferenceSystem ;
+ cco:definition "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."^^xsd:string ;
+ rdfs:label "Clock Time System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CodeIdentifier
+cco:CodeIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:NonNameIdentifier ;
+ cco:alternative_label "Code ID"^^xsd:string ,
+ "ID Code"^^xsd:string ,
+ "Identifier Code"^^xsd:string ;
+ cco:definition "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Code Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ContinentIdentifier
+cco:ContinentIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Continent
+ ] ;
+ rdfs:subClassOf cco:GeospatialRegionIdentifier ;
+ cco:definition "A Geospatial Region Identifier that designates some Continent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Continent Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CountMeasurementInformationContentEntity
+cco:CountMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Count Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CountryIdentifier
+cco:CountryIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Country
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityIdentifier ;
+ cco:definition "A Geopolitical Entity Identifier that designates some Country."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Country Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CountryPartIdentifier
+cco:CountryPartIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:CountryPart
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPartIdentifier ;
+ cco:definition "A Geopolitical Entity Part Identifier that designates some Country Part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Country Part Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DataRangeIntervalEstimateInformationContentEntity
+cco:DataRangeIntervalEstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:IntervalEstimateInformationContentEntity ;
+ cco:definition "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Data Range Interval Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DateIdentifier
+cco:DateIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Day
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:alternative_label "Day Identifier"^^xsd:string ;
+ cco:definition "A Temporal Interval Identifier that designates some Day."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Date Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecadeIdentifier
+cco:DecadeIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Decade
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Decade."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Decade Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecimalDateIdentifier
+cco:DecimalDateIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:DateIdentifier ;
+ cco:definition "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Decimal Date Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecimalTimeOfDayIdentifier
+cco:DecimalTimeOfDayIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimeOfDayIdentifier ;
+ cco:alternative_label "Fractional Time of Day Identifier"^^xsd:string ;
+ cco:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Decimal Time of Day Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DescriptiveInformationContentEntity
+cco:DescriptiveInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:InformationContentEntity ;
+ owl:disjointWith cco:DesignativeInformationContentEntity ,
+ cco:DirectiveInformationContentEntity ;
+ cco:alternative_label "Descriptive ICE"^^xsd:string ;
+ cco:definition "An Information Content Entity that consists of a set of propositions that describe some Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Descriptive Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DesignativeInformationContentEntity
+cco:DesignativeInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:InformationContentEntity ;
+ owl:disjointWith cco:DirectiveInformationContentEntity ;
+ cco:alternative_label "Designative ICE"^^xsd:string ;
+ cco:definition "An Information Content Entity that consists of a set of symbols that denote some Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Designative Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DesignativeName
+cco:DesignativeName rdf:type owl:Class ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ owl:disjointWith cco:NonNameIdentifier ;
+ cco:alternative_label "Name"^^xsd:string ;
+ cco:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Designative Name"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DeviationMeasurementInformationContentEntity
+cco:DeviationMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ cco:alternative_label "Conformance Measurement"^^xsd:string ,
+ "Degree of Conformance"^^xsd:string ,
+ "Degree of Deviation"^^xsd:string ,
+ "Deviation Measurement"^^xsd:string ;
+ cco:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."^^xsd:string ;
+ cco:elucidation "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."^^xsd:string ;
+ cco:example_of_usage "a missile impact deviates from its target location by 100 feet"^^xsd:string ,
+ "a satellite deviaties from its predicted orbital path by 5 kilometers"^^xsd:string ,
+ "an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."^^xsd:string ,
+ "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."^^xsd:string ;
+ rdfs:label "Deviation Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DiminutiveName
+cco:DiminutiveName rdf:type owl:Class ;
+ rdfs:subClassOf cco:AbbreviatedName ;
+ cco:definition "An Abbreviated Name that is a familiar form of a Proper Name."^^xsd:string ;
+ cco:elucidation "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."^^xsd:string ;
+ cco:example_of_usage "Alex, Bob, Cathy"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Diminutive Name"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DirectiveInformationContentEntity
+cco:DirectiveInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:InformationContentEntity ;
+ cco:alternative_label "Directive ICE"^^xsd:string ;
+ cco:definition "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Directive Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DistanceMeasurementInformationContentEntity
+cco:DistanceMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."^^xsd:string ;
+ cco:elucidation "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."^^xsd:string ,
+ "Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Distance Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EstimateInformationContentEntity
+cco:EstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ cco:alternative_label "Estimate"^^xsd:string ,
+ "Estimate Measurement Information Content Entity"^^xsd:string ,
+ "Estimated Value"^^xsd:string ;
+ cco:definition "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EventStatusNominalInformationContentEntity
+cco:EventStatusNominalInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:NominalMeasurementInformationContentEntity ;
+ cco:definition "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."^^xsd:string ;
+ cco:example_of_usage "proposed, approved, planned, in progress, completed, failed, or successful"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Event Status Nominal Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntityBorderIdentifier
+cco:GeopoliticalEntityBorderIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeopoliticalEntityBorder
+ ] ;
+ rdfs:subClassOf cco:GeospatialBoundaryIdentifier ;
+ cco:definition "A Geospatial Boundary Identifier that designates some Geopolitical Entity Border."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geopolitical Entity Border Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntityIdentifier
+cco:GeopoliticalEntityIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeopoliticalEntity
+ ] ;
+ rdfs:subClassOf cco:GeospatialRegionIdentifier ;
+ cco:definition "A Geospatial Region Identifier that desginates some Geopolitical Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geopolitical Entity Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntityPartIdentifier
+cco:GeopoliticalEntityPartIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeopoliticalEntityPart
+ ] ;
+ rdfs:subClassOf cco:GeospatialRegionIdentifier ;
+ cco:definition "A Geospatial Region Identifier that designates some Geopolitical Entity Part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geopolitical Entity Part Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialBoundaryIdentifier
+cco:GeospatialBoundaryIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeospatialBoundary
+ ] ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:definition "A Designative Information Content Entity that designates some Geospatial Boundary."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Boundary Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialCoordinateReferenceSystem
+cco:GeospatialCoordinateReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpatialReferenceSystem ;
+ cco:alternative_label "Geographic Coordinate System"^^xsd:string ;
+ cco:definition "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Coordinate Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLocationIdentifier
+cco:GeospatialLocationIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeospatialLocation
+ ] ;
+ rdfs:subClassOf cco:GeospatialRegionIdentifier ;
+ cco:definition "A Geospatial Region Identifier that designates some Geospatial Location."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Location Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPositionIdentifier
+cco:GeospatialPositionIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeospatialPosition
+ ] ;
+ cco:definition "A Designative Information Content Entity that designates some Geospatial Position"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Position Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBoxIdentifier
+cco:GeospatialRegionBoundingBoxIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeospatialRegionBoundingBox
+ ] ;
+ rdfs:subClassOf cco:GeospatialBoundaryIdentifier ;
+ cco:definition "A Geospatial Boundary Identifier that designates some Geospatial Region Bounding Box."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Region Bounding Box Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBoxIdentifierList
+cco:GeospatialRegionBoundingBoxIdentifierList rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnitOfGeocoordinate ;
+ cco:definition "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Region Bounding Box Identifier List"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionIdentifier
+cco:GeospatialRegionIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:GeospatialRegion
+ ] ;
+ rdfs:subClassOf cco:SiteIdentifier ;
+ cco:definition "A Site Identifier that designates some Geospatial Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Geospatial Region Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GreenwichMeanTimeZoneIdentifier
+cco:GreenwichMeanTimeZoneIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimeZoneIdentifier ;
+ cco:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."^^xsd:string ;
+ rdfs:label "Greenwich Mean Time Zone Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HourIdentifier
+cco:HourIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Hour
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Hour."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Hour Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity
+cco:InformationBearingEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:bearer_of ;
+ owl:someValuesFrom cco:InformationContentEntity
+ ] ;
+ rdfs:subClassOf obo:BFO_0000030 ;
+ cco:alternative_label "IBE"^^xsd:string ;
+ cco:definition "An Object upon which an Information Content Entity generically depends."^^xsd:string ;
+ cco:definition_source "http://purl/obolibrary.org/obo/IAO_0000178"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Information Bearing Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationContentEntity
+cco:InformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_about ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf obo:BFO_0000031 ;
+ cco:alternative_label "ICE"^^xsd:string ;
+ cco:definition "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000030"^^xsd:string ;
+ cco:elucidation "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different bearers of the same information content. It is this content that is generically dependent upon its bearer. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationQualityEntity
+cco:InformationQualityEntity rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:inheres_in ;
+ owl:someValuesFrom cco:InformationBearingEntity
+ ] ;
+ cco:alternative_label "IQE"^^xsd:string ;
+ cco:definition "A Quality that concretizes some Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."^^xsd:string ;
+ rdfs:label "Information Quality Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationStructureEntity
+cco:InformationStructureEntity rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000031 ;
+ cco:definition "A Generically Dependent Continuant that is not an Information Content Entity (ICE) but which is complemented or complementable by some ICE to create another ICE."^^xsd:string ;
+ cco:example_of_usage "a blank page in a document"^^xsd:string ,
+ "a cell in a spreadsheet"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Information Structure Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Initialism
+cco:Initialism rdf:type owl:Class ;
+ rdfs:subClassOf cco:AbbreviatedName ;
+ cco:definition "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."^^xsd:string ;
+ cco:example_of_usage "USA, CPU, BBC"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Initialism"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IntervalEstimateInformationContentEntity
+cco:IntervalEstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:EstimateInformationContentEntity ;
+ cco:alternative_label "Interval Estimate"^^xsd:string ,
+ "Interval Estimate Measurement Information Content Entity"^^xsd:string ;
+ cco:definition "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Interval Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IntervalMeasurementInformationContentEntity
+cco:IntervalMeasurementInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_a_interval_measurement_of ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ owl:disjointWith cco:NominalMeasurementInformationContentEntity ,
+ cco:OrdinalMeasurementInformationContentEntity ,
+ cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."^^xsd:string ;
+ cco:example_of_usage "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the bearer of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:string ;
+ rdfs:label "Interval Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateFraction
+cco:JulianDateFraction rdf:type owl:Class ;
+ rdfs:subClassOf cco:DecimalTimeOfDayIdentifier ;
+ cco:alternative_label "Julian Date Time Identifier"^^xsd:string ,
+ "Julian Day Fraction"^^xsd:string ;
+ cco:definition "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Julian Date Fraction"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier
+cco:JulianDateIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:DecimalTimeOfDayIdentifier ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ro:has_part ;
+ owl:someValuesFrom cco:JulianDateFraction
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ro:has_part ;
+ owl:someValuesFrom cco:JulianDayNumber
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:JulianDate
+ ] ;
+ cco:definition "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Julian Date Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDayNumber
+cco:JulianDayNumber rdf:type owl:Class ;
+ rdfs:subClassOf cco:DecimalDateIdentifier ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:JulianDay
+ ] ;
+ cco:definition "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Julian Day Number"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Language
+cco:Language rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ;
+ cco:definition "A Directive Information Content Entity that prescribes a canonical format for communication."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Language"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LegalName
+cco:LegalName rdf:type owl:Class ;
+ rdfs:subClassOf cco:ProperName ;
+ cco:definition "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Legal Name"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LotNumber
+cco:LotNumber rdf:type owl:Class ;
+ rdfs:subClassOf cco:CodeIdentifier ;
+ cco:definition "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Lot_number"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Lot Number" .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LunarCalendarSystem
+cco:LunarCalendarSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:CalendarSystem ;
+ cco:definition "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Lunar_calendar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Lunar Calendar System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MaximumOrdinalMeasurementInformationContentEntity
+cco:MaximumOrdinalMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Maximum Ordinal Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeanPointEstimateInformationContentEntity
+cco:MeanPointEstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:PointEstimateInformationContentEntity ;
+ cco:alternative_label "Arithmetic Mean"^^xsd:string ,
+ "Average"^^xsd:string ,
+ "Mean"^^xsd:string ;
+ cco:definition "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Mean Point Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementInformationContentEntity
+cco:MeasurementInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_a_measurement_of ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
+ owl:disjointWith cco:RepresentationalInformationContentEntity ;
+ cco:alternative_label "Measurement ICE"^^xsd:string ;
+ cco:definition "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnit
+cco:MeasurementUnit rdf:type owl:Class ;
+ rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
+ cco:definition "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Measurement_unit"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfGeocoordinate
+cco:MeasurementUnitOfGeocoordinate rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit specifying the geospatial coordinates of a location."^^rdfs:Literal ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Geocoordinate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MedianPointEstimateInformationContentEntity
+cco:MedianPointEstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:PointEstimateInformationContentEntity ;
+ cco:alternative_label "Median"^^xsd:string ;
+ cco:definition "A Point Estimate of the 50th percentile of a measurement of some attribute of a population. that is a measurement of a set of values and is equal to the middle value (or, in a set containing an even number of values, the average of the two middle-most values) which separates the set into two equally populated upper and lower sets of values."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Median Point Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryTimeZoneIdentifier
+cco:MilitaryTimeZoneIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimeZoneIdentifier ;
+ cco:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Military Time Zone Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinimumOrdinalMeasurementInformationContentEntity
+cco:MinimumOrdinalMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Minimum Ordinal Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinuteIdentifier
+cco:MinuteIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Minute
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Minute."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Minute Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModePointEstimateInformationContentEntity
+cco:ModePointEstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:PointEstimateInformationContentEntity ;
+ cco:alternative_label "Mode"^^xsd:string ,
+ "Statistical Mode"^^xsd:string ;
+ cco:definition "A Nominal Measurement Information Content Entity that is a measurement of a set of values and is equal to the value(s) that occurs the most often in the set."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "While there is always at least one Mode for every set of data, it is possible for any given set of data to have multiple Modes. The Mode is typically most useful when the members of the set are all Nominal Measurement Information Content Entities."^^xsd:string ;
+ rdfs:label "Mode Point Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MonthIdentifier
+cco:MonthIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Month
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Month."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Month Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiDayTemporalIntervalIdentifier
+cco:MultiDayTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiDayTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Day Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Day Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiHourTemporalIntervalIdentifier
+cco:MultiHourTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiHourTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Hour Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Hour Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiMinuteTemporalIntervalIdentifier
+cco:MultiMinuteTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiMinuteTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Minute Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Minute Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiMonthTemporalIntervalIdentifier
+cco:MultiMonthTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiMonthTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Month Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Month Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiSecondTemporalIntervalIdentifier
+cco:MultiSecondTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiSecondTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Second Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Second Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiWeekTemporalIntervalIdentifier
+cco:MultiWeekTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiWeekTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Week Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Week Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiYearTemporalIntervalIdentifier
+cco:MultiYearTemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:MultiYearTemporalInterval
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Multi-Year Temporal Interval."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Multi-Year Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NautralLanguage
+cco:NautralLanguage rdf:type owl:Class ;
+ rdfs:subClassOf cco:Language ;
+ cco:definition "A Language that is developed and evolves through use and repetition, rather than through conscious planning or premeditation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Natural_language"^^xsd:string ;
+ cco:example_of_usage "English"^^xsd:string ,
+ "Mandarin (Chinese)"^^xsd:string ,
+ "Spanish"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Natural Language"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Nickname
+cco:Nickname rdf:type owl:Class ;
+ rdfs:subClassOf cco:DesignativeName ;
+ cco:definition "A Designative Name that is a familiar or humorous substitute for an entity's Proper Name."^^xsd:string ;
+ cco:example_of_usage "Ike, Chief, P-Fox"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Nickname"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NominalMeasurementInformationContentEntity
+cco:NominalMeasurementInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_a_nominal_measurement_of ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ owl:disjointWith cco:OrdinalMeasurementInformationContentEntity ,
+ cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "A Measurement Information Content Entity that consists of a symbol that classifies Entities according to some shared, possibly arbitrary, characteristic."^^xsd:string ;
+ cco:example_of_usage "The sentence \"January 20, 1985 was a cold day in Chicago, IL\" is the bearer of a nominal measurement."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:string ;
+ rdfs:label "Nominal Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NonNameIdentifier
+cco:NonNameIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:alternative_label "ID"^^xsd:string ,
+ "Identifier"^^xsd:string ;
+ cco:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified namespace or context, is not a Designative Name, may be automatically or randomly generated, and typically has no preexisting cultural or social significance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Non-Name Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrdinalDateIdentifier
+cco:OrdinalDateIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:DecimalDateIdentifier ;
+ cco:alternative_label "Ordinal Date"^^xsd:string ;
+ cco:definition "A Decimal Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since the beginning of the Year."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Ordinal_date"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "An Ordinal Date Identifier may or may not also contain a number indicating a specific Year. If both numbers are included, the ISO 8601 ordinal date format stipulates that the two numbers be formatted as YYYY-DDD or YYYYDDD where [YYYY] indicates a year and [DDD] is the day of that year, from 001 through 365 (or 366 in leap years)."^^xsd:string ;
+ rdfs:label "Ordinal Date Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OrdinalMeasurementInformationContentEntity
+cco:OrdinalMeasurementInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_a_ordinal_measurement_of ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ owl:disjointWith cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "A Measurement Information Content Entity that consists of a symbol that places an Entity into some rank order."^^xsd:string ;
+ cco:example_of_usage "The sentence \"The coldest day in history in Chicago, IL. is January 20, 1985.\" is the bearer of an ordinal measurment."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:string ;
+ rdfs:label "Ordinal Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PartNumber
+cco:PartNumber rdf:type owl:Class ;
+ rdfs:subClassOf cco:CodeIdentifier ;
+ cco:definition "A Code Identifier that designates a type of part whose instances are designed to be part of some Artifact."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Part Number"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PerformanceSpecification
+cco:PerformanceSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:DirectiveInformationContentEntity ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:describes_condition ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ cco:definition "A Directive Information Content Entity that prescibes some aspect of the behavior of a participant in a Process given one or more operating conditions."^^xsd:string ;
+ cco:example_of_usage "Maximum Speed at high altitude; Rate of Ascent at 10 degrees celsius with nominal payload."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Performance Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PointEstimateInformationContentEntity
+cco:PointEstimateInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:EstimateInformationContentEntity ;
+ cco:alternative_label "Best Estimate"^^xsd:string ,
+ "Point Estimate"^^xsd:string ,
+ "Point Estimate Measurement Information Content Entity"^^xsd:string ;
+ cco:definition "An Estimate Information Content Entity that consists of a single value for the measured entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Point Estimate Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PredictiveInformationContentEntity
+cco:PredictiveInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
+ cco:alternative_label "Prediction"^^xsd:string ,
+ "Prediction Information Content Entity"^^xsd:string ;
+ cco:definition "A Descriptive Information Content Entity that describes an uncertain future event."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Since predictions are inherently about not-yet-existant things, the Modal Relation Ontology term 'describes' (i.e. mro:describes) should be used (instead of the standard cco:describes) to relate instances of Predictive Information Content Entity to the entities they are about."^^xsd:string ;
+ rdfs:label "Predictive Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PriorityMeasurementInformationContentEntity
+cco:PriorityMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
+ cco:alternative_label "Criticality Measurement"^^xsd:string ,
+ "Importance Measurement"^^xsd:string ,
+ "Priority Measurement"^^xsd:string ;
+ cco:definition "An Ordinal Measurement Information Content Entity that is a measurement of the relative importance of an entity."^^xsd:string ;
+ cco:example_of_usage "low, normal, high, urgent, or immediate priority"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Priority Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PriorityScale
+cco:PriorityScale rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReferenceSystem ;
+ cco:definition "A Reference System that describes a scale used to rank or identify the importance of entities of the specified type."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Priority Scale"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProbabilityMeasurementInformationContentEntity
+cco:ProbabilityMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ cco:alternative_label "Likelihood Measurement"^^xsd:string ,
+ "Probability Measurement"^^xsd:string ;
+ cco:definition "A Measurement Information Content Entity that is a measurement of the likelihood that a Process or Process Aggregate occurs."^^xsd:string ,
+ "https://en.wikipedia.org/wiki/Probability"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Every probability measurement is made within a particular context given certain background assumptions."^^xsd:string ;
+ rdfs:label "Probability Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProperName
+cco:ProperName rdf:type owl:Class ;
+ rdfs:subClassOf cco:DesignativeName ;
+ cco:definition "A Designative Name that is an official name for a particular entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Proper Name"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProportionalRatioMeasurementInformationContentEntity
+cco:ProportionalRatioMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "A Ratio Measurement Information Content Entity that is a measurement of a portion of a whole (described by the numerator) compared against that whole (described by the denominator) where the whole is a nominally described set of like entities."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "A percentage is one way to express a proportional measure where the decimal expression of the proportion is multiplied by 100, thus giving the proportional value with respect to a whole of 100. E.g., the ratio of pigs to cows on a farm is 44 to 79 (44:79 or 44/79). The proportion of pigs to total animals is 44 to 123 or 44/123. The percentage of pigs is the decimal equivalent of the proportion (0.36) multiplied by a 100 (36%). The percentage can be expressed as a proportion where the numerator value is transformed for a denominator of 100, i.e., 36 of a 100 animals are pigs (36/100)."^^xsd:string ,
+ "We may want to add either a subclass for Percentage or a data property (has percentage value) that links the percentage expression for a proportion to the relevant IBE."^^xsd:string ;
+ rdfs:label "Proportional Ratio Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProvinceIdentifier
+cco:ProvinceIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Province
+ ] ;
+ rdfs:subClassOf cco:SubNationalEntityIdentifier ;
+ cco:definition "A Sub-National Entity Identifier that designates some Province."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Province Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ProvincePartIdentifier
+cco:ProvincePartIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:ProvincePart
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPartIdentifier ;
+ cco:definition "A Geopolitical Entity Part Identifier that designates some Province Part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Province Part Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RatioMeasurementInformationContentEntity
+cco:RatioMeasurementInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:is_a_ratio_measurement_of ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ cco:definition "A Measurement Information Content Entity that consists of a symbol that places a Quality of an Entity onto an interval scale having a true zero value."^^xsd:string ;
+ cco:example_of_usage "The sentence \"The temperature reached 240.372 degrees Kelvin on January 20, 1985 in Chicago, IL.\" is the bearer of a ratio measurement as 0 degrees on the Kelvin scale does describe absolute zero."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:string ;
+ rdfs:label "Ratio Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceSystem
+cco:ReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
+ cco:definition "A Descriptive Information Content Entity that describes a set of standards for organizing and understanding data of the specified type or domain."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReliabilityMeasurementInformationContentEntity
+cco:ReliabilityMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ cco:alternative_label "Accuracy of Process"^^xsd:string ,
+ "Reliability Measurement"^^xsd:string ;
+ cco:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity can consistently produce an outcome."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Reliability_(statistics)"^^xsd:string ;
+ cco:elucidation "Reliability concerns both a measure of past performance and the expectation that future performance will conform to the range of past performances."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance ('Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."^^xsd:string ;
+ rdfs:label "Reliability Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RepresentationalInformationContentEntity
+cco:RepresentationalInformationContentEntity rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:represents ;
+ owl:someValuesFrom obo:BFO_0000001
+ ] ;
+ rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
+ cco:definition "A Descriptive Information Content Entity that consists of a set of propositions or an image that represents some Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Representational Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SecondIdentifier
+cco:SecondIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Second
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Second."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Second Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SequencePositionOrdinality
+cco:SequencePositionOrdinality rdf:type owl:Class ;
+ rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "An Ordinal Measurement Information Content Entity that is about the position of some entity in some ordered sequence."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Sequence Position Ordinality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SiderealTimeReferenceSystem
+cco:SiderealTimeReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:TemporalReferenceSystem ;
+ cco:definition "A Temporal Reference System that is based on Earth's rate of rotation measured relative to one or more fixed Stars (rather than the Sun)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Sidereal Time is the angle measured from an observer's meridian along the celestial equator to the Great Circle that passes through the March equinox and both poles. This angle is usually expressed in Hours, Minutes, and Seconds."^^xsd:string ;
+ rdfs:label "Sidereal Time Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SiteIdentifier
+cco:SiteIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom obo:BFO_0000029
+ ] ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:definition "A Designative Information Content Entity that designates some Site."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Site Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolarCalendarSystem
+cco:SolarCalendarSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:CalendarSystem ;
+ cco:definition "A Calendar System that is designed to organize and identify dates based on the cycles of an Astronomical Body's Orbit around the Sun."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Solar_calendar"^^xsd:string ;
+ cco:elucidation "Unless otherwise specified, a Solar Calendar System is assumed to be relative to the Orbit of the Earth around the Sun."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Solar Calendar System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolarTimeReferenceSystem
+cco:SolarTimeReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:TemporalReferenceSystem ;
+ cco:definition "A Temporal Reference System that is based on the position of the Sun in the sky."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Solar Time Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SpatialReferenceSystem
+cco:SpatialReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReferenceSystem ;
+ cco:alternative_label "Coordinate System"^^xsd:string ,
+ "Spatial Coordinate System"^^xsd:string ,
+ "Spatial Reference Frame"^^xsd:string ;
+ cco:definition "A Reference System that describes a set of standards for uniquely identifying the position of an entity or the direction of a vector within a defined spatial region by means of measurements along one or more Coordinate System Axes."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Coordinate_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Note that, while reference systems and reference frames are treated as synonyms here, some people treat them as related but separate entities. See: http://www.ggos-portal.org/lang_en/GGOS-Portal/EN/Topics/GeodeticApplications/GeodeticReferenceSystemsAndFrames/GeodeticReferenceSystemsAndFrames.html"^^xsd:string ;
+ rdfs:label "Spatial Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SpatialRegionIdentifier
+cco:SpatialRegionIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom obo:BFO_0000006
+ ] ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:definition "A Designative Information Content Entity that designates some Spatial Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Spatial Region Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SphericalCoordinateSystem
+cco:SphericalCoordinateSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpatialReferenceSystem ;
+ cco:definition "A Spatial Reference System for three-dimensional spatial regions that identifies each point using an ordered triple of numerical coordinates that consist of the radial distance of the point of interest from a fixed origin, its polar angle measured from a fixed zenith direction, and the azimuth angle of its orthogonal projection measured from a fixed direction on a reference plane that passes through the origin and is orthogonal to the zenith."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Spherical_coordinate_system"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Spherical Coordinate System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StandardTimeOfDayIdentifier
+cco:StandardTimeOfDayIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimeOfDayIdentifier ;
+ cco:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using the Hours, Minutes, and Seconds of the Day that preceded the Temporal Instant."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Standard Time of Day Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StateIdentifier
+cco:StateIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:State
+ ] ;
+ rdfs:subClassOf cco:SubNationalEntityIdentifier ;
+ cco:definition "A Sub-National Entity Identifier that designates some State."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "State Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StatePartIdentifier
+cco:StatePartIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:StatePart
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityPartIdentifier ;
+ cco:definition "A Geopolitical Entity Part Identifier that designates some State Part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "State Part Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SubNationalEntityIdentifier
+cco:SubNationalEntityIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:FirstOrderAdministrativeRegion
+ ] ;
+ rdfs:subClassOf cco:GeopoliticalEntityIdentifier ;
+ cco:definition "A Geopolitical Entity Identifier that designates some Sub-National Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Sub-National Entity Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SubcontinentIdentifier
+cco:SubcontinentIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Subcontinent
+ ] ;
+ rdfs:subClassOf cco:GeospatialRegionIdentifier ;
+ cco:definition "A Geospatial Region Identifier that designates some Subcontinent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Subcontinent Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TemporalInstantIdentifier
+cco:TemporalInstantIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom obo:BFO_0000148
+ ] ;
+ rdfs:subClassOf cco:TemporalRegionIdentifier ;
+ cco:alternative_label "Zero-Dimensional Temporal Region Identifier"^^xsd:string ;
+ cco:definition "A Temporal Region Identifier that designates some Zero-Dimensional Temporal Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Temporal Instant Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TemporalIntervalIdentifier
+cco:TemporalIntervalIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom obo:BFO_0000038
+ ] ;
+ rdfs:subClassOf cco:TemporalRegionIdentifier ;
+ cco:alternative_label "One-Dimensional Temporal Region Identifier"^^xsd:string ;
+ cco:definition "A Temporal Region Identifier that designates some One-Dimensional Temporal Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Temporal Interval Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TemporalReferenceSystem
+cco:TemporalReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:ReferenceSystem ;
+ cco:alternative_label "Temporal Reference Frame"^^xsd:string ,
+ "Time Scale"^^xsd:string ;
+ cco:definition "A Reference System that describes a set of standards for measuring time as well as understanding the context of and organizing temporal data."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Temporal Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TemporalRegionIdentifier
+cco:TemporalRegionIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom obo:BFO_0000008
+ ] ;
+ rdfs:subClassOf cco:DesignativeInformationContentEntity ;
+ cco:definition "A Designative Information Content Entity that designates some Temporal Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Temporal Region Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDayIdentifier
+cco:TimeOfDayIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:TimeOfDay
+ ] ;
+ rdfs:subClassOf cco:TemporalInstantIdentifier ;
+ cco:definition "A Temporal Instant Identifier that designates some Time of Day."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Time of Day Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TimeZoneIdentifier
+cco:TimeZoneIdentifier rdf:type owl:Class ;
+ rdfs:subClassOf cco:SpatialRegionIdentifier ;
+ cco:definition "A Spatial Region Identifier that designates the region associated with some uniform standard time for legal, commercial, or social purposes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment """Standards of date, time, and time zone data formats:
+ISO/WD 8601-2 (http://www.loc.gov/standards/datetime/iso-tc154-wg5_n0039_iso_wd_8601-2_2016-02-16.pdf)
+W3C (https://www.w3.org/TR/NOTE-datetime)"""^^xsd:string ,
+ "There is no class 'Time Zone' (the region), only 'Time Zone Identifier' (the designator for some region). Instances of 'Time Zone Identifier' should be related to instances of 'Information Bearing Entity' by means of the object properites 'uses time zone identifier' and 'time zone identifier used by' as appropriate. This is supposed to be analogous to the way we represent the relationship between measurement values and measurement units, where the relevant instance of Information Bearing Entity 'uses measurement unit' some instance of Measurement Unit (i.e., an instance of Information Content Entity)."^^xsd:string ;
+ rdfs:label "Time Zone Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTimeReferenceSystem
+cco:UniversalTimeReferenceSystem rdf:type owl:Class ;
+ rdfs:subClassOf cco:SolarTimeReferenceSystem ;
+ cco:acronym "UT"^^xsd:string ;
+ cco:definition "A Solar Time Reference System that is based on the average speed of the Earth's rotation and which uses the prime meridian at 0° longitude as a reference point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Universal Time Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VeracityMeasurementInformationContentEntity
+cco:VeracityMeasurementInformationContentEntity rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementInformationContentEntity ;
+ cco:alternative_label "Accuracy of Information"^^xsd:string ,
+ "Trueness Measurement"^^xsd:string ,
+ "Veracity Measurement"^^xsd:string ;
+ cco:definition "A Measurement Information Content Entity that is a measurement of the extent to which a description conforms to the reality it describes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."^^xsd:string ,
+ "Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information ('Veracity Measurement Information Content Entity'), and adherance-to-expectations (see: 'Deviation Measurement Information Content Entity')."^^xsd:string ;
+ rdfs:label "Veracity Measurement Information Content Entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WeekIdentifier
+cco:WeekIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Week
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Week."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Week Identifier"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/YearIdentifier
+cco:YearIdentifier rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:designates ;
+ owl:someValuesFrom cco:Year
+ ] ;
+ rdfs:subClassOf cco:TemporalIntervalIdentifier ;
+ cco:definition "A Temporal Interval Identifier that designates some Year."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Year Identifier"^^xsd:string .
+
+
+#################################################################
+# Individuals
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AlphaTimeZone
+cco:AlphaTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "A"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+1"^^xsd:string ;
+ rdfs:label "Alpha Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BarycentricCoordinateTime
+cco:BarycentricCoordinateTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "TCB"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment """\"Barycentric Coordinate Time (TCB, from the French Temps-coordonnée barycentrique) is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to orbits of planets, asteroids, comets, and interplanetary spacecraft in the Solar system. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the barycenter of the Solar system: that is, a clock that performs exactly the same movements as the Solar system but is outside the system's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Sun and the rest of the system.\"
+From: (https://en.wikipedia.org/wiki/Barycentric_Coordinate_Time)"""^^xsd:string ;
+ rdfs:label "Barycentric Coordinate Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BarycentricDynamicalTime
+cco:BarycentricDynamicalTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "TDB"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "TDB is a linear scaling of Barycentric Coordinate Time (TCB) and is a relativistic coordinate time scale used in astronomy as a time standard that accounts for time dilation when calculating Orbits and Ephemerides of Astronomical Bodies and interplanetary Spacecraft in the Solar System. TDB is a successor of Ephemeris Time (ET) and is nearly equivalent to the time scale Teph used for DE405 planetary and lunar ephemerides generated by the Jet Propulsion Laboratory."^^xsd:string ;
+ rdfs:label "Barycentric Dynamical Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BravoTimeZone
+cco:BravoTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "B"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+2"^^xsd:string ;
+ rdfs:label "Bravo Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CharlieTimeZone
+cco:CharlieTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "C"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+3"^^xsd:string ;
+ rdfs:label "Charlie Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoordinatedUniversalTime
+cco:CoordinatedUniversalTime rdf:type owl:NamedIndividual ,
+ cco:CivilTimeReferenceSystem ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UTC"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "UTC is a variant of Universal Time that is calculated by combining Universal Time 1 with International Atomic Time by occasionally adding leap seconds to TAI in order to maintain UTC within 0.9 seconds of UT1. The difference between UTC and UT1 is called DUT1 and always has a value between -0.9 seconds and +0.9 seconds. Coordinated Universal Time is the current basis for civil time and is the reference time for time zones, whose local times are defined based on an offset from UTC."^^xsd:string ;
+ rdfs:label "Coordinated Universal Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DeltaTimeZone
+cco:DeltaTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "D"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+4"^^xsd:string ;
+ rdfs:label "Delta Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EarthCenteredEarthFixedCoordinateSystem
+cco:EarthCenteredEarthFixedCoordinateSystem rdf:type owl:NamedIndividual ,
+ cco:CartesianCoordinateSystem ,
+ cco:GeospatialCoordinateReferenceSystem ;
+ cco:alternative_label "Conventional Terrestrial Coordinate System"^^xsd:string ,
+ "ECEF"^^xsd:string ,
+ "ECR"^^xsd:string ,
+ "Earth Centered Earth Fixed"^^xsd:string ,
+ "Earth Centered Rotational Coordinate System"^^xsd:string ,
+ "Earth-Centered Earth-Fixed"^^xsd:string ,
+ "Earth-Centered, Earth-Fixed"^^xsd:string ;
+ cco:definition "A Geospatial and Cartesian Coordinate System that identifies positions using an x-axis, y-axis, and z-axis coordinate where the zero point is the center of the Earth, the z-Axis extends toward the North Pole but does not always coincide exactly with the Earth's Axis of Rotation, the x-Axis extends through the intersection of the Prime Meridian and the Equator, the y-Axis completes the right-handed system, and all three axes are fixed to the Earth such that they rotate along with the Earth."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/ECEF"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Earth-Centered Earth-Fixed Coordinate System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EchoTimeZone
+cco:EchoTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "E"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+5"^^xsd:string ;
+ rdfs:label "Echo Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EphemerisTime
+cco:EphemerisTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "ET"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "ET is an astronomical time scale that was adopted as a standard in 1952 by the IAU but has since been superseded and is no longer actively used. ET is based on the ephemeris second, which was defined as a fraction of the tropical year for 1900 January 01 as calculated using Newcomb's 1895 tables of the Sun. ET was designed to avoid problems caused by variations in Earth's rotational period and was used for Solar System ephemeris calculations until being replaced by Terrestrial Dynamical Time (TDT) in 1979."^^xsd:string ;
+ rdfs:label "Ephemeris Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FoxtrotTimeZone
+cco:FoxtrotTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "F"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+6"^^xsd:string ;
+ rdfs:label "Foxtrot Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMT
+cco:GMT rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "Greenwich Mean Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+0"^^xsd:string ;
+ rdfs:label "GMT"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus0330
+cco:GMTminus0330 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:acronym "NST"^^xsd:string ;
+ cco:alternative_label "Newfoundland Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-3:30"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus1
+cco:GMTminus1 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "CAT"^^xsd:string ,
+ "Central African Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-1"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus10
+cco:GMTminus10 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "HST"^^xsd:string ,
+ "Hawaii Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-10"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus11
+cco:GMTminus11 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "MIT"^^xsd:string ,
+ "Midway Islands Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-11"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus2
+cco:GMTminus2 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "BET"^^xsd:string ,
+ "Brazil Eastern Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-2"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus3
+cco:GMTminus3 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "AGT"^^xsd:string ,
+ "Argentina Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-3"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus4
+cco:GMTminus4 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "PRT"^^xsd:string ,
+ "Puerto Rico and US Virgin Islands Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-4"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus5
+cco:GMTminus5 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "EST"^^xsd:string ,
+ "Eastern Standard Time"^^xsd:string ,
+ "IET"^^xsd:string ,
+ "Indiana Eastern Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-5"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus6
+cco:GMTminus6 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "CST"^^xsd:string ,
+ "Central Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-6"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus7
+cco:GMTminus7 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "MST"^^xsd:string ,
+ "Mountain Standard Time"^^xsd:string ,
+ "PNT"^^xsd:string ,
+ "Phoenix Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-7"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus8
+cco:GMTminus8 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "PST"^^xsd:string ,
+ "Pacific Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-8"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTminus9
+cco:GMTminus9 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "AST"^^xsd:string ,
+ "Alaska Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT-9"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus0330
+cco:GMTplus0330 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:acronym "IRST"^^xsd:string ,
+ "IT"^^xsd:string ;
+ cco:alternative_label "Iran Standard Time"^^xsd:string ,
+ "Iran Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+3:30"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus0530
+cco:GMTplus0530 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:acronym "IST"^^xsd:string ,
+ "SLST"^^xsd:string ;
+ cco:alternative_label "Indian Standard Time"^^xsd:string ,
+ "Sri Lanka Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+5:30"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus0930
+cco:GMTplus0930 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:acronym "ACST"^^xsd:string ;
+ cco:alternative_label "Australian Central Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+9:30"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus1
+cco:GMTplus1 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "ECT"^^xsd:string ,
+ "European Central Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+1"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus10
+cco:GMTplus10 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "AET"^^xsd:string ,
+ "Australia Eastern Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+10"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus11
+cco:GMTplus11 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "SST"^^xsd:string ,
+ "Solomon Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+11"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus12
+cco:GMTplus12 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "NST"^^xsd:string ,
+ "New Zealand Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+12"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus2
+cco:GMTplus2 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "EET"^^xsd:string ,
+ "Eastern European Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+2"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus3
+cco:GMTplus3 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "EAT"^^xsd:string ,
+ "Eastern African Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+3"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus4
+cco:GMTplus4 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "NET"^^xsd:string ,
+ "Near East Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+4"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus5
+cco:GMTplus5 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "PLT"^^xsd:string ,
+ "Pakistan Lahore Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+5"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus6
+cco:GMTplus6 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "BST"^^xsd:string ,
+ "Bangladesh Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+6"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus7
+cco:GMTplus7 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "VST"^^xsd:string ,
+ "Vietnam Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+7"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus8
+cco:GMTplus8 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "CTT"^^xsd:string ,
+ "China Taiwan Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+8"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GMTplus9
+cco:GMTplus9 rdf:type owl:NamedIndividual ,
+ cco:GreenwichMeanTimeZoneIdentifier ;
+ cco:alternative_label "JST"^^xsd:string ,
+ "Japan Standard Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "GMT+9"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeocentricCoordinateTime
+cco:GeocentricCoordinateTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "TCG"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment """\"TCG is a coordinate time standard intended to be used as the independent variable of time for all calculations pertaining to precession, nutation, the Moon, and artificial satellites of the Earth. It is equivalent to the proper time experienced by a clock at rest in a coordinate frame co-moving with the center of the Earth: that is, a clock that performs exactly the same movements as the Earth but is outside the Earth's gravity well. It is therefore not influenced by the gravitational time dilation caused by the Earth.\"
+From: (https://en.wikipedia.org/wiki/Geocentric_Coordinate_Time)"""^^xsd:string ;
+ rdfs:label "Geocentric Coordinate Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GlobalAreaReferenceSystem
+cco:GlobalAreaReferenceSystem rdf:type owl:NamedIndividual ,
+ cco:GeospatialCoordinateReferenceSystem ;
+ cco:acronym "GARS"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Global Area Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GolfTimeZone
+cco:GolfTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "G"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+7"^^xsd:string ;
+ rdfs:label "Golf Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GregorianCalendar
+cco:GregorianCalendar rdf:type owl:NamedIndividual ,
+ cco:SolarCalendarSystem ;
+ cco:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years except Years that are evenly divisible by 100 but not 400 such that there are 97 leap Years every 400 Years and the average length of a Gregorian Year is 365.2425 Days (365 Days 5 Hours 49 Minutes 12 Seconds)."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Gregorian_calendar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "The Gregorian Calendar was instituted by Pope Gregory XIII via papal bull on 24 February 1582 as a reform of the Julian Calendar to stop the drift of the calendar with respect to the equinoxes and solstices. The Gregorian Calendar is currently the most widely used civil Calendar System in the world and is 13 days ahead of the Julian Calendar Date."^^xsd:string ;
+ rdfs:label "Gregorian Calendar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HotelTimeZone
+cco:HotelTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "H"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+8"^^xsd:string ;
+ rdfs:label "Hotel Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/IndiaTimeZone
+cco:IndiaTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "I"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+9"^^xsd:string ;
+ rdfs:label "India Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InternationalAtomicTime
+cco:InternationalAtomicTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "TAI"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "TAI is a time standard the values of which are generated by calculating the weighted average of the measurements of more than 400 atomic clocks and is based on the International System of Units (SI) definition of one second equals the time it takes a Cesium-133 atom at the ground state to oscillate exactly 9,192,631,770 times. TAI is extremely precise, but does not perfectly synchronize with Earth times, which is why TAI and UT1 are both used to determine UTC. TAI serves as the main realization of TT."^^xsd:string ;
+ rdfs:label "International Atomic Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InternationalTerrestrialReferenceSystem
+cco:InternationalTerrestrialReferenceSystem rdf:type owl:NamedIndividual ,
+ cco:GeospatialCoordinateReferenceSystem ;
+ cco:acronym "ITRS"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment """The ITRS definition fulfills the following conditions:
+1. It is geocentric, the center of mass being defined for the whole earth, including oceans and atmosphere.
+2. The unit of length is the metre (SI). This scale is consistent with the TCG time coordinate for a geocentric local frame, in agreement with IAU and IUGG (1991) resolutions. This is obtained by appropriate relativistic modelling.
+3. Its orientation was initially given by the BIH orientation at 1984.0.
+4. The time evolution of the orientation is ensured by using a no-net-rotation condition with regards to horizontal tectonic motions over the whole earth.
+From: (https://www.iers.org/IERS/EN/Science/ITRS/ITRS.html)"""^^xsd:string ;
+ rdfs:label "International Terrestrial Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JetPropulsionLaboratoryEphemerisTimeArgument
+cco:JetPropulsionLaboratoryEphemerisTimeArgument rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "Teph"^^xsd:string ;
+ cco:alternative_label "JPL Ephemeris Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Teph (the 'eph' is written as subscript) is an ephemeris time argument developed and calculated at the Jet Propulsion Laboratory (JPL) and implemented in a series of numerically integrated Development Ephemerides (DE), including the currently used DE405. Teph is characterized as a relativistic coordinate time that is nearly equivalent to the IAU's definition of TCB, though Teph is not currently an IAU time standard. Teph is used by the JPL to generate the ephemerides it publishes to support spacecraft navigation and astronomy."^^xsd:string ;
+ rdfs:label "Jet Propulsion Laboratory Ephemeris Time Argument"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianCalendar
+cco:JulianCalendar rdf:type owl:NamedIndividual ,
+ cco:SolarCalendarSystem ;
+ cco:definition "A Solar Calendar System that has a regular Year of 365 24-Hour Days divided into 12 Months with a leap day added at the end of February every 4 Years such that the average length of a Julian Year is 365.25 Days."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Julian_calendar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "The Julian Calendar was proposed by Julius Caesar as a reform of the Roman Calendar, took effect on 1 January 46 BC, and was the predominant Calendar System in Europe until being largely replaced by the Gregorian Calendar."^^xsd:string ;
+ rdfs:label "Julian Calendar"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulietTimeZone
+cco:JulietTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "J"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Juliet time is used as an indexical to refer to local time without otherwise specifying the time zone."^^xsd:string ;
+ rdfs:label "Juliet Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KiloTimeZone
+cco:KiloTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "K"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+10"^^xsd:string ;
+ rdfs:label "Kilo Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LimaTimeZone
+cco:LimaTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "L"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+11"^^xsd:string ;
+ rdfs:label "Lima Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MikeTimeZone
+cco:MikeTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "M"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Mike Time Zone is the same local time as Yankee Time Zone, but is 1 Day (i.e. 24 Hours) ahead of Yankee Time Zone as they are on opposite sides of the International Date Line."^^xsd:string ,
+ "Offset from Universal Coordinated Time = UTC+12"^^xsd:string ;
+ rdfs:label "Mike Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NovemberTimeZone
+cco:NovemberTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "N"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-1"^^xsd:string ;
+ rdfs:label "November Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OscarTimeZone
+cco:OscarTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "O"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-2"^^xsd:string ;
+ rdfs:label "Oscar Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PapaTimeZone
+cco:PapaTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "P"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-3"^^xsd:string ;
+ rdfs:label "Papa Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/QuebecTimeZone
+cco:QuebecTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "Q"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-4"^^xsd:string ;
+ rdfs:label "Quebec Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RomeoTimeZone
+cco:RomeoTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "R"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-5"^^xsd:string ;
+ rdfs:label "Romeo Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SierraTimeZone
+cco:SierraTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "S"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-6"^^xsd:string ;
+ rdfs:label "Sierra Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TangoTimeZone
+cco:TangoTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "T"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-7"^^xsd:string ;
+ rdfs:label "Tango Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TerrestrialTime
+cco:TerrestrialTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:acronym "TT"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "TT is an astronomical time standard that is a theoretical ideal designed to be free of the irregularities in Earth's rotation and is primarily used for time measurements of astronomical observations made from the surface of Earth. It was formerly called Terrestrial Dynamical Time (TDT), which was formulated to replace Ephemeris Time (ET)."^^xsd:string ;
+ rdfs:label "Terrestrial Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TwelveHourClockTimeSystem
+cco:TwelveHourClockTimeSystem rdf:type owl:NamedIndividual ,
+ cco:ClockTimeSystem ;
+ cco:alternative_label "12-Hour Clock"^^xsd:string ,
+ "12-Hour Clock Time System"^^xsd:string ,
+ "Twelve Hour Clock"^^xsd:string ,
+ "Twelve Hour Clock Time System"^^xsd:string ,
+ "Twelve-Hour Clock"^^xsd:string ;
+ cco:definition "A Clock Time System for keeping the Time of Day in which the Day runs from midnight to midnight and is divided into two intervals of 12 Hours each, where: the first interval begins at midnight, ends at noon, and is indicated by the suffix 'a.m.'; the second interval begins at noon, ends at midnight, and is indicated by the suffix 'p.m.'; and the midnight and noon Hours are numbered 12 with subsequent Hours numbered 1-11."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/12-hour_clock"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Twelve-Hour Clock Time System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TwentyFourHourClockTimeSystem
+cco:TwentyFourHourClockTimeSystem rdf:type owl:NamedIndividual ,
+ cco:ClockTimeSystem ;
+ cco:alternative_label "24-Hour Clock"^^xsd:string ,
+ "24-Hour Clock Time System"^^xsd:string ,
+ "Military Time"^^xsd:string ,
+ "Military Time System"^^xsd:string ,
+ "Twenty-Four Hour Clock Time System"^^xsd:string ,
+ "Twenty-Four-Hour Clock"^^xsd:string ;
+ cco:definition "A Clock Time System for time keeping in which the Day runs from midnight to midnight and is divided into 24 Hours, indicated by the Hours passed since midnight, from 0 to 23."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/24-hour_clock"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Twenty-Four-Hour Clock Time System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniformTimeZone
+cco:UniformTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "U"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-8"^^xsd:string ;
+ rdfs:label "Uniform Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime0
+cco:UniversalTime0 rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT0"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "UT0 is a variant of Universal Time that is measured by observing the diurnal motion of stars or extragalactic radio sources at a specific location on Earth. It does not take into consideration distorting factors, in particular polar motion, such that its value will differ based on the location it is measured at."^^xsd:string ;
+ rdfs:label "Universal Time 0"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime1
+cco:UniversalTime1 rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT1"^^xsd:string ;
+ cco:alternative_label "Astronomical Time"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "UT1 is a derivation of UT0 that takes into account distortions caused by polar motion and is proportional to the rotation angle of the Earth with respect to distant quasars, specifically, the International Celestial Reference Frame (ICRF). UT1 is currently the most widely used variant of Universal Time and has the same value everywhere on Earth."^^xsd:string ;
+ rdfs:label "Universal Time 1"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime1A
+cco:UniversalTime1A rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT1A"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Universal Time 1 A"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime1D
+cco:UniversalTime1D rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT1D"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Universal Time 1 D"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime1F
+cco:UniversalTime1F rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT1F"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Universal Time 1 F"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime1R
+cco:UniversalTime1R rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT1R"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "UT1R is a variant of Universal Time that is a smoothed version of UT1 by filtering out periodic variations due to tidal waves."^^xsd:string ;
+ rdfs:label "Universal Time 1 R"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTime2
+cco:UniversalTime2 rdf:type owl:NamedIndividual ,
+ cco:UniversalTimeReferenceSystem ;
+ cco:acronym "UT2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "UT2 is a variant of Universal Time that smooths UT1 by accounting for both polar motion and variations in Earth's rotation due to seasonal factors, such as changes in vegetation and water or snow distribution."^^xsd:string ;
+ rdfs:label "Universal Time 2"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UniversalTransverseMercatorReferenceSystem
+cco:UniversalTransverseMercatorReferenceSystem rdf:type owl:NamedIndividual ,
+ cco:GeospatialCoordinateReferenceSystem ;
+ cco:acronym "UTM"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "Universal Transverse Mercator Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/UnixTime
+cco:UnixTime rdf:type owl:NamedIndividual ,
+ cco:TemporalReferenceSystem ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment """Unix Time is a Temporal Reference System for describing a point in time, defined as the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC) Thursday, 1 January 1970 minus the number of leap seconds that have taken place since then.
+(See: https://en.wikipedia.org/wiki/Unix_time)"""^^xsd:string ;
+ rdfs:label "Unix Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VictorTimeZone
+cco:VictorTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "V"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-9"^^xsd:string ;
+ rdfs:label "Victor Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WhiskeyTimeZone
+cco:WhiskeyTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "W"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-10"^^xsd:string ;
+ rdfs:label "Whiskey Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WorldGeodeticSystem1984
+cco:WorldGeodeticSystem1984 rdf:type owl:NamedIndividual ,
+ cco:GeospatialCoordinateReferenceSystem ;
+ cco:acronym "WGS 84"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment """\"WGS 84 is an Earth-centered, Earth-fixed terrestrial reference system and geodetic datum. WGS 84 is based on a consistent set of constants and model parameters that describe the Earth's size, shape, and gravity and geomagnetic fields. WGS 84 is the standard U.S. Department of Defense definition of a global reference system for geospatial information and is the reference system for the Global Positioning System (GPS). It is compatible with the International Terrestrial Reference System (ITRS).\"
+From: (http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf)"""^^xsd:string ;
+ rdfs:label "World Geodetic System 1984"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WorldGeographicReferenceSystem
+cco:WorldGeographicReferenceSystem rdf:type owl:NamedIndividual ,
+ cco:GeospatialCoordinateReferenceSystem ;
+ cco:acronym "WGRS"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:label "World Geographic Reference System"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/XRayTimeZone
+cco:XRayTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "X"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-11"^^xsd:string ;
+ rdfs:label "X-ray Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/YankeeTimeZone
+cco:YankeeTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "Y"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC-12"^^xsd:string ,
+ "Yankee Time Zone is the same local time as Mike Time Zone, but is 1 Day (i.e. 24 Hours) behind Mike Time Zone as they are on opposite sides of the International Date Line."^^xsd:string ;
+ rdfs:label "Yankee Time Zone"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ZuluTimeZone
+cco:ZuluTimeZone rdf:type owl:NamedIndividual ,
+ cco:MilitaryTimeZoneIdentifier ;
+ cco:acronym "Z"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:string ;
+ rdfs:comment "Offset from Universal Coordinated Time = UTC+0"^^xsd:string ;
+ rdfs:label "Zulu Time Zone"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/ModalRelationOntology.ttl b/ModalRelationOntology.ttl
new file mode 100644
index 0000000..7953777
--- /dev/null
+++ b/ModalRelationOntology.ttl
@@ -0,0 +1,2653 @@
+@prefix : .
+@prefix cco: .
+@prefix mro: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ rdfs:label "Modal Relation Ontology"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ,
+ "Version 1.1"^^xsd:string ;
+ rdfs:comment "The modal counterparts to relations contained in the Common Core mid- and upper-level ontologies, including those imported from the OBO Relation Ontology."^^xsd:string .
+
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/accessory_in
+mro:accessory_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ owl:inverseOf mro:has_accessory ;
+ rdfs:domain obo:BFO_0000040 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "An agent a1 is accessory_in some Processual Entity p1 iff a1 assists in the commission of p1, is not located_at the location of p1, and is not agent_in p1. "^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accessory_(legal_term)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "accessory in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/accomplice_in
+mro:accomplice_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ owl:inverseOf mro:has_accomplice ;
+ rdfs:domain obo:BFO_0000040 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "An agent a1 is accomplice_in some Processual Entity p1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accomplice"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "accomplice in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/adjacent_to
+mro:adjacent_to rdf:type owl:ObjectProperty ;
+ rdfs:comment "C adjacent to C' if and only if: given any instance c that instantiates C at a time t, there is some c' such that: c' instantiates C' at time t and c and c' are in spatial proximity"@en ,
+ "Note that adjacent_to as thus defined is not a symmetric relation, in contrast to its instance-level counterpart. For it can be the case that Cs are in general such as to be adjacent to instances of C1 while no analogous statement holds for C1s in general in relation to instances of C. Examples are: nuclear membrane adjacent_to cytoplasm; seminal vesicle adjacent_to urinary bladder; ovary adjacent_to parietal pelvic peritoneum"^^xsd:string ;
+ rdfs:label "adjacent_to"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/affects
+mro:affects rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:is_affected_by ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000002 ;
+ cco:definition "If p is a process and c is a continuant, then p affects c if and only if p influences c in some manner, most often by producing a change in c."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "affects"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/agent_in
+mro:agent_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ owl:inverseOf mro:has_agent ;
+ rdfs:label "agent_in"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_capability
+mro:aggregate_has_capability rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:aggregrate_bearer_of ;
+ owl:inverseOf mro:capability_of_aggregate ;
+ rdfs:domain cco:GroupOfAgents ;
+ rdfs:range cco:AgentCapability ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_disposition
+mro:aggregate_has_disposition rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:aggregrate_bearer_of ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000016 ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_has_disposition of some instance of a Disposition if and only if every member of the Object Aggregate instance has_disposition some instance of the Disposition."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has disposition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_quality
+mro:aggregate_has_quality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:aggregrate_bearer_of ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000019 ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_has_quality of some instance of a Quality if and only if every member of the Object Aggregate instance has_quality some instance of the Quality."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has quality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_role
+mro:aggregate_has_role rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:aggregrate_bearer_of ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_has_role of some instance of a Role if and only if every member of the Object Aggregate instance has_role some instance of the Role."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate has role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregrate_bearer_of
+mro:aggregrate_bearer_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ cco:definition "An instance of an Object Aggregate (or any of its subtypes) is aggregate_bearer_of some instance of a Dependent Continuant (or any of its subtypes) if and only if every member of the Object Aggregate instance is bearer_of some instance of the Dependent Continuant"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "aggregate bearer of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/bearer_of
+mro:bearer_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:inheres_in ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ cco:definition "Inverse of inheres in."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "bearer of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/capability_of
+mro:capability_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:realizable_entity_of ;
+ owl:inverseOf mro:has_capability ;
+ rdfs:domain cco:AgentCapability ;
+ rdfs:range cco:Agent ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "capability of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/capability_of_aggregate
+mro:capability_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in_aggregate ;
+ rdfs:domain cco:AgentCapability ;
+ rdfs:range cco:GroupOfAgents ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "capability of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/caused_by
+mro:caused_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_cause_of ;
+ rdfs:domain obo:BFO_0000003 ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "For types of Processual Entities P1 and P2, P1 caused by P2 if and only if for all instances p1 of P1 there is some instance p2 of P2 such that p1 is the consequence of p2. Inverse of is_cause_of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "caused by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/coincides_with
+mro:coincides_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "coincides with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/condition_described_by
+mro:condition_described_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:describes_condition ;
+ owl:propertyChainAxiom ( mro:described_by
+ mro:part_of
+ ) ;
+ 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 c is an entity that is causally relevant to s existing as prescribed by p."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "condition described by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/connected_with
+mro:connected_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "connected with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/contained_in
+mro:contained_in rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:contains ;
+ rdfs:comment "C contained_in C' if and only if: given any instance c that instantiates C at a time t, there is some c' such that: c' instantiates C' at time t and c located_in c' at t, and it is not the case that c *overlaps* c' at t. (c' is a conduit or cavity.)"@en ,
+ "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):"^^xsd:string ;
+ rdfs:label "contained_in"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/contains
+mro:contains rdf:type owl:ObjectProperty ;
+ rdfs:label "contains"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/delimits
+mro:delimits rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_delimited_by ;
+ rdf:type owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain cco:GeopoliticalEntity ;
+ rdfs:range cco:Organization ;
+ cco:definition "An instance of Geopolitical Entity gpe1 delimits some Government g1 iff gpe1 is the area within which g1 can legally exercies its authority."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Delimitation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "delimits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/derived_into
+mro:derived_into rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:derives_from ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:label "derived_into"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/derives_from
+mro:derives_from rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:comment "Derivation as a relation between instances. The temporal relation of derivation is more complex. Transformation, on the instance level, is just the relation of identity: each adult is identical to some child existing at some earlier time. Derivation on the instance-level is a relation holding between non-identicals. More precisely, it holds between distinct material continuants when one succeeds the other across a temporal divide in such a way that at least a biologically significant portion of the matter of the earlier continuant is inherited by the later. Thus we will have axioms to the effect that from c derives_from c1 we can infer that c and c1 are not identical and that there is some instant of time t such that c1 exists only prior to and c only subsequent to t. We will also be able to infer that the spatial region occupied by c as it begins to exist at t overlaps with the spatial region occupied by c1 as it ceases to exist in the same instant."^^xsd:string ,
+ "Derivation on the instance level (*derives_from*) holds between distinct material continuants when one succeeds the other across a temporal divide in such a way that at least a biologically significant portion of the matter of the earlier continuant is inherited by the later. We say that one class C derives_from class C' if instances of C are connected to instances of C' via some chain of instance-level derivation relations. Example: osteocyte derives_from osteoblast. Formally: C derives_immediately_from C' if and only if: given any c and any t, if c instantiates C at time t, then there is some c' and some t', such that c' instantiates C' at t' and t' earlier-than t and c *derives_from* c'. C derives_from C' if and only if: there is an chain of immediate derivation relations connecting C to C'."@en ;
+ rdfs:label "derives_from"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/described_by
+mro:described_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_subject_of ;
+ owl:inverseOf mro:describes ;
+ rdfs:range cco:DescriptiveInformationContentEntity ;
+ cco:definition "The inverse of describes, which relates an Entity to some Descriptive Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "described by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes
+mro:describes rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_about ;
+ rdfs:domain cco:DescriptiveInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes T2 then there is some instance of T1, t1 that presents the characteristics by which some instance of T2, t2 can be recognized or visualized."^^xsd:string ;
+ cco:example_of_usage "a newspaper article describes some current event"^^xsd:string ,
+ "a visitor's log describes some facility visit"^^xsd:string ,
+ "an accident report describes some accident"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."^^xsd:string ;
+ rdfs:label "describes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes_condition
+mro:describes_condition rdf:type owl:ObjectProperty ;
+ owl:propertyChainAxiom ( mro:has_part
+ mro: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 c is an entity that is causally relevant to s existing as prescribed by p."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "describes condition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes_set_with
+mro:describes_set_with rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes ;
+ owl:inverseOf mro:set_described_by ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ rdfs:range cco:MeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 further describes some entity described by t1 when compared to all the entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "describes set with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes_set_with_expected_element
+mro:describes_set_with_expected_element rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes_set_with ;
+ owl:inverseOf mro:set_described_by_expected_element ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with expected element T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 indicates that an entity described by t1 is the most likely element to occur relative to the set of entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "describes set with expected element"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes_set_with_ordinality
+mro:describes_set_with_ordinality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes_set_with ;
+ owl:inverseOf mro:set_described_by_ordinality ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ rdfs:range cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with ordinailty T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 indicates the rank order of an entity described by t1 with respect to the set of entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "describes set with ordinality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes_set_with_proportion
+mro:describes_set_with_proportion rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes_set_with ;
+ owl:inverseOf mro:set_described_by_proportion ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ rdfs:range cco:ProportionalRatioMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 describes set with proportion T2, then there is some instance of T1, t1 such that t1 nominally describes a set of like entities where some instance of T2, t2 is a proportional measurement of a subset of entities described by t1 when compared to all the entities described by t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "describes set with proportion"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/designated_by
+mro:designated_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_subject_of ;
+ owl:inverseOf mro:designates ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:DesignativeInformationContentEntity ;
+ cco:definition "The inverse of designates, which relates an Entity to some Designative Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "designated by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/designates
+mro:designates rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_about ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:DesignativeInformationContentEntity ;
+ cco:definition "For all types T1 and T2, if T1 designates T2, then there is some instance of T1, t1, by which some instance of T2, t2, is called, or classified, distinguished from others."^^xsd:string ;
+ cco:example_of_usage "a URL identifies the location of a Web Page on the internet"^^xsd:string ,
+ "a person's name designates that person"^^xsd:string ,
+ "a vehicle identification number designates some vehicle"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "designates"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/disconnected_with
+mro: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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "disconnected with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/disposition_of
+mro:disposition_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:realizable_entity_of ;
+ owl:inverseOf mro:has_disposition ;
+ rdfs:domain obo:BFO_0000016 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types D and E where D is a type of Disposition and E is a type of Entity, D disposition of E if and only if for every instance d of D, there is some instance e of E such that d \"disposition of\" e. Here \"disposition of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "disposition of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/disposition_of_aggregate
+mro:disposition_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in_aggregate ;
+ rdfs:domain obo:BFO_0000016 ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Disposition is disposition_of_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Disposition that is disposition_of each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "disposition of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/externally_connects_with
+mro:externally_connects_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "externally connects with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/function_of
+mro:function_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:disposition_of ;
+ owl:inverseOf mro:has_function ;
+ rdfs:domain obo:BFO_0000034 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "A relation between a function F and an entity E. F function_of E iff: F inheres_in E and F is a function"^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "function of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_accessory
+mro:has_accessory rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000040 ;
+ cco:definition "A Processual Entity p1 has_accessory some Agent a1 iff a1 assists in the commission of p1, is not located at the location of p1, and is not agent_in p1."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accessory_(legal_term)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has accessory"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_accomplice
+mro:has_accomplice rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000040 ;
+ cco:definition "An 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."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Accomplice"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has accomplice"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_affiliate
+mro:has_affiliate rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_affiliated_with ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has affiliate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_agent
+mro:has_agent rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ rdfs:comment "As for has_participant, but with the additional condition that the component instance is causally active in the relevant process"@en ;
+ rdfs:label "has_agent"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_aunt
+mro:has_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_brother
+mro:has_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ owl:inverseOf mro:is_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_brother_in_law
+mro:has_brother_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_brother_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has brother in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_capability
+mro:has_capability rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_realizable_entity ;
+ rdfs:domain cco:Agent ;
+ rdfs:range cco:AgentCapability ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_daughter
+mro:has_daughter rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ owl:inverseOf mro:is_daughter_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has daughter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_daughter_in_law
+mro:has_daughter_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_daughter_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has daughter in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_denominator_measurement_of
+mro:has_denominator_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes ;
+ rdfs:domain cco:ProportionalRatioMeasurementInformationContentEntity ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "For all Types T1 and T2, if T1 has denominator measurement of T2, then there is some instance of T1, t1 that is a proportional measurement of some instance of T2, t2 such that t2 is the whole being compared to by some portion."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has denominator measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_disposition
+mro:has_disposition rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_realizable_entity ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000016 ;
+ cco:definition "For types E and D where E is a type of Entity and D is a type of Disposition, E has disposition D if and only if for all instances e of E there is some instance d of D such that e \"has disposition\" d. Here \"has disposition\" denotes the primitive instance level relation. Inverse of disposition_of."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro-proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has disposition"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_ending_instant
+mro:has_ending_instant rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro: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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has ending instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_familial_relationship_to
+mro:has_familial_relationship_to rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A relationship between persons by virtue of ancestry or legal union."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has familial relationship to"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_father
+mro:has_father rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ owl:inverseOf mro:is_father_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has father"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_father_in_law
+mro:has_father_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_father_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has father in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_function
+mro:has_function rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_disposition ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000034 ;
+ cco:definition "Inverse of is function of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has function"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_granddaughter
+mro:has_granddaughter rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ owl:inverseOf mro:is_granddaughter_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has granddaughter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandfather
+mro:has_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ owl:inverseOf mro:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandmother
+mro:has_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ owl:inverseOf mro:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandson
+mro:has_grandson rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ owl:inverseOf mro:is_grandson_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has grandson"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_half_brother
+mro:has_half_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ owl:inverseOf mro:is_half_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has half brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_half_sister
+mro:has_half_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ owl:inverseOf mro:is_half_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has half sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_husband
+mro:has_husband rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ owl:inverseOf mro:is_husband_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has husband"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_input
+mro:has_input rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:is_input_of ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000002 ;
+ cco:definition "Inverse of is_input_of, a relation between a Processual Entity and a Continuant such that the presence of the Continuant at the beginning of the Processual Entity is a necessary condition for the start of the Processual Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has input"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_inside_instant
+mro:has_inside_instant rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_inside_instant_of ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000148 ;
+ cco:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has inside instant t2 if and only if there exists Temporal Instants t3 and t4 that are part of t1 and non-identical with t2, such that t3 is before t2 and t4 is after t2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has inside instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_inside_interval
+mro:has_inside_interval rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_contains ;
+ owl:inverseOf mro:interval_during ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 has inside interval some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has inside interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_integral_part
+mro:has_integral_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_part ;
+ owl:inverseOf mro:integral_part_of ;
+ rdfs:label "has_integral_part"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_aunt
+mro:has_maternal_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_aunt ;
+ owl:inverseOf mro:is_maternal_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has maternal aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_first_cousin
+mro:has_maternal_first_cousin rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ owl:inverseOf mro:is_maternal_first_cousin_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has maternal first cousin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_grandfather
+mro:has_maternal_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandfather ;
+ owl:inverseOf mro:is_maternal_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has maternal grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_grandmother
+mro:has_maternal_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandmother ;
+ owl:inverseOf mro:is_maternal_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has maternal grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_uncle
+mro:has_maternal_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_uncle ;
+ owl:inverseOf mro:is_maternal_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has maternal uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_member
+mro:has_member rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:member_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:comment "Inverse of member_of."^^xsd:string ;
+ rdfs:label "has member"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_member_of_located_in
+mro:has_member_of_located_in rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000027 ;
+ rdfs:range obo:BFO_0000040 ;
+ cco:definition "An instance of an Object Aggregate 'has member of located in' an instance of some material entity if and only if every member of that Aggregate is located in the same instance of that material entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has member of located in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_mother
+mro:has_mother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ owl:inverseOf mro:is_mother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has mother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_mother_in_law
+mro:has_mother_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_mother_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has mother in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_nephew
+mro:has_nephew rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_nephew_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has nephew"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_niece
+mro:has_niece rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_niece_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has niece"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_nontangential_proper_part
+mro:has_nontangential_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_spatial_proper_part ;
+ owl:inverseOf mro:nontangential_proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of nontangential proper part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has nontangential proper part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_numerator_measurement_of
+mro:has_numerator_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes ;
+ rdfs:domain cco:ProportionalRatioMeasurementInformationContentEntity ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "For all Types T1 and T2, if T1 has numerator measurement of T2, then there is some instance of T1, t1 that is a proportional measurement of some instance of T2, t2 such that t2 is the portion being compared to some whole."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has numerator measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_object
+mro:has_object rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro: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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "has object"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_organizational_context
+mro:has_organizational_context rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_organizational_context_of ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range cco:Organization ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has organizational context"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_output
+mro:has_output rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:is_output_of ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000002 ;
+ cco:definition "Inverse of is_output_of, a relation between a Processual Entity and a Continuant such that the presence of the Continuant at the end of the Processual Entity is a necessary condition for the completion of the Processual Entity"^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/IPO_model"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has output"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_parent
+mro:has_parent rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has parent"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_part
+mro:has_part rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:part_of ;
+ rdfs:label "has_part"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_participant
+mro:has_participant rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:participates_in ;
+ rdfs:comment "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."^^xsd:string ,
+ "P has_participant C if and only if: given any process p that instantiates P there is some continuant c, and some time t, such that: c instantiates C at t and c participates in p at t"@en ;
+ rdfs:label "has_participant"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_aunt
+mro:has_paternal_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_aunt ;
+ owl:inverseOf mro:is_paternal_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has paternal aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_first_cousin
+mro:has_paternal_first_cousin rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ owl:inverseOf mro:is_paternal_first_cousin_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has paternal first cousin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_grandfather
+mro:has_paternal_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandfather ;
+ owl:inverseOf mro:is_paternal_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has paternal grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_grandmother
+mro:has_paternal_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandmother ;
+ owl:inverseOf mro:is_paternal_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has paternal grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_uncle
+mro:has_paternal_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_uncle ;
+ owl:inverseOf mro:is_paternal_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has paternal uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_process_part
+mro:has_process_part rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_part_of_process ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For processes P1 and P2, P1 has process part P2 if and only if P2 occurs on a temporal interval that is during the temporal interval of P1 and P2 either provides an input to P1, recieves an output of P1 or both."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has process part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_proper_part
+mro:has_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_part ;
+ owl:inverseOf mro:proper_part_of ;
+ rdfs:label "has_proper_part"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_quality
+mro:has_quality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:bearer_of ;
+ owl:inverseOf mro:quality_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000019 ;
+ cco:definition "For types E and Q where E is a type of Entity and Q is a type of Quality, E has quality Q if and only if for every instance e of E there is some instance q of Q such that e \"has quality\" q. Here \"has quality\" denotes the primitive instance level relation. Inverse of quality_of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has quality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_realizable_entity
+mro:has_realizable_entity rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:bearer_of ;
+ owl:inverseOf mro:realizable_entity_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000017 ;
+ cco:definition "For types E and R where E is a type of Entity and R is a type of Realizable Entity, E has realizable entity R if and only if for all instances e of E there is some instance r of R such that e \"has realizable entity\" r. Here \"has realizable entity\" denotes the primitive instance level relation. Inverse of realizable_entity_of."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has realizable entity"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_recipient
+mro:has_recipient rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:receives ;
+ rdfs:range cco:Agent ;
+ cco:definition "has_recipient is a relationship between an Act Of Communication c1 and an Agent a1 such that c1 has_recipient a1 iff a1 is the receiver and decoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has recipient"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_role
+mro:has_role rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_realizable_entity ;
+ owl:inverseOf mro:role_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "For types E and R where E is a type of Entity and R is a type of Role, E has role R if and only if for all instances e of E there is some instance r of R such that e \"has role\" r. Here \"has role\" denotes the primitive instance level relation. Inverse of role_of."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro-proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_sender
+mro:has_sender rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:sends ;
+ rdfs:range cco:Agent ;
+ cco:definition "has_sender is a relationship between an Act Of Communication c1 and an Agent a1 such that c1 has_sender a1 iff a1 is the initiator and encoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has sender"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_sister
+mro:has_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ owl:inverseOf mro:is_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_sister_in_law
+mro:has_sister_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_sister_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has sister in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_son
+mro:has_son rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ owl:inverseOf mro:is_son_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has son"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_son_in_law
+mro:has_son_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_son_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has son in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_spatial_part
+mro:has_spatial_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_part ;
+ owl:inverseOf mro:spatial_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of spatial part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has spatial part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_spatial_proper_part
+mro:has_spatial_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_proper_part ;
+ owl:inverseOf mro:spatial_proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of spatial proper part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has spatial proper part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_starting_instant
+mro:has_starting_instant rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro: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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has starting instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_step_brother
+mro:has_step_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ owl:inverseOf mro:is_step_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has step brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_step_sister
+mro:has_step_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ owl:inverseOf mro:is_step_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has step sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_subordinate_role
+mro:has_subordinate_role rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_subordinate_role_to ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "For all x,y,t: x has subordinate role y at t iff: x is an instance of bfo:BFO_0000023 (Role) at time t, and y is an instance of bfo:BFO_0000023 (Role) at time t, and there is some z such that x is realized by z and z is an instance of Act which creates, modifies, transfers, or eliminates some u such that u is an Action Regulation at time t, and u is addressed to the bearer of y."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "has subordinate role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_subsidiary
+mro:has_subsidiary rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_affiliate ;
+ owl:inverseOf mro:is_subsidiary_of ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:Organization ;
+ cco:definition "An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies."^^xsd:string ;
+ cco:definition_source "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has subsidiary"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_tangential_proper_part
+mro:has_tangential_proper_part rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_spatial_proper_part ;
+ owl:inverseOf mro:tangential_proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "Inverse of tangential proper part of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has tangential proper part"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_uncle
+mro:has_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_wife
+mro:has_wife rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ owl:inverseOf mro:is_wife_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has wife"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/inheres_in
+mro:inheres_in rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types T1 and T2, if T1 inheres in T2, then for all instances of T1, t1, there is some instance of T2, t2, such that t1 \"inheres in\" t2. Here, \"inheres in\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl "^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "inheres in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/inheres_in_aggregate
+mro:inheres_in_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000020
+ obo:BFO_0000031
+ )
+ ] ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Dependent Continuant inheres_in_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Dependent Continuant that inhere_in each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "inheres in aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/instant_is_after
+mro:instant_is_after rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:instant_is_before ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000148 ;
+ rdfs:range obo:BFO_0000148 ;
+ cco:elucidation "'instant is after' is a primitive relationship. Informally, a temporal instant t2 is after some temporal instant t1 if and only if t1 precedes t2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "instant is after"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/instant_is_before
+mro:instant_is_before rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000148 ;
+ rdfs:range obo:BFO_0000148 ;
+ cco:elucidation "'instant is before' is a primitive relationship. Informally, a temporal instant t1 is before some temporal instant t2 if and only if t1 precedes t2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "instant is before"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/integral_part_of
+mro:integral_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:part_of ;
+ rdfs:comment "C integral_part_of C' if and only if: C part_of C' AND C' has_part C"@en ;
+ rdfs:label "integral_part_of"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_contained_by
+mro:interval_contained_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:interval_contains ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 is contained by some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, inst2 is before or identical to inst4, and it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval contained by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_contains
+mro:interval_contains rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 contains some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, and inst2 is before or identical to inst4, but it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval contains"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_disjoint
+mro:interval_disjoint rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 is disjoint with a Temporal Interval INT2 iff INT1 is before or meets INT2 OR INT2 is before or meets INT1. In other words, INT1 and INT2 are disjoint iff INT1 and INT2 do not overlap, contain, or equal one another."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval disjoint"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_during
+mro:interval_during rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_contained_by ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 is during some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval during"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_equals
+mro:interval_equals rdf:type owl:ObjectProperty ,
+ owl:SymmetricProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 is equal to some Temporal Interval INT2 iff there exists Temporal Instants inst1 and inst2 such that inst1 is the starting instant of both INT1 and INT2 and inst2 is the ending instant of both INT1 and INT2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval equals"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_finished_by
+mro:interval_finished_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_contains ;
+ owl:inverseOf mro:interval_finishes ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is finished by some Temporal Interval INT1 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval finished by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_finishes
+mro:interval_finishes rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_contained_by ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 finishes some Temporal Interval INT2 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval finishes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_is_after
+mro:interval_is_after rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_disjoint ;
+ owl:inverseOf mro:interval_is_before ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A TemporalInterval INT2 is after some TemporalInterval INT1 iff there exists TemporalInstants inst2, inst1 such that inst2 is the starting instant of INT2 and inst1 is the ending instant of INT1 and inst2 is after inst1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval is after"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_is_before
+mro:interval_is_before rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_disjoint ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A TemporalInterval INT1 is before some TemporalInterval INT2 iff there exists TemporalInstants inst1, inst2 such that inst1 is the ending instant of INT1 and inst2 is the starting instant of INT2 and inst1 is before inst2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval is before"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_meets
+mro:interval_meets rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_disjoint ;
+ owl:inverseOf mro:interval_met_by ;
+ rdf:type owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 meets some Temporal Interval INT2 iff there exists some Temporal Instant inst1 such that inst1 is the ending instant of INT1 and inst1 is the starting instant of INT2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval meets"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_met_by
+mro:interval_met_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_disjoint ;
+ rdf:type owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is met by some Temporal Interval INT1 iff there exists some Temporal Instant inst1 such that inst1 is the starting instant of INT2 and inst1 is the ending instant of INT1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval met by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_overlapped_by
+mro:interval_overlapped_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:interval_overlaps ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is overlapped by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval overlapped by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_overlaps
+mro:interval_overlaps rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 overlaps some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval overlaps"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_started_by
+mro:interval_started_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_contains ;
+ owl:inverseOf mro:interval_starts ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is started by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval started by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/interval_starts
+mro:interval_starts rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:interval_contained_by ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 starts some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "interval starts"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_a_interval_measurement_of
+mro:is_a_interval_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_a_measurement_of ;
+ owl:inverseOf mro:is_measured_by_interval ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:IntervalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 is a interval measurement of T2 then there is some instance of T1, t1, that places some instance of T2, t2, onto a scale which has uniform intervals but has a zero value that does not correspond to an absence of the quality being measured."^^xsd:string ;
+ cco:example_of_usage "a measurement of air temperature on the Celsius scale."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is a interval measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_a_measurement_of
+mro:is_a_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes ;
+ owl:inverseOf mro:is_measured_by ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:MeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 is a measurement of T2 then there is some instance of T1, t1, that describes some characteristic of some instance of T2, t2, relative to some scale or classification scheme."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ 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."^^xsd:string ;
+ rdfs:label "is a measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_a_nominal_measurement_of
+mro:is_a_nominal_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_a_measurement_of ;
+ owl:inverseOf mro:is_measured_by_nominal ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:NominalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 is a nominal measurement of T2 then there is some instance of T1, t1, that classifies some instance of T2, t2, relative to some set of shared, possibly arbitrary, characteristics."^^xsd:string ;
+ cco:example_of_usage "classifying automobiles as sedans, coupes, hatchbacks, or convertibles"^^xsd:string ,
+ "classifying military intelligence as strategic, operational, or tactical"^^xsd:string ,
+ "classifying rocks as igneous, sedimentary, or metamorphic"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is a nominal measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_a_ordinal_measurement_of
+mro:is_a_ordinal_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_a_measurement_of ;
+ owl:inverseOf mro:is_measured_by_ordinal ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 is an ordinal measurement of T2 then there is some instance of T1, t1, that places some instance of T2, t2, onto a rank order."^^xsd:string ;
+ cco:example_of_usage "placing Geospatial Regions into a rank order of small, medium, large"^^xsd:string ,
+ "placing military units onto a readiness rank order of red, yellow, green"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is a ordinal measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_a_ratio_measurement_of
+mro:is_a_ratio_measurement_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_a_measurement_of ;
+ owl:inverseOf mro:is_measured_by_ratio ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 is a ratio measurement of T2 then there is some instance of T1, t1, that places some instance of T2, t2, onto a scale having equal unit values and a zero value that corresponds to the absence of the quality being measured."^^xsd:string ;
+ cco:example_of_usage "the barometric pressure at 1,000 feet above sea level"^^xsd:string ,
+ "the measure of air temperature on the Kelvin scale"^^xsd:string ,
+ "the number of members in an Organization"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is a ratio measurement of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_about
+mro:is_about rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_subject_of ;
+ rdfs:domain cco:InformationContentEntity ;
+ rdfs:range obo:BFO_0000001 ;
+ cco:definition "A primitive relationship between an Information Content Entity and some Entity."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000136"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is about"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_affected_by
+mro:is_affected_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "If c is a continuant and p is a process, the c is affected by p if and only if c undergoes some change as a result of the occurrence of p."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is affected by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_affiliated_with
+mro:is_affiliated_with rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ cco:definition "An Agent a1 is affiliated with some Agent a2 by virtue of their having any social or business relationship."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is affiliated with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_ancestor_of
+mro:is_ancestor_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_descendent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is ancestor of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_aunt_of
+mro:is_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_brother_in_law_of
+mro:is_brother_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is brother-in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_brother_of
+mro:is_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_cause_of
+mro:is_cause_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000001 ;
+ rdfs:range obo:BFO_0000003 ;
+ cco:definition "For types of Processual Entities P1 and P2, P1 is cause of P2 if and only if for all instances p1 of P1 there is some instance p2 of P2 such that p1 is a causal factor in p2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is cause of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_child_of
+mro:is_child_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is child of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_daughter_in_law_of
+mro:is_daughter_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is daughter in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_daughter_of
+mro:is_daughter_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is daughter of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_delimited_by
+mro:is_delimited_by rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:GeopoliticalEntity ;
+ cco:definition "An instance of Government g1 is_delimited_by some Geopolitical Entity gpe1 iff gpe1 is the area with which g1 can legally exercies its authority"^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Delimitation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "is delimited by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_descendent_of
+mro:is_descendent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is descendent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_ending_instant_of
+mro: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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is ending instant of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_excerpted_from
+mro:is_excerpted_from rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is excerpted from"^^xsd:string ;
+ cco:definition "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is the bearer of some Information Content Entity C1, B2 is the bearer of some Information Content Entity C2, C1 is not identical with C2, b1 is the bearer of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is the bearer of c1 (i.e. the same Information Content Entity as borne by b1)."^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_father_in_law_of
+mro:is_father_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is father in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_father_of
+mro:is_father_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is father of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_first_cousin_of
+mro:is_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_first_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_geospatial_coordinate_reference_system_of
+mro:is_geospatial_coordinate_reference_system_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_reference_system_of ;
+ owl:inverseOf mro:uses_geospatial_coordinate_reference_system ;
+ rdfs:domain cco:GeospatialCoordinateReferenceSystem ;
+ rdfs:range cco:InformationBearingEntity ;
+ rdfs:label "is geospatial coordinate reference system of"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandchild_of
+mro:is_grandchild_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is grandchild of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_granddaughter_of
+mro:is_granddaughter_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is granddaughter of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandfather_of
+mro:is_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandmother_of
+mro:is_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandparent_of
+mro:is_grandparent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is grandparent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandson_of
+mro:is_grandson_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is grandson of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_half_brother_of
+mro:is_half_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is half-brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_half_sibling_of
+mro:is_half_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_half_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is half-sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_half_sister_of
+mro:is_half_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is half sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_husband_of
+mro:is_husband_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is husband of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_in_law_of
+mro:is_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_in_law_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_input_of
+mro:is_input_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between a Continuant and a Processual Entity in which the Continuant participates. The presence of the Continuant at the begining of the Processual Entity is a necessary condition for the start of the Processual Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is input of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_inside_instant_of
+mro:is_inside_instant_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000148 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "For Temporal Instant t1 and Temporal Interval t2, t1 is inside instant of t2 if and only if there are Temporal Instants t3 and t4 non-identical to t1 and part of t2 such that t3 is before t1 and t4 is after t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is inside instant of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_made_of
+mro:is_made_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf owl:topObjectProperty ;
+ owl:inverseOf mro:is_material_of ;
+ rdfs:domain obo:BFO_0000030 ;
+ rdfs:range obo:BFO_0000030 ;
+ cco:definition "An object o is made of an object m when m is the material that o consists of and that material does not undergo a change of kind during the creation of o"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is made of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_material_of
+mro:is_material_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000030 ;
+ rdfs:range obo:BFO_0000030 ;
+ cco:definition "An object m is material of an object o when m is the material of which o consists and that material does not undergo a change of kind during the creation of o"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is material of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_aunt_of
+mro:is_maternal_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is maternal aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_first_cousin_of
+mro:is_maternal_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ cco:definition "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:comment "Comment is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"^^xsd:string ;
+ rdfs:label "is maternal first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_grandfather_of
+mro:is_maternal_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is maternal grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_grandmother_of
+mro:is_maternal_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is maternal grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_uncle_of
+mro:is_maternal_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is maternal uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_measured_by
+mro:is_measured_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:described_by ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:MeasurementInformationContentEntity ;
+ cco:definition "The inverse of is a measurement of, which relates an Entity to some Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is measured by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_measured_by_interval
+mro:is_measured_by_interval rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_measured_by ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:IntervalMeasurementInformationContentEntity ;
+ cco:definition "The inverse of is a interval measurement of, which relates an Entity to some Interval Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is measured by interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_measured_by_nominal
+mro:is_measured_by_nominal rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_measured_by ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:definition "The inverse of is a nominal measurement of, which relates an Entity to some Nominal Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is measured by nominal"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_measured_by_ordinal
+mro:is_measured_by_ordinal rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_measured_by ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:OrdinalMeasurementInformationContentEntity ;
+ cco:definition "The inverse of is a ordinal measurement of, which relates an Entity to some Ordinal Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is measured by ordinal"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_measured_by_ratio
+mro:is_measured_by_ratio rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_measured_by ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:RatioMeasurementInformationContentEntity ;
+ cco:definition "The inverse of is a ratio measurement of, which relates an Entity to some Ratio Measurement Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is measured by ratio"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_measurement_unit_of
+mro:is_measurement_unit_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in ;
+ owl:inverseOf mro:uses_measurement_unit ;
+ rdfs:domain cco:MeasurementUnit ;
+ rdfs:range cco:InformationBearingEntity ;
+ rdfs:label "is measurement unit of"^^xsd:string ;
+ cco:elucidation "An Information Bearing Entity carries the content of some corresponding Information Content Entity. In some cases of measurements, this content is composed of both some amount and the scale according to which the measurement was made."^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_mention_of
+mro:is_mention_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_mentioned_by ;
+ cco:definition "An instance b1 of a Information Bearing Entity is mention of some instance c1 of some Entity or Event iff b1 is used as a reference to c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is mention of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_mentioned_by
+mro:is_mentioned_by rdf:type owl:ObjectProperty ;
+ cco:definition "An instance c1 of a Entity or Event is mentioned by an instance b1 of some Information Bearing Entity iff b1 is used as a reference to c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is mentioned by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_mother_in_law_of
+mro:is_mother_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is mother in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_mother_of
+mro:is_mother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is mother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_nephew_of
+mro:is_nephew_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is nephew of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_niece_of
+mro:is_niece_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is niece of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_object_of
+mro:is_object_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "is object of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_organizational_context_of
+mro:is_organizational_context_of rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:Organization ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "An Organization is a organizational context of a role if a person's affiliation with the organization is a prerequisite for being a bearer of the role or if the organization ascribes the role to some entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is organizational context of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_output_of
+mro:is_output_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain obo:BFO_0000002 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between a Continuant and a Processual Entity in which the Continuant participates. The presence of the Continuant at the end of the Processual Entity is a necessary condition for the completion of the Processual Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is output of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_parent_of
+mro:is_parent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is parent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_part_of_process
+mro:is_part_of_process rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "Inverse of has process part"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is part of process"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_aunt_of
+mro:is_paternal_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is paternal aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_first_cousin_of
+mro:is_paternal_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ cco:definition "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:comment "Comment is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"^^xsd:string ;
+ rdfs:label "is paternal first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_grandfather_of
+mro:is_paternal_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is paternal grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_grandmother_of
+mro:is_paternal_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is paternal grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_uncle_of
+mro:is_paternal_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is paternal uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_permitted_by
+mro:is_permitted_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ owl:inverseOf mro:permits ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range cco:ActionRegulation ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "is permitted by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_predecessor_of
+mro:is_predecessor_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_successor_of ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "A continuant c1 is a predecessor of some continuant c2 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1."^^xsd:string ;
+ cco:elucidation "More informally, c1 is a predecessor of c2 iff c1 has been followed or replaced by c2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is predecessor of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_prohibited_by
+mro:is_prohibited_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ owl:inverseOf mro:prohibits ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range cco:ActionRegulation ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "is prohibited by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_reference_system_of
+mro:is_reference_system_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in ;
+ owl:inverseOf mro:uses_reference_system ;
+ rdfs:domain cco:ReferenceSystem ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is reference system of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_required_by
+mro:is_required_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ owl:inverseOf mro:requires ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range cco:ActionRegulation ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "is required by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_second_cousin_of
+mro:is_second_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_second_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is second cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_sibling_of
+mro:is_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_sister_in_law_of
+mro:is_sister_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is sister-in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_sister_of
+mro:is_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_site_of
+mro:is_site_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:occurs_at ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000006
+ obo:BFO_0000029
+ )
+ ] ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between some Spatial Region and some Processual Entity which holds whenever the Processual Entity occurs at that Spatial Region"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is site of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_son_in_law_of
+mro:is_son_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is son in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_son_of
+mro:is_son_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is son of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_spouse_of
+mro:is_spouse_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_spouse_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is spouse of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_starting_instant_of
+mro: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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is starting instant of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_step_brother_of
+mro:is_step_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is step-brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_step_sibling_of
+mro:is_step_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_step_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is step-sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_step_sister_of
+mro:is_step_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is step-sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_subject_of
+mro:is_subject_of rdf:type owl:ObjectProperty ;
+ rdfs:range cco:InformationContentEntity ;
+ cco:definition "The inverse of is about, which relates an Entity to some Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is subject of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_subordinate_role_to
+mro:is_subordinate_role_to rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "is subordinate role to"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_subsidiary_of
+mro:is_subsidiary_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_affiliated_with ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:Organization ;
+ cco:definition "An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. "^^xsd:string ;
+ cco:definition_source "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is subsidiary of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_successor_of
+mro:is_successor_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000004 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "A continuant c2 is a successor of some continuant c1 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1. Inverse of is predecessor. "^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is successor of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_supervised_by
+mro:is_supervised_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_affiliated_with ;
+ owl:inverseOf mro:supervises ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A person p1 is supervised by a person p2 by virtue of p1 being directed, managed, or overseen by p2."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/supervise)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is supervised by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_temporal_region_of
+mro:is_temporal_region_of rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:occurs_on ;
+ rdfs:domain obo:BFO_0000008 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "Inverse of occurs on."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is temporal region of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_third_cousin_of
+mro:is_third_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_third_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is third cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_uncle_of
+mro:is_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_used_by
+mro:is_used_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:uses ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is used by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_wife_of
+mro:is_wife_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "is wife of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/language_used_in
+mro:language_used_in rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ owl:inverseOf mro:uses_language ;
+ rdfs:domain cco:Language ;
+ rdfs:range cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ cco:elucidation "A Language L is used in an Information Bearing Entity iff the literal value of that Information Bearing Entity is a string that is encoded according to the syntax of L."^^xsd:string ;
+ rdfs:label "language used in"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/located_in
+mro:located_in rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:location_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:comment "C located_in C' if and only if: given any c that instantiates C at a time t, there is some c' such that: c' instantiates C' at time t and c *located_in* c'. (Here *located_in* is the instance-level location relation.)"@en ,
+ "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"^^xsd:string ;
+ rdfs:label "located_in"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/location_of
+mro:location_of rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:label "location_of"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/member_of
+mro:member_of rdf:type owl:ObjectProperty ;
+ cco:definition "An entity E1 is member_of some aggregate A1 iff E1 is of type T, A1 is a collection of individuals of type T, and E1 is one of the individuals in that collection."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/RO_0002351"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "member of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/nontangential_proper_part_of
+mro:nontangential_proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:spatial_proper_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 proper part of some immaterial entity im2 iff im1 is a spatial proper part of im2 and there does not exist an immaterial entity im such that im externally connects with im1 and im externally connects with im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "nontangential proper part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/occurs_at
+mro:occurs_at rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( obo:BFO_0000006
+ obo:BFO_0000029
+ )
+ ] ;
+ cco:definition "An instance level relation that holds between instances of Processual Entities and Spatial Regions whevever some spatial region is the site of some processual entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "occurs at"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/occurs_on
+mro:occurs_on rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000008 ;
+ cco:definition "An instance level relation which holds between some Processual Entity and some Temporal Region whenever the duration of the Processual Entity is contained by the Temporal Region"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "occurs on"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/overlaps_with
+mro:overlaps_with rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "An immaterial entity im1 overlaps with some immaterial entity im2 iff there exists some immaterial entity im such that im is a spatial part of im1 and im is a spatial part of im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "overlaps with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/part_of
+mro:part_of rdf:type owl:ObjectProperty ;
+ rdfs:comment "For continuants: C part_of C' if and only if: given any c that instantiates C at a time t, there is some c' such that c' instantiates C' at time t, and c *part_of* c' at t. For processes: P part_of P' if and only if: given any p that instantiates P at a time t, there is some p' such that p' instantiates P' at time t, and p *part_of* p' at t. (Here *part_of* is the instance-level part-relation.)"@en ,
+ "Parthood as a relation between instances: The primitive instance-level relation p part_of p1 is illustrated in assertions such as: this instance of rhodopsin mediated phototransduction part_of this instance of visual perception. This relation satisfies at least the following standard axioms of mereology: reflexivity (for all p, p part_of p); anti-symmetry (for all p, p1, if p part_of p1 and p1 part_of p then p and p1 are identical); and transitivity (for all p, p1, p2, if p part_of p1 and p1 part_of p2, then p part_of p2). Analogous axioms hold also for parthood as a relation between spatial regions. For parthood as a relation between continuants, these axioms need to be modified to take account of the incorporation of a temporal argument. Thus for example the axiom of transitivity for continuants will assert that if c part_of c1 at t and c1 part_of c2 at t, then also c part_of c2 at t. Parthood as a relation between classes: To define part_of as a relation between classes we again need to distinguish the two cases of continuants and processes, even though the explicit reference to instants of time now falls away. For continuants, we have C part_of C1 if and only if any instance of C at any time is an instance-level part of some instance of C1 at that time, as for example in: cell nucleus part_ of cell."^^xsd:string ;
+ rdfs:label "part_of"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/partially_overlaps_with
+mro:partially_overlaps_with rdf:type owl:ObjectProperty ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "partially overlaps with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/participates_in
+mro:participates_in rdf:type owl:ObjectProperty ;
+ rdfs:label "participates_in"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/permits
+mro:permits rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain cco:ActionRegulation ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "permits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/preceded_by
+mro:preceded_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:precedes ;
+ rdfs:comment "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."^^xsd:string ,
+ "P preceded_by P' if and only if: given any process p that instantiates P at a time t, there is some process p' such that p' instantiates P' at time t', and t' is earlier than t. "@en ;
+ rdfs:label "preceded_by"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/precedes
+mro:precedes rdf:type owl:ObjectProperty ;
+ rdfs:label "precedes"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/prescribed_by
+mro:prescribed_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_subject_of ;
+ owl:inverseOf mro:prescribes ;
+ rdfs:range cco:DirectiveInformationContentEntity ;
+ cco:definition "The inverse of prescribes, which relates an Entity to some Directive Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "prescribed by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/prescribes
+mro:prescribes rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_about ;
+ rdfs:domain cco:DirectiveInformationContentEntity ;
+ cco:definition "For all types T1 and T2, if T1 prescribes T2, then there is some instance of T1, t1, that serves as a rule or guide to some instance of T2, t2 (if T2 is a type of bfo:Occurrent) or that serves as a model for some instance of T2, t2 (if T2 is a type of bfo:Continuant)."^^xsd:string ;
+ cco:example_of_usage "a blueprint serves as a model of some Artifact or Facility"^^xsd:string ,
+ "a professional code of conduct serves as a set of rules to be followed while acting in a role within that profession"^^xsd:string ,
+ "an Operations Plan serves as a guide for the tasks that need to be performed to achieve the Objectives of the Operation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "prescribes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/prohibits
+mro:prohibits rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain cco:ActionRegulation ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "prohibits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/proper_part_of
+mro:proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:part_of ;
+ rdfs:comment "As for part_of, with the additional constraint that subject and object are distinct"@en ;
+ rdfs:label "proper_part_of"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/quality_of
+mro:quality_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in ;
+ rdfs:domain obo:BFO_0000019 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types Q and E where Q is a type of Quality and E is a type of Entity, if Q is a quality of E, then for all instances q of Q there is some instance e of E such that q \"quality of\" e. Here, \"quality of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "quality of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/quality_of_aggregate
+mro:quality_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in_aggregate ;
+ rdfs:domain obo:BFO_0000019 ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Quality is quality_of_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Quality that is quality_of each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "quality of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/realizable_entity_of
+mro:realizable_entity_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in ;
+ rdfs:domain obo:BFO_0000017 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types R and E where R is a type of Realizable Entity and E is a type of Entity, R realizable entity of E if and only if for every instance r of R, there is some instance e of E such that r \"realizable entity of\" e. Here \"realizable entity of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "realizable entity of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/realized_by
+mro:realized_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:realizes ;
+ rdfs:domain obo:BFO_0000017 ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "A relation between a Realizable Entity and a Processual Entity, inverse of realizes."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "realized by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/realizes
+mro:realizes rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range obo:BFO_0000017 ;
+ cco:definition "A Relation between a Process and a Function, where the unfolding of the process requires the execution of the function. Class level: P realizes F iff: given any p that instantiates P, there exists some f, t such that f instantiates F at t and p *realizes* f. Here, *realizes* is the primitive instance level relation"^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "realizes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/receives
+mro:receives rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain cco:Agent ;
+ cco:definition "receives is a relationship between an Agent a1 and an Act Of Communication c1 such that a1 receives c1 iff a1 is the recipient and decoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "receives"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/represented_by
+mro:represented_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:described_by ;
+ owl:inverseOf mro:represents ;
+ rdf:type owl:InverseFunctionalProperty ;
+ rdfs:range cco:RepresentationalInformationContentEntity ;
+ cco:definition "The inverse of designates, which relates an Entity to some Representational Information Content Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "represented by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/represents
+mro:represents rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:describes ;
+ rdf:type owl:FunctionalProperty ;
+ rdfs:domain cco:RepresentationalInformationContentEntity ;
+ cco:definition "For all Types T1 and T2, if T1 represents T2 then there is some instance of T1, t1, that presents the characteristics by which some instance of T2, t2, can be recognized or visualized and moreover, there is a one-to-one correspondence between the components of t1 and t2."^^xsd:string ;
+ cco:elucidation "The relationship that is being defined here is that between a photographic image and its object, or between a written transcript and the verbal event that it transcribes."^^xsd:string ;
+ cco:example_of_usage "a court transcript represents a courtroom proceeding"^^xsd:string ,
+ "a photograph of the Statue of Liberty represents the Statue of Liberty"^^xsd:string ,
+ "a video of a sporting event represents that sporting event"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "represents"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/requires
+mro:requires rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain cco:ActionRegulation ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
+ rdfs:label "requires" .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/role_of
+mro:role_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:realizable_entity_of ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000004 ;
+ cco:definition "For types R and E where R is a type of Role and E is a type of Entity, if R role of E, then for all instances r of R there is some instance e of E such that r \"role of\" e. Here, \"role of\" denotes the primitive instance level relation."^^xsd:string ;
+ cco:definition_source "http://www.berkeleybop.org/ontologies/obo-all/ro_proposed/ro_proposed.owl"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "role of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/role_of_aggregate
+mro:role_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in_aggregate ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000027 ;
+ cco:definition "An instance of a Role is role_of_aggregate some instance of a Object Aggregate if and only if there are distinct instances of the Role that is role_of each and every member of the Object Aggregate instance."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "role of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/sends
+mro:sends rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain cco:Agent ;
+ cco:definition "sends is a relationship between an Agent a1 and an Act Of Communication c1 and such that a1 sends c1 iff a1 is the initiator and encoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "sends"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/set_described_by
+mro:set_described_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:described_by ;
+ rdfs:domain cco:MeasurementInformationContentEntity ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "set described by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/set_described_by_expected_element
+mro:set_described_by_expected_element rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:set_described_by ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "set described by expected element"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/set_described_by_ordinality
+mro:set_described_by_ordinality rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:set_described_by ;
+ rdfs:domain cco:OrdinalMeasurementInformationContentEntity ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "set described by ordinality"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/set_described_by_proportion
+mro:set_described_by_proportion rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:set_described_by ;
+ rdfs:domain cco:ProportionalRatioMeasurementInformationContentEntity ;
+ rdfs:range cco:NominalMeasurementInformationContentEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "set described by proportion"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/spatial_part_of
+mro:spatial_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "An immaterial entity im1 is a spatial part of some immaterial entity im2 iff for every immaterial entity im if im is connected with im1, then im is connected with im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "spatial part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/spatial_proper_part_of
+mro:spatial_proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:proper_part_of ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000141 ;
+ rdfs:range obo:BFO_0000141 ;
+ cco:definition "An immaterial entity im1 is a spatial proper part of some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is not a spatial part of im1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "spatial proper part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/supervises
+mro:supervises rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_affiliate ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A person p1 supervises a person p2 by virtue of p1 directing, managing, or overseeing p2."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/supervise"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "supervises"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/tangential_proper_part_of
+mro:tangential_proper_part_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:spatial_proper_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 proper part of some immaterial entity im2 iff im1 is a proper part of im2 and there exists some immaterial entity im such that im externally connects with im1 and im externally connects with im2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "tangential proper part of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/time_zone_identifier_used_by
+mro:time_zone_identifier_used_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:uses_time_zone_identifier ;
+ rdfs:domain cco:TimeZoneIdentifier ;
+ rdfs:range cco:InformationBearingEntity ;
+ rdfs:label "time zone identifier used by"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/transformation_of
+mro:transformation_of rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:comment "Relation between two classes, in which instances retain their identity yet change their classification by virtue of some kind of transformation. Formally: C transformation_of C' if and only if given any c and any t, if c instantiates C at time t, then for some t', c instantiates C' at t' and t' earlier t, and there is no t2 such that c instantiates C at t2 and c instantiates C' at t2."@en ,
+ "When an embryonic oenocyte (a type of insect cell) is transformed into a larval oenocyte, one and the same continuant entity preserves its identity while instantiating distinct classes at distinct times. The class-level relation transformation_of obtains between continuant classes C and C1 wherever each instance of the class C is such as to have existed at some earlier time as an instance of the distinct class C1 (see Figure 2 in paper). This relation is illustrated first of all at the molecular level of granularity by the relation between mature RNA and the pre-RNA from which it is processed, or between (UV-induced) thymine-dimer and thymine dinucleotide. At coarser levels of granularity it is illustrated by the transformations involved in the creation of red blood cells, for example, from reticulocyte to erythrocyte, and by processes of development, for example, from larva to pupa, or from (post-gastrular) embryo to fetus or from child to adult. It is also manifest in pathological transformations, for example, of normal colon into carcinomatous colon. In each such case, one and the same continuant entity instantiates distinct classes at different times in virtue of phenotypic changes."^^xsd:string ;
+ rdfs:label "transformation_of"@en .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses
+mro:uses rdf:type owl:ObjectProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "uses"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses_geospatial_coordinate_reference_system
+mro:uses_geospatial_coordinate_reference_system rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:uses_reference_system ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:GeospatialCoordinateReferenceSystem ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "uses geospatial coordinate reference system"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses_language
+mro:uses_language rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:Language ;
+ cco:elucidation "An Information Bearing Entity uses language L iff the literal value of that Information Bearing Entity is a string that is encoded according to the syntax of L."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "uses language"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses_measurement_unit
+mro:uses_measurement_unit rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:bearer_of ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:MeasurementUnit ;
+ cco:elucidation "An Information Bearing Entity carries the content of some corresponding Information Content Entity. In some cases of measurements, this content is composed of both some amount and the scale according to which the measurement was made."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "uses measurement unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses_reference_system
+mro:uses_reference_system rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:bearer_of ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:ReferenceSystem ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "uses reference system"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses_time_zone_identifier
+mro:uses_time_zone_identifier rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range cco:TimeZoneIdentifier ;
+ cco:definition "An object property holding between an Information Bearing Entity and a Time Zone Identifier which designates which time zone is being referred to in the date time string attached to the Information Bearing Entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "uses time zone identifier"^^xsd:string .
+
+
+#################################################################
+# Data properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/asWKT
+mro:asWKT rdf:type owl:DatatypeProperty ;
+ cco:definition "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."^^xsd:string ;
+ cco:example_of_usage "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))
, Point ZM (1 2 5 40)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:comment "ISO 19162:2015"^^xsd:string ;
+ rdfs:label "as WKT"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_URI_value
+mro:has_URI_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:anyURI ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has URI value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_altitude_value
+mro:has_altitude_value rdf:type owl:DatatypeProperty ;
+ cco:elucidation "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."^^xsd:string ;
+ rdfs:label "has altitude value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_boolean_value
+mro:has_boolean_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:boolean ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has boolean value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_date_value
+mro:has_date_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has date value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_datetime_value
+mro:has_datetime_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:dateTime ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has datetime value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_decimal_value
+mro:has_decimal_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:decimal ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has decimal value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_double_value
+mro:has_double_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:double ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has double value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_integer_value
+mro:has_integer_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:integer ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has integer value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_latitude_value
+mro:has_latitude_value rdf:type owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ cco:definition "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has latitude value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_longitude_value
+mro:has_longitude_value rdf:type owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ cco:definition "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has longitude value"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_text_value
+mro:has_text_value rdf:type owl:DatatypeProperty ;
+ rdfs:domain cco:InformationBearingEntity ;
+ rdfs:range xsd:string ;
+ cco:definition "A relationship between an Information Bearing Entity and a string representation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:string ;
+ rdfs:label "has text value"^^xsd:string .
+
+
+#################################################################
+# Declaration Stub to address Protege quirks
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialCoordinateReferenceSystem
+cco:GeospatialCoordinateReferenceSystem rdf:type owl:Class .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity
+cco:InformationBearingEntity rdf:type owl:Class .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceSystem
+cco:ReferenceSystem rdf:type owl:Class .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TimeZoneIdentifier
+cco:TimeZoneIdentifier rdf:type owl:Class .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/Modeling Information with the Common Core Ontologies 1.0.docx b/Modeling Information with the Common Core Ontologies 1.0.docx
new file mode 100644
index 0000000..c6d4052
Binary files /dev/null and b/Modeling Information with the Common Core Ontologies 1.0.docx differ
diff --git a/ObsoleteTermsOntology.ttl b/ObsoleteTermsOntology.ttl
new file mode 100644
index 0000000..775e39b
--- /dev/null
+++ b/ObsoleteTermsOntology.ttl
@@ -0,0 +1,770 @@
+@prefix : .
+@prefix dc: .
+@prefix ro: .
+@prefix cco: .
+@prefix iao: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ rdfs:label "Obsolete Terms"^^xsd:string ;
+ rdfs:comment "This file contains terms that have been deleted from the CCO."^^xsd:string ;
+ owl:versionInfo "October 18, 2018"^^xsd:string ,
+ "COPYRIGHT © 2015-2018 CUBRC, Inc."^^xsd:string .
+
+#################################################################
+# Classes
+#################################################################
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalReactionArtifactFunctionSpecification
+cco:ChemicalReactionArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ChemicalReactionArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Chemical Reaction Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Chemical Reaction Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationArtifactFunctionSpecification
+cco:CommunicationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:CommunicationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Communication Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Communication Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ContainingArtifactFunctionSpecification
+cco:ContainingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ContainingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Containing Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Containing Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoolingArtifactFunctionSpecification
+cco:CoolingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:CoolingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Cooling Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cooling Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CoveringArtifactFunctionSpecification
+cco:CoveringArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:CoveringArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Covering Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Covering Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DamagingArtifactFunctionSpecification
+cco:DamagingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:DamagingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Damaging Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Damaging Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DeceptionArtifactFunctionSpecification
+cco:DeceptionArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:DeceptionArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Deception Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Deception Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DetonatingArtifactFunctionSpecification
+cco:DetonatingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:DetonatingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Detonating Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Detonating Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticShieldingArtifactFunctionSpecification
+cco:ElectromagneticShieldingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ElectromagneticShieldingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Electromagnetic Shielding Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Shielding Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EnhancingArtifactFunctionSpecification
+cco:EnhancingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:EnhancingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Enhancing Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Enhancing Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FiltrationArtifactFunctionSpecification
+cco:FiltrationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:FiltrationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Filtration Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Filtration Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FragranceArtifactFunctionSpecification
+cco:FragranceArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:FragranceArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Fragrance Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fragrance Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FuelArtifactFunctionSpecification
+cco:FuelArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:FuelArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Fuel Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fuel Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HealingArtifactFunctionSpecification
+cco:HealingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:HealingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Healing Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Healing Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HeatingArtifactFunctionSpecification
+cco:HeatingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:HeatingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Heating Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Heating Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MotionArtifactFunctionSpecification
+cco:MotionArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:MotionArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Motion Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Motion Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ObservationArtifactFunctionSpecification
+cco:ObservationArtifactFunctionSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:ArtifactModel
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ObservationArtifactFunction
+ ] ;
+ cco:definition "An Artifact Function Specification that prescribes an Observation Artifact Function and is part of some Artifact Model."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Observation Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PayloadCapacitySpecification
+cco:PayloadCapacitySpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:ArtifactModel
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:PayloadCapacity
+ ] ;
+ cco:definition "An Artifact Function Specification that prescribes a Payload Capacity and is part of some Artifact Model."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Payload Capacity Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResearchArtifactFunctionSpecification
+cco:ResearchArtifactFunctionSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:ArtifactModel
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ResearchArtifactFunction
+ ] ;
+ cco:definition "An Artifact Function Specification that prescribes a Research Artifact Function and is part of some Artifact Model."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Research Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ServiceArtifactFunctionSpecification
+cco:ServiceArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ServiceArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Service Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Service Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SubmersibleArtifactFunctionSpecification
+cco:SubmersibleArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:SubmersibleArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Submersible Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Submersible Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SwitchArtifactFunctionSpecification
+cco:SwitchArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:SwitchArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ArtifactFunctionSpecification ;
+ cco:definition "An Artifact Function Specification that prescribes some Switch Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Switch Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CatalystArtifactFunctionSpecification
+cco:CatalystArtifactFunctionSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunctionSpecification ;
+ cco:definition "A Chemical Reaction Function Specification that prescribes some Catalyst Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Catalyst Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ConveyanceArtifactFunctionSpecification
+cco:ConveyanceArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ConveyanceArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:MotionArtifactFunctionSpecification ;
+ cco:definition "A Motion Artifact Function Specification that prescribes some Conveyance Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Conveyance Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CrushingArtifactFunctionSpecification
+cco:CrushingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:CrushingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:DamagingArtifactFunctionSpecification ;
+ cco:definition "A Damaging Artifact Function Specification that prescribes some Crushing Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Crushing Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CuttingArtifactFunctionSpecification
+cco:CuttingArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:CuttingArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:DamagingArtifactFunctionSpecification ;
+ cco:definition "A Damaging Artifact Function Specification that prescribes some Cutting Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Cutting Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DetergentArtifactFunctionSpecification
+cco:DetergentArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:DetergentArtifactFunctionSpecification
+ ] ;
+ rdfs:subClassOf cco:SurfactantArtifactFunctionSpecification ;
+ cco:definition "A Surfactant Artifact Function Specification that prescribes some Detergent Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Detergent Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EducationArtifactFunctionSpecification
+cco:EducationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:EducationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Education Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Education Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticCommunicationArtifactFunctionSpecification
+cco:ElectromagneticCommunicationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ElectromagneticCommunicationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:CommunicationArtifactFunctionSpecification ;
+ cco:definition "A Communication Artifact Function Specification that prescribes some Electromagnetic Communication Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Communication Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/EmulsifierArtifactFunctionSpecification
+cco:EmulsifierArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:EmulsifierArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunctionSpecification ;
+ cco:definition "A Chemical Reaction Function Specification that prescribes some Emulsifier Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Emulsifier Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ExplosiveArtifactFunctionSpecification
+cco:ExplosiveArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ExplosiveArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:DamagingArtifactFunctionSpecification ;
+ cco:definition "A Damaging Artifact Function Specification that prescribes some Explosive Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Explosive Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FertilizerArtifactFunctionSpecification
+cco:FertilizerArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:FertilizerArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:EnhancingArtifactFunctionSpecification ;
+ cco:definition "An Enhancing Artifact Function Specification that prescribes some Fertilizer Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Fertilizer Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialArtifactFunctionSpecification
+cco:FinancialArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:FinancialArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Financial Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Financial Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentArtifactFunctionSpecification
+cco:GovernmentArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:GovernmentArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Government Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Government Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HealthcareArtifactFunctionSpecification
+cco:HealthcareArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:HealthcareArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Healthcare Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Healthcare Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HospitalityArtifactFunctionSpecification
+cco:HospitalityArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:HospitalityArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Hospitality Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Hospitality Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LegalArtifactFunctionSpecification
+cco:LegalArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:LegalArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Legal Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Legal Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MaximumSpeedArtifactFunctionSpecification
+cco:MaximumSpeedArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:MaximumSpeedArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:SpeedArtifactFunctionSpecification ;
+ cco:definition "A Speed Artifact Function Specification that prescribes some Maximum Speed Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Maximum Speed Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryArtifactFunctionSpecification
+cco:MilitaryArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:MilitaryArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Military Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Military Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinimumSpeedArtifactFunctionSpecification
+cco:MinimumSpeedArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:MinimumSpeedArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:SpeedArtifactFunctionSpecification ;
+ cco:definition "A Speed Artifact Function Specification that prescribes some Minimum Speed Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Minimum Speed Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NeutralizationArtifactFunctionSpecification
+cco:NeutralizationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:NeutralizationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunctionSpecification ;
+ cco:definition "A Chemical Reaction Function Specification that prescribes some Neutralization Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Neutralization Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NominalSpeedArtifactFunctionSpecification
+cco:NominalSpeedArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:NominalSpeedArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:SpeedArtifactFunctionSpecification ;
+ cco:definition "A Speed Artifact Function Specification that prescribes some Nominal Speed Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Nominal Speed Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OpticalCommunicationArtifactFunctionSpecification
+cco:OpticalCommunicationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:OpticalCommunicationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ElectromagneticCommunicationArtifactFunctionSpecification ;
+ cco:definition "An Electromagnetic Communication Artifact Function Specification that prescribes some Optical Communication Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Optical Communication Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OxidizerArtifactFunctionSpecification
+cco:OxidizerArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:OxidizerArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunctionSpecification ;
+ cco:definition "A Chemical Reaction Function Specification that prescribes some Oxidizer Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Oxidizer Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PesticideArtifactFunctionSpecification
+cco:PesticideArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:PesticideArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:PoisonArtifactFunctionSpecification ;
+ cco:definition "A Poison Artifact Function Specification that prescribes some Pesticide Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Pesticide Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoisonArtifactFunctionSpecification
+cco:PoisonArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:PoisonArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:DamagingArtifactFunctionSpecification ;
+ cco:definition "A Damaging Artifact Function Specification that prescribes some Poison Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Poison Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PropulsionArtifactFunctionSpecification
+cco:PropulsionArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:PropulsionArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:MotionArtifactFunctionSpecification ;
+ cco:definition "A Motion Artifact Function Specification that prescribes some Propulsion Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Propulsion Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PublicSafetyArtifactFunctionSpecification
+cco:PublicSafetyArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:PublicSafetyArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Public Safety Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Public Safety Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadioCommunicationArtifactFunctionSpecification
+cco:RadioCommunicationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:RadioCommunicationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ElectromagneticCommunicationArtifactFunctionSpecification ;
+ cco:definition "An Electromagnetic Communication Artifact Function Specification that prescribes some Radio Communication Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Radio Communication Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReactantArtifactFunctionSpecification
+cco:ReactantArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ReactantArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunctionSpecification ;
+ cco:definition "A Chemical Reaction Function Specification that prescribes some Reactant Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Reactant Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReligiousArtifactFunctionSpecification
+cco:ReligiousArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ReligiousArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Religious Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Religious Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResearchAndDevelopmentArtifactFunctionSpecification
+cco:ResearchAndDevelopmentArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ResearchAndDevelopmentArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Research and Development Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Research and Development Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ResidentialArtifactFunctionSpecification
+cco:ResidentialArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:ResidentialArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Residential Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Residential Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RetailArtifactFunctionSpecification
+cco:RetailArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:RetailArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Retail Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Retail Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SolventArtifactFunctionSpecification
+cco:SolventArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:SolventArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ChemicalReactionArtifactFunctionSpecification ;
+ cco:definition "A Chemical Reaction Function Specification that prescribes some Solvent Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Solvent Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SpeedArtifactFunctionSpecification
+cco:SpeedArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:SpeedArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:MotionArtifactFunctionSpecification ;
+ cco:definition "A Motion Artifact Function Specification that prescribes some Speed Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Speed Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SurfactantArtifactFunctionSpecification
+cco:SurfactantArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:SurfactantArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:EmulsifierArtifactFunctionSpecification ;
+ cco:definition "An Emulsifier Artifact Function Specification that prescribes some Surfactant Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Surfactant Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleEnduranceArtifactFunctionSpecification
+cco:VehicleEnduranceArtifactFunctionSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:MotionArtifactFunctionSpecification ;
+ cco:definition "A Motion Artifact Function Specification that prescribes some Vehicle Endurance Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Endurance Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VehicleRangeArtifactFunctionSpecification
+cco:VehicleRangeArtifactFunctionSpecification rdf:type owl:Class ;
+ rdfs:subClassOf cco:MotionArtifactFunctionSpecification ;
+ cco:definition "A Motion Artifact Function Specification that prescribes some Vehicle Range Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Vehicle Range Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WasteManagementArtifactFunctionSpecification
+cco:WasteManagementArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:WasteManagementArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:ServiceArtifactFunctionSpecification ;
+ cco:definition "A Service Artifact Function Specification that prescribes some Waste Management Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Waste Management Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WettingAgentArtifactFunctionSpecification
+cco:WettingAgentArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:WettingAgentArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:SurfactantArtifactFunctionSpecification ;
+ cco:definition "A Surfactant Artifact Function Specification that prescribes some Wetting Agent Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wetting Agent Artifact Function Specification"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WiredCommunicationArtifactFunctionSpecification
+cco:WiredCommunicationArtifactFunctionSpecification rdf:type owl:Class ;
+ owl:equivalentClass [ rdf:type owl:Restriction ;
+ owl:onProperty cco:prescribes ;
+ owl:someValuesFrom cco:WiredCommunicationArtifactFunction
+ ] ;
+ rdfs:subClassOf cco:CommunicationArtifactFunctionSpecification ;
+ cco:definition "A Communication Artifact Function Specification that prescribes some Wired Communication Artifact Function."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:string ;
+ rdfs:label "Wired Communication Artifact Function Specification"^^xsd:string .
+
+
diff --git a/OntologyNamespaces_v4.txt b/OntologyNamespaces_v4.txt
new file mode 100644
index 0000000..70313c5
--- /dev/null
+++ b/OntologyNamespaces_v4.txt
@@ -0,0 +1,94 @@
+PREFIX ero:
+PREFIX lro:
+
+PREFIX agent:
+PREFIX allcore
+PREFIX artifact:
+PREFIX currency:
+PREFIX event:
+PREFIX geo:
+PREFIX info:
+PREFIX quality:
+PREFIX time:
+PREFIX measure:
+
+PREFIX jdo:
+PREFIX affective: ?
+PREFIX medinfo: ?
+
+
+
+PREFIX agenthist: ?
+PREFIX agentinfo:
+PREFIX aircraft: ?
+PREFIX aircraftmaint: ?
+PREFIX armytasklist: ?
+PREFIX citizen:
+PREFIX curriculum:
+PREFIX ethnicity:
+PREFIX hydrographic:
+PREFIX legalcriminal: ?
+PREFIX maintact: ?
+PREFIX c2o:
+PREFIX mio:
+PREFIX miloccupation:
+PREFIX moo:
+PREFIX mpo:
+PREFIX mro: ?
+PREFIX mission: ??
+PREFIX missionplan: ??
+PREFIX occupation:
+PREFIX physiographic:
+PREFIX planning:
+PREFIX qmospl:
+PREFIX sensor:
+PREFIX skills:
+PREFIX soo:
+PREFIX transinfra:
+PREFIX usw: ?
+PREFIX watercraft:
+PREFIX wsero:
+
+
+PREFIX airforceATC: ?
+PREFIX airforceHMC: ?
+PREFIX airforceMSC: ?
+PREFIX airforceTMD: ?
+PREFIX airforceWDC: ?
+
+
+PREFIX maritime: ?
+
+
+PREFIX USWinstances ?
+
+
+PREFIX bfo:
+PREFIX oboInOwl:
+PREFIX owl:
+PREFIX rdf:
+PREFIX rdfs:
+PREFIX ro:
+PREFIX span:
+PREFIX snap:
+PREFIX xsd:
+
+PREFIX xml:
+PREFIX obo:
+PREFIX foaf:
+PREFIX dc:
+
+
+
+OBSOLETE Namespaces:
+
+PREFIX person:
+ STATUS - REPLACED BY: AgentHistoryOntology#
+PREFIX emo:
+ STATUS - REPLACED BY: AffectiveStateOntology#
+PREFIX ito:
+ STATUS - DELETED
+PREFIX airs:
+ STATUS - REPLACED BY: AllCoreOntology#
+PREFIX cto:
+ STATUS - DELETED
\ No newline at end of file
diff --git a/QualityOntology.ttl b/QualityOntology.ttl
new file mode 100644
index 0000000..e92110f
--- /dev/null
+++ b/QualityOntology.ttl
@@ -0,0 +1,943 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+
+ a owl:Ontology ;
+ owl:imports ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ rdfs:comment "This ontology is designed to represent a range of attributes of entities especially qualities, realizable entities, and process profiles."^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string , "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ rdfs:label "Quality Ontology"^^xsd:string .
+#
+#
+# #################################################################
+# #
+# # Classes
+# #
+# #################################################################
+#
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Albedo
+
+cco:Albedo a owl:Class ;
+ rdfs:subClassOf cco:RadiationReflectivity ;
+ cco:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of its surface to reflect incident electromagnetic radiation of a particular wavelength."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Albedo"^^xsd:string ;
+ cco:elucidation "Albedo is a reflection coefficient and is measured as the ratio of radiation reflected from the surface to the incident radiation. Albedo is dimensionless, can be expressed as a percentage, and is measured on a scale from 0 for no reflection to 1 for perfect reflection of a surface. Albedo depends on the wavelength of the radiation; when no wavelength is specified, it typically refers to some appropriate average across the spectrum of visible light."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Albedo"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Altitude
+
+cco:Altitude a owl:Class ;
+ rdfs:subClassOf cco:Height ;
+ cco:definition "A Height that inheres in a Site that externally connects an Independent Continuant to either the surface of the Earth or the Earth's mean Sea Level."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Altitude"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Amount
+
+cco:Amount a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the total, aggregate or sum of a number of discrete items or material the entity contains as parts."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/amount"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Amount"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Bent
+
+cco:Bent a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:alternative_label "Angular"^^xsd:string , "Kinked"^^xsd:string ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having one or more angles along its border."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Bent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Black
+
+cco:Black a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that lacks any hues as parts."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Black"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Blond
+
+cco:Blond a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that ranges from nearly white to a light greyish yellow"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Blond"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Blue
+
+cco:Blue a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is between Cyan and Violet with a wavelength in the visible spectrum typically between 450 to 490 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Blue"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Blunt
+
+cco:Blunt a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having a sharp edge or point."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Blunt"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/BodyShape
+
+cco:BodyShape a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a Person's body by virtue of the body's general outline or figure."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Body Shape"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Branched
+
+cco:Branched a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having subdivisions or offshoots."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Branched"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Brown
+
+cco:Brown a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that consists of dark orange and red, and of very low intensity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Brown"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Circumference
+
+cco:Circumference a owl:Class ;
+ rdfs:subClassOf cco:Perimeter ;
+ cco:definition "A Perimeter that inheres in a circle or ellipse."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Circumference"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Closure
+
+cco:Closure a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the degree to which that bearer affords passage or sightline through it via an opening, aperture, orifice, or vent."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Closure"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Coiled
+
+cco:Coiled a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer being wound in concentric rings or spirals."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Coiled"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Color
+
+cco:Color a owl:Class ;
+ rdfs:subClassOf cco:OpticalProperty ;
+ cco:definition "An Optical Property that inheres in a bearer in virtue of that bearer's Color Hue, Color Saturation and Color Brightness."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Color"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ColorBrightness
+
+cco:ColorBrightness a owl:Class ;
+ rdfs:subClassOf cco:OpticalProperty ;
+ cco:alternative_label "Color Intensity"^^xsd:string ;
+ cco:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect or radiate light."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Color Brightness"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ColorHue
+
+cco:ColorHue a owl:Class ;
+ rdfs:subClassOf cco:OpticalProperty ;
+ cco:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect a dominant wavelength of the visible light spectrum, which is typically divided up into 6 to 8 ranges."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Color Hue"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ColorSaturation
+
+cco:ColorSaturation a owl:Class ;
+ rdfs:subClassOf cco:OpticalProperty ;
+ cco:definition "An Optical Property that inheres in a bearer in virtue of its capacity to reflect high intensity light distributed across fewer wavelengths, typically considered on a continuum of purity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Color Saturation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ConcaveShape
+
+cco:ConcaveShape a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality that inheres in a bearer in virtue of the bearer having one or more cavities, such that at least one line connecting a pair of points on the surface of the bearer will lie outside."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Concave Shape"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ConeShape
+
+cco:ConeShape a owl:Class ;
+ rdfs:subClassOf cco:ThreeDimensionalShape ;
+ cco:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a flat base with sides that taper smoothly to an apex."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Cone"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Cone Shape"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ConvexShape
+
+cco:ConvexShape a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality that inheres in a bearer in virtue of the bearer not having a cavity, such that no line connecting a pair of points on the surface of the bearer will lie outside."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Convex Shape"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/CubeShape
+
+cco:CubeShape a owl:Class ;
+ rdfs:subClassOf cco:Cuboidal ;
+ cco:definition "A Cuboidal shape inhering in a bearer in virtue of it having six Square faces."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Cube Shape"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Cuboidal
+
+cco:Cuboidal a owl:Class ;
+ rdfs:subClassOf cco:ThreeDimensionalShape ;
+ cco:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having six Rectangular faces."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Cuboidal"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Curved
+
+cco:Curved a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having borders which are smoothly rounded."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Curved"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Cyan
+
+cco:Cyan a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is between Green and Blue with a wavelength in the visible spectrum typically between 490 and 520 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Cyan"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Cylindrical
+
+cco:Cylindrical a owl:Class ;
+ rdfs:subClassOf cco:ThreeDimensionalShape ;
+ cco:alternative_label "Columnar"^^xsd:string ;
+ cco:definition "A Three Dimensional Shape inhering in a bearer in virtue of the bearer having an elongated shape with round bases."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Cylindrical"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Density
+
+cco:Density a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:alternative_label "Density" ;
+ cco:definition "A Quality that inheres in a bearer in virtue of that bearer's mass per unit volume."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Mass Density"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Depth
+
+cco:Depth a owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalExtent ;
+ cco:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a downward, backward, or inward direction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Depth"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Diameter
+
+cco:Diameter a owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalExtent ;
+ cco:definition "A One Dimensional Extent that inheres in a circle in virtue of the extent of a straight line that passes through the center of the circle and starts and ends on the circle's boundary."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Diameter"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Drooping
+
+cco:Drooping a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a border that hangs downwards."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Drooping"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ElectromagneticRadiationProperty
+
+cco:ElectromagneticRadiationProperty a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ cco:definition "A Disposition that inheres in an bearer in virtue of how that bearer interacts with electromagnetic radiation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Electromagnetic Radiation Property"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Fatigability
+
+cco:Fatigability a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ cco:definition "A Realizable Entity that is realized when its bearer loses strength and tires quickly."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Fatigability"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Flat
+
+cco:Flat a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border without a significant deviation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Flat"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Fluorescence
+
+cco:Fluorescence a owl:Class ;
+ rdfs:subClassOf cco:LuminescentProperty ;
+ cco:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light while absorbing shorter wavelength radiation, but not after."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Fluorescence"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Fluorescence"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Folded
+
+cco:Folded a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of one part of the bearer being layered over another connected part."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Folded"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/GoldColor
+
+cco:GoldColor a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that resembles a yellow-orange Hue with the added feature of having a metallic shine."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Gold Color"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Green
+
+cco:Green a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is between Yellow and Cyan with a wavelength in the visible spectrum, typically between 520 to 560 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Green"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Grey
+
+cco:Grey a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color between white and black colors."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Grey"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Hardness
+
+cco:Hardness a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the degree to which it can be turned, bowed, or twisted without breaking."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Hardness"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Hazel
+
+cco:Hazel a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is a combination of Brown and Green, typically associated with eye color."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Hazel"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Height
+
+cco:Height a owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalExtent ;
+ cco:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a vertical direction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Height"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Length
+
+cco:Length a owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalExtent ;
+ cco:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's greatest extent in one direction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Length"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/LuminescentProperty
+
+cco:LuminescentProperty a owl:Class ;
+ rdfs:subClassOf cco:OpticalProperty ;
+ cco:definition "An Optical Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light, but which isn't the result of the bearer being heated."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Luminescence"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:comment "There are a variety of photometric measurements, such as luminous flux/power or luminous intensity, whose units are lumen and candela respectively, which attempt to describe properties associated with the perception of light. These are weighted measurements, typically by the luminosity function, as thus exist on the side of information content. It is a point of further development to add the needed intrinsic properties of radiation that such measurements are about."^^xsd:string ;
+ rdfs:label "Luminescent Property"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Magenta
+
+cco:Magenta a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color consisting of red and blue hues."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Magenta"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Magnetic
+
+cco:Magnetic a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ cco:definition "A Disposition that is realized when its bearer exerts a magnetic force on another entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Magnetism"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Maroon
+
+cco:Maroon a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color consisting of purple and brown hue."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Maroon"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Mass
+
+cco:Mass a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the amount of matter in that bearer."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:comment "'Matter' here can also refer to the inertial energy of an object."^^xsd:string , "Typical unit of measure is the kilogram or pound."^^xsd:string ;
+ rdfs:label "Mass"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Oblong
+
+cco:Oblong a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having an long thin shape with approximately parallel sides."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Oblong"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/OneDimensionalExtent
+
+cco:OneDimensionalExtent a owl:Class ;
+ rdfs:subClassOf cco:SizeQuality ;
+ cco:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in one dimension."^^xsd:string ;
+ cco:definition_source "http://purl.obolibrary.org/obo/PATO_0001708"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:comment "Subclasses of one dimensional extent are included for usability. It is doubtful any of them can be objectively distinguished (on the side of the bearing entity) without some reference to external properties such as orientation and perspective."^^xsd:string ;
+ rdfs:label "One Dimensional Extent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Opacity
+
+cco:Opacity a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationProperty ;
+ cco:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of that bearer's capacity to transmit electromagnetic radiation of a given frequency through the bearer instead of reflecting, scattering, or absorbing electromangentic radiation of that frequency."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Opacity_(optics)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:comment "Note that it is important to specify the frequency of electromagnetic radiation when representing a bearer's Opacity since a bearer may be Opaque with respect to electromagnetic radiation of one frequency, but be transparent with respect to electromagnetic radiation of another frequency. Unless otherwise stated, statements about a bearer's Opacity are assumed to be about electromagnetic radiation with a frequency in the visible spectrum."^^xsd:string ;
+ rdfs:label "Opacity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Opaque
+
+cco:Opaque a owl:Class ;
+ rdfs:subClassOf cco:Opacity ;
+ cco:definition "An Opacity that inheres in a bearer in virtue of that bearer's incapacity to transmit electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs all electromagnetic radiation of that frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Opaque"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/OpticalProperty
+
+cco:OpticalProperty a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationProperty ;
+ cco:definition "An Electromagnetic Radiation Property that is realized when its bearer interacts with electromagnetic waves within the visible light spectrum."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Optical Property"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Orange
+
+cco:Orange a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is between Red and Yellow with a wavelength in the visible spectrum typically between 590 to 635 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Orange"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Perimeter
+
+cco:Perimeter a owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalExtent ;
+ cco:definition "A One Dimensional Extent that inheres in a bearer in virtue of the extent of a boundary which encloses the bearer."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Perimeter"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/PhaseAngle
+
+cco:PhaseAngle a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000145 ;
+ cco:alternative_label "Orbital Phase Angle"^^xsd:string ;
+ cco:definition "A Relational Quality that is the angle between the light incident onto an observed Object and the light reflected from the Object."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Phase_angle_(astronomy)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Phase Angle"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Phosphorescence
+
+cco:Phosphorescence a owl:Class ;
+ rdfs:subClassOf cco:LuminescentProperty ;
+ cco:definition "A Luminescent Property that inheres in a bearer in virtue of that bearer's capacity to emit visible light after absorbing shorter wavelength radiation, and to continue emitting after the absorbing process has ceased."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Phosphorescence"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Phosphorescence"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/PitchOrientation
+
+cco:PitchOrientation a owl:Class ;
+ rdfs:subClassOf cco:SpatialOrientation ;
+ cco:alternative_label "Pitch"^^xsd:string ;
+ cco:definition "A Spatial Orientation of an Object relative to its Pitch Axis."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Pitch Orientation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/PointingOrientation
+
+cco:PointingOrientation a owl:Class ;
+ rdfs:subClassOf cco:SpatialOrientation ;
+ cco:alternative_label "Facing Orientation"^^xsd:string ;
+ cco:definition "A Spatial Orientation of an Object in which one or more designated components of the Object are pointed toward a specified Target."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Pointing Orientation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Protruding
+
+cco:Protruding a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a part of an object in virtue of the part extending out above or beyond the surface of the object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Protruding"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Purple
+
+cco:Purple a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is aproximately midway between Red and Blue."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Purple"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Pyramidal
+
+cco:Pyramidal a owl:Class ;
+ rdfs:subClassOf cco:ThreeDimensionalShape ;
+ cco:definition "A Three Dimensional Shape that inheres in a bearer in virtue of it having a polygonal base with vertices that all connect to the same apex to form triangular faces."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Pyramid_(geometry)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Pyramidal"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RadiationAbsorptivity
+
+cco:RadiationAbsorptivity a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationProperty ;
+ cco:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to absorb electromagnetic radiation of a given frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radiation Absorptivity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RadiationEmissivity
+
+cco:RadiationEmissivity a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationProperty ;
+ cco:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to emit electromagnetic radiation of a given frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radiation Emissivity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RadiationReflectivity
+
+cco:RadiationReflectivity a owl:Class ;
+ rdfs:subClassOf cco:ElectromagneticRadiationProperty ;
+ cco:definition "An Electromagnetic Radiation Property that inheres in a bearer in virtue of the capacity of that bearer to scatter or reflect electromagnetic radiation of a given frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radiation Reflectivity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Radioactive
+
+cco:Radioactive a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of that bearer exhibiting or being caused by radioactivity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radioactive"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Radiolucent
+
+cco:Radiolucent a owl:Class ;
+ rdfs:subClassOf cco:Radiopacity ;
+ cco:alternative_label "Hypodense"^^xsd:string , "Transradiance"^^xsd:string ;
+ cco:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to permit most X-rays to pass through it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radiolucent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Radiopacity
+
+cco:Radiopacity a owl:Class ;
+ rdfs:subClassOf cco:Opacity ;
+ cco:alternative_label "Radiodensity"^^xsd:string ;
+ cco:definition "An Opacity that inheres in a bearer in virtue of its capacity to allow or prevent X-rays to pass through it."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Radiodensity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radiopacity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Radiopaque
+
+cco:Radiopaque a owl:Class ;
+ rdfs:subClassOf cco:Radiopacity ;
+ cco:alternative_label "Radiodense"^^xsd:string ;
+ cco:definition "A Radiopacity that inheres in a bearer in virtue of its capacity to prevent most X-rays from passing through it."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Radiopaque"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Rectangular
+
+cco:Rectangular a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of having four sides and four 90 degree angles."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Rectangular"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Red
+
+cco:Red a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is above Orange with a wavelength in the visible spectrum typically between 635 to 700 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Red"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Refractivity
+
+cco:Refractivity a owl:Class ;
+ rdfs:subClassOf cco:RadiationReflectivity ;
+ cco:definition "A Radiation Reflectivity that inheres in a bearer in virtue of the capacity of that bearer to change the direction of a propagating wave when passing through it."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Refractive_index#Refractivity"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Refractivity"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/RollOrientation
+
+cco:RollOrientation a owl:Class ;
+ rdfs:subClassOf cco:SpatialOrientation ;
+ cco:alternative_label "Roll"^^xsd:string ;
+ cco:definition "A Spatial Orientation of an Object relative to its Roll Axis."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Roll Orientation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Rosy
+
+cco:Rosy a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color consisting of red hue and yellow hue and high brightness."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Rosy"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Round
+
+cco:Round a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:alternative_label "Circular"^^xsd:string ;
+ cco:definition "A Shape Quality that inheres in a bearer in virtue of every point along its circumference being equidistant from the center."^^xsd:string ;
+ cco:definition_source "http://www.merriam-webster.com/dictionary/round"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Round"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Semicircular
+
+cco:Semicircular a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape quality inhering in a bearer in virtue of the bearer having the shape of half a circle."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Semicircular"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Serrated
+
+cco:Serrated a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having multiple sharp points along a edge."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Serrated"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ShapeQuality
+
+cco:ShapeQuality a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the ratios between dimensions of external features of that bearer."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Shape Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Sharp
+
+cco:Sharp a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a fine point or thin edge."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Sharp"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SilverColor
+
+cco:SilverColor a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that resembles Grey with the added feature of having a metallic shine."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Silver Color"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SizeQuality
+
+cco:SizeQuality a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the bearer's extension in one or more dimensions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Size Quality"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Sloped
+
+cco:Sloped a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a horizontal border which is not level."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Sloped"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SpatialOrientation
+
+cco:SpatialOrientation a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000145 ;
+ cco:alternative_label "Attitude"^^xsd:string ;
+ cco:definition "A Relational Quality that is the angle of Rotation of an Object relative to one or more Plane of Reference or Axis of Rotation."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Orientation_(geometry)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Spatial Orientation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Spherical
+
+cco:Spherical a owl:Class ;
+ rdfs:subClassOf cco:ThreeDimensionalShape ;
+ cco:definition "A Three Dimensional Shape inhering in a bearer in virtue of it having round cross sections."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Spherical"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Split
+
+cco:Split a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a linear opening, or having been divided into parts."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Split"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Square
+
+cco:Square a owl:Class ;
+ rdfs:subClassOf cco:Rectangular ;
+ cco:definition "A Rectangular shape which has four equal length sides and four 90 degree angles."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Square"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Straight
+
+cco:Straight a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:alternative_label "Linear"^^xsd:string ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer not having curves, bends, or angles along its borders."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Straight"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Strength
+
+cco:Strength a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000017 ;
+ cco:definition "A Realizable Entity that is realized when its bearer exerts or resists some power, influence, or force."^^xsd:string ;
+ cco:elucidation "Strength is intended to be understood broadly here. Physical strength is only one type of Strength. Other subtypes of Strength may include military strength, psychological strength, emotional strength, political strength, technological strength, and so on."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Strength"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/SurfaceTension
+
+cco:SurfaceTension a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ cco:definition "A Disposition that inheres in a liquid and is realized when the cohesive forces of the molecules in the bearer at the surface are greater than the adhesive forces of the molecules in the surrounding air."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Surface_tension" ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Surface Tension"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Temperature
+
+cco:Temperature a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of its thermal energy."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Temperature"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Texture
+
+cco:Texture a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the size, shape, and distribution of features on its surface, typically on a continuum from smooth to rough."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Texture"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Thickness
+
+cco:Thickness a owl:Class ;
+ rdfs:subClassOf cco:Depth ;
+ cco:definition "A Depth that inheres in a bearer in virtue of it extending inward through an object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Thickness"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Thin
+
+cco:Thin a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:alternative_label "Narrow"^^xsd:string , "Slender"^^xsd:string ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly smaller in proportion to its length or height."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Thin"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalExtent
+
+cco:ThreeDimensionalExtent a owl:Class ;
+ rdfs:subClassOf cco:SizeQuality ;
+ cco:alternative_label "Volume"^^xsd:string ;
+ cco:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in three dimensions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Three Dimensional Extent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalShape
+
+cco:ThreeDimensionalShape a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality that inheres only in a three dimensional entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Three Dimensional Shape"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Translucent
+
+cco:Translucent a owl:Class ;
+ rdfs:subClassOf cco:Opacity ;
+ cco:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit some but not all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs some but not all electromagnetic radiation of that frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Translucent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Transparent
+
+cco:Transparent a owl:Class ;
+ rdfs:subClassOf cco:Opacity ;
+ cco:definition "An Opacity that inheres in a bearer in virtue of that bearer's capacity to transmit all or nearly all electromagnetic radiation of a given frequency through the bearer such that the bearer reflects, scatters, or absorbs little or no electromagnetic radiation of that frequency."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Transparent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Triangular
+
+cco:Triangular a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of it having three angles and three sides."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Triangular"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/TwoDimensionalExtent
+
+cco:TwoDimensionalExtent a owl:Class ;
+ rdfs:subClassOf cco:SizeQuality ;
+ cco:alternative_label "Area"^^xsd:string ;
+ cco:definition "A Size Quality that inheres in a bearer in virtue of the bearer's extension in two dimensions."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Two Dimensional Extent"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Vermilion
+
+cco:Vermilion a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color consisting of red and orange hue with a slight amount of gray."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Vermilion"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Violet
+
+cco:Violet a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is lower than Blue with a wavelength in the visible spectrum typically between 400 and 450 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Violet"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Vulnerability
+
+cco:Vulnerability a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000016 ;
+ cco:definition "A Disposition that inheres in a bearer in virtue of its being susceptible to having its otherwise reliable participation in processes of a certain type disrupted by a process of another type."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Vulnerability"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Wavy
+
+cco:Wavy a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:alternative_label "Undulate"^^xsd:string ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of it having a sinuous or rippled border."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Wavy"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Weight
+
+cco:Weight a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in some material entity with a mass in virtue of its location in some gravitational field."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:comment "When an object is \"weighed\", in the typical case, it is done so by taking into account the local force of gravity to determine the object's mass, whose standard of measure is the kilogram. The actual unit of measure of weight is the newton."^^xsd:string ;
+ rdfs:label "Weight"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Wetness
+
+cco:Wetness a owl:Class ;
+ rdfs:subClassOf obo:BFO_0000019 ;
+ cco:definition "A Quality that inheres in a bearer in virtue of the degree to which the bearer is covered by a liquid, typically on a continuum of dry to wet."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Wetness"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/White
+
+cco:White a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color of maximum brightness, the color of objects that reflect nearly all wavelengths of the visible light spectrum, thus considered achromatic."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "White"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Wide
+
+cco:Wide a owl:Class ;
+ rdfs:subClassOf cco:ShapeQuality ;
+ cco:alternative_label "Broad"^^xsd:string , "Fat"^^xsd:string ;
+ cco:definition "A Shape Quality inhering in a bearer in virtue of the bearer having a width or depth which is significantly larger in proportion to its length or height."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Wide"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Width
+
+cco:Width a owl:Class ;
+ rdfs:subClassOf cco:OneDimensionalExtent ;
+ cco:definition "A One Dimensional Extent that inheres in a bearer in virtue of the bearer's extension in a horizontal direction."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Width"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/YawOrientation
+
+cco:YawOrientation a owl:Class ;
+ rdfs:subClassOf cco:SpatialOrientation ;
+ cco:alternative_label "Yaw"^^xsd:string ;
+ cco:definition "A Spatial Orientation of an Object relative to its Yaw Axis."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Yaw Orientation"^^xsd:string .
+#
+# http://www.ontologyrepository.com/CommonCoreOntologies/Yellow
+
+cco:Yellow a owl:Class ;
+ rdfs:subClassOf cco:Color ;
+ cco:definition "A Color that is between Orange and Green with a wavelength in the visible spectrum typically between 560 to 590 nanometers."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:string ;
+ rdfs:label "Yellow"^^xsd:string .
+#
+# Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/TimeOntology.ttl b/TimeOntology.ttl
new file mode 100644
index 0000000..5d714b0
--- /dev/null
+++ b/TimeOntology.ttl
@@ -0,0 +1,647 @@
+@prefix : .
+@prefix dc: .
+@prefix bfo: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ rdfs:label "Time Ontology"^^xsd:string ;
+ rdfs:comment "This ontology is designed to represent temporal regions and the relations that hold between them."^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ,
+ "Version 1.1"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string .
+
+#################################################################
+# 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "has ending instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_inside_instant
+cco:has_inside_instant rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:is_inside_instant_of ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000148 ;
+ cco:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has inside instant t2 if and only if there exists Temporal Instants t3 and t4 that are part of t1 and non-identical with t2, such that t3 is before t2 and t4 is after t2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "has inside instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/has_inside_interval
+cco:has_inside_interval rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_contains ;
+ owl:inverseOf cco:interval_during ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 has inside interval some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "has inside interval"^^xsd:string .
+
+
+### 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "has starting instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/instant_is_after
+cco:instant_is_after rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:instant_is_before ;
+ rdf:type owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000148 ;
+ rdfs:range obo:BFO_0000148 ;
+ cco:elucidation "'instant is after' is a primitive relationship. Informally, a temporal instant t2 is after some temporal instant t1 if and only if t1 precedes t2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "instant is after"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/instant_is_before
+cco:instant_is_before rdf:type owl:ObjectProperty ,
+ owl:TransitiveProperty ;
+ rdfs:domain obo:BFO_0000148 ;
+ rdfs:range obo:BFO_0000148 ;
+ cco:elucidation "'instant is before' is a primitive relationship. Informally, a temporal instant t1 is before some temporal instant t2 if and only if t1 precedes t2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "instant is before"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_contained_by
+cco:interval_contained_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:interval_contains ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ owl:propertyDisjointWith cco:interval_disjoint ;
+ cco:definition "A Temporal Interval INT1 is contained by some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, inst2 is before or identical to inst4, and it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval contained by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_contains
+cco:interval_contains rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ owl:propertyDisjointWith cco:interval_disjoint ;
+ cco:definition "A Temporal Interval INT2 contains some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before or identical to inst1, and inst2 is before or identical to inst4, but it is not the case that both inst3 is identical to inst1 and inst2 is identical to inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval contains"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_disjoint
+cco:interval_disjoint rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ owl:propertyDisjointWith cco:interval_equals ,
+ cco:interval_overlapped_by ,
+ cco:interval_overlaps ;
+ cco:definition "A Temporal Interval INT1 is disjoint with a Temporal Interval INT2 iff INT1 is before or meets INT2 OR INT2 is before or meets INT1. In other words, INT1 and INT2 are disjoint iff INT1 and INT2 do not overlap, contain, or equal one another."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval disjoint"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_during
+cco:interval_during rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_contained_by ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 is during some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, and inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst3 is before inst1, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval during"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_equals
+cco:interval_equals rdf:type owl:ObjectProperty ,
+ owl:SymmetricProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 is equal to some Temporal Interval INT2 iff there exists Temporal Instants inst1 and inst2 such that inst1 is the starting instant of both INT1 and INT2 and inst2 is the ending instant of both INT1 and INT2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval equals"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_finished_by
+cco:interval_finished_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_contains ;
+ owl:inverseOf cco:interval_finishes ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is finished by some Temporal Interval INT1 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval finished by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_finishes
+cco:interval_finishes rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_contained_by ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 finishes some Temporal Interval INT2 iff there exists Temporal Instants inst1, inst2, and inst3 such that inst 1 is the starting instant of INT1, inst2 is the ending instant of both INT1 and INT2, inst3 is the starting instant of INT2, and inst3 is before inst1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval finishes"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_is_after
+cco:interval_is_after rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_disjoint ;
+ owl:inverseOf cco:interval_is_before ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A TemporalInterval INT2 is after some TemporalInterval INT1 iff there exists TemporalInstants inst2, inst1 such that inst2 is the starting instant of INT2 and inst1 is the ending instant of INT1 and inst2 is after inst1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval is after"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_is_before
+cco:interval_is_before rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_disjoint ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A TemporalInterval INT1 is before some TemporalInterval INT2 iff there exists TemporalInstants inst1, inst2 such that inst1 is the ending instant of INT1 and inst2 is the starting instant of INT2 and inst1 is before inst2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval is before"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_meets
+cco:interval_meets rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_disjoint ;
+ owl:inverseOf cco:interval_met_by ;
+ rdf:type owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 meets some Temporal Interval INT2 iff there exists some Temporal Instant inst1 such that inst1 is the ending instant of INT1 and inst1 is the starting instant of INT2."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval meets"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_met_by
+cco:interval_met_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_disjoint ;
+ rdf:type owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is met by some Temporal Interval INT1 iff there exists some Temporal Instant inst1 such that inst1 is the starting instant of INT2 and inst1 is the ending instant of INT1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval met by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_overlapped_by
+cco:interval_overlapped_by rdf:type owl:ObjectProperty ;
+ owl:inverseOf cco:interval_overlaps ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is overlapped by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval overlapped by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_overlaps
+cco:interval_overlaps rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 overlaps some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, inst3, inst4 such that inst1 is the starting instant of INT1, inst2 is the ending instant of INT1, inst3 is the starting instant of INT2, inst4 is the ending instant of INT2, inst1 is before inst3, inst3 is before inst2, and inst2 is before inst4."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval overlaps"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_started_by
+cco:interval_started_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_contains ;
+ owl:inverseOf cco:interval_starts ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT2 is started by some Temporal Interval INT1 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval started by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/interval_starts
+cco:interval_starts rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf cco:interval_contained_by ;
+ rdfs:domain obo:BFO_0000038 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "A Temporal Interval INT1 starts some Temporal Interval INT2 iff there exist Temporal Instants inst1, inst2, and inst3 such that inst1 is the starting instant of both INT1 and INT2, inst2 is the ending instant of INT1, inst3 is the ending instant of INT2 and inst2 is before inst3."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "interval starts"^^xsd:string .
+
+
+### 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "is ending instant of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/is_inside_instant_of
+cco:is_inside_instant_of rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000148 ;
+ rdfs:range obo:BFO_0000038 ;
+ cco:definition "For Temporal Instant t1 and Temporal Interval t2, t1 is inside instant of t2 if and only if there are Temporal Instants t3 and t4 non-identical to t1 and part of t2 such that t3 is before t1 and t4 is after t1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "is inside instant of"^^xsd:string .
+
+
+### 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "is starting instant of"^^xsd:string .
+
+
+#################################################################
+# 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)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Afternoon"^^xsd:string .
+
+
+### 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Axial Rotation Period"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarDay
+cco:CalendarDay rdf:type owl:Class ;
+ rdfs:subClassOf cco:Day ;
+ cco:definition "A Day that begins and ends concurrently with the Seconds specified by a Calendar System to be the first and last Seconds of the Day."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Calendar Day"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarMonth
+cco:CalendarMonth rdf:type owl:Class ;
+ rdfs:subClassOf cco:Month ;
+ cco:definition "A Month that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Month."^^xsd:string ;
+ cco:example_of_usage "January; February; March; April; May; June; July; August; September; October; November; December"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Calendar Month"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarWeek
+cco:CalendarWeek rdf:type owl:Class ;
+ rdfs:subClassOf cco:Week ;
+ cco:definition "A Week that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Week."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=calendar+week"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Calendar Week"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarYear
+cco:CalendarYear rdf:type owl:Class ;
+ rdfs:subClassOf cco:Year ;
+ cco:definition "A Year that begins and ends concurrently with the Days specified by a Calendar System to be the first and last Days of the Year."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Calendar Year"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Day
+cco:Day rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=day"^^xsd:string ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Day"^^xsd:string .
+
+
+### 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=decade"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Decade"^^xsd:string .
+
+
+### 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)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Evening"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GregorianDay
+cco:GregorianDay rdf:type owl:Class ;
+ rdfs:subClassOf cco:CalendarDay ;
+ cco:definition "A Calendar Day in the Gregorian Calendar."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "A Gregorian Day is twenty-four Hours in duration."^^xsd:string ;
+ rdfs:label "Gregorian Day"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GregorianYear
+cco:GregorianYear rdf:type owl:Class ;
+ rdfs:subClassOf cco:CalendarYear ;
+ cco:definition "A Calendar Year in the Gregorian Calendar."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "A Gregorian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.2425 Gregorian Days. The Gregorian Year is based upon the vernal equinox year. Unless otherwise stated, instances of Calendar Year are assumed to be instances of Gregorian Year since the Gregorian Calendar is the most widely used civil Calendar System."^^xsd:string ;
+ rdfs:label "Gregorian Year"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Hour
+cco:Hour rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=hour"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Hour"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDate
+cco:JulianDate rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimeOfDay ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:JulianDay
+ ] ;
+ cco:acronym "JD"^^xsd:string ;
+ cco:definition "A Time of Day as specified according to the Julian Calendar using the Julian Date epoch."^^xsd:string ;
+ cco:definition_source "https://www.defit.org/julian-date/"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Julian Date"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDay
+cco:JulianDay rdf:type owl:Class ;
+ rdfs:subClassOf cco:CalendarDay ;
+ cco:definition "A Calendar Day in the Julian Calendar."^^xsd:string ;
+ cco:definition_source "https://www.defit.org/julian-date/"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "A Julian Day begins at noon Universal Time and is twenty-four Hours in duration."^^xsd:string ;
+ rdfs:label "Julian Day"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JulianYear
+cco:JulianYear rdf:type owl:Class ;
+ rdfs:subClassOf cco:CalendarYear ;
+ cco:definition "A Calendar Year in the Julian Calendar."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "A Julian Year begins concurrently with January 1, ends concurrently with December 31, and has an average duration of exactly 365.25 Julian Days. Julian Years are typically indicated by prefixing a capital 'J' in front of the Year number, e.g. J2000.0 or J2018."^^xsd:string ;
+ rdfs:label "Julian Year"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Minute
+cco:Minute rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=minute"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Minute"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModifiedJulianDate
+cco:ModifiedJulianDate rdf:type owl:Class ;
+ rdfs:subClassOf cco:TimeOfDay ;
+ cco:acronym "MJD"^^xsd:string ;
+ cco:definition "A Time of Day as specified according to the Julian Calendar using the Modified Julian Date epoch."^^xsd:string ;
+ cco:definition_source "http://aa.usno.navy.mil/data/docs/JulianDate.php"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment """A Day begins at midnight GMT within the Modified Julian Date reference system. The Modified Julian Date (MJD) is related to the Julian Date (JD) by the formula:
+MJD = JD - 2400000.5"""^^xsd:string ;
+ rdfs:label "Modified Julian Date"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Month
+cco:Month rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=month"^^xsd:string ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Month"^^xsd:string .
+
+
+### 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)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Morning"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiDayTemporalInterval
+cco:MultiDayTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Day Temporal Interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiHourTemporalInterval
+cco:MultiHourTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Hour Temporal Interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiMinuteTemporalInterval
+cco:MultiMinuteTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Minute Temporal Interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiMonthTemporalInterval
+cco:MultiMonthTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Month Temporal Interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiSecondTemporalInterval
+cco:MultiSecondTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Second Temporal Interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiWeekTemporalInterval
+cco:MultiWeekTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Week Temporal Interval"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MultiYearTemporalInterval
+cco:MultiYearTemporalInterval rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ rdf:type owl:Restriction ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "This is a defined class."^^xsd:string ;
+ rdfs:label "Multi-Year Temporal Interval"^^xsd:string .
+
+
+### 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)."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Night"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ReferenceTime
+cco:ReferenceTime rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000148 ;
+ cco:alternative_label "Epoch"^^xsd:string ,
+ "Epoch Time"^^xsd:string ,
+ "Reference Date"^^xsd:string ;
+ cco:definition "A Zero-Dimensional Temporal Region that is an approximate temporal instant in relation to which other Temporal Regions are measured or identified."^^xsd:string ;
+ cco:definition_source "https://en.wikipedia.org/wiki/Epoch_(reference_date)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Reference Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Second
+cco:Second rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "https://physics.nist.gov/cuu/Units/second.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:comment "The Second is used as the basic SI unit of time."^^xsd:string ;
+ rdfs:label "Second"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TimeOfDay
+cco:TimeOfDay rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000148 ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:someValuesFrom cco:Day
+ ] ;
+ cco:definition "A Zero-Dimensional Temporal Region that is an approximate temporal instant that is part of a Day."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Time of Day"^^xsd:string .
+
+
+### 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Unix Temporal Instant"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Week
+cco:Week rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=week"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Week"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/Year
+cco:Year rdf:type owl:Class ;
+ rdfs:subClassOf obo:BFO_0000038 ,
+ [ 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."^^xsd:string ;
+ cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=year"^^xsd:string ;
+ 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology"^^xsd:string ;
+ rdfs:label "Year"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/UnitsOfMeasureOntology.ttl b/UnitsOfMeasureOntology.ttl
new file mode 100644
index 0000000..dca6ddf
--- /dev/null
+++ b/UnitsOfMeasureOntology.ttl
@@ -0,0 +1,1490 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:imports ;
+ owl:versionInfo "Version 1.1"^^xsd:string ;
+ rdfs:comment "This ontology is designed to represent standard measurement units that are used when measuring various attributes of entities."^^xsd:string ;
+ cco:code_license "The 3-Clause BSD License: https://opensource.org/licenses/BSD-3-Clause"^^xsd:string ;
+ cco:content_license "The Creative Commons BY 3.0 License: https://creativecommons.org/licenses/by/3.0/"^^xsd:string ;
+ owl:versionInfo "January 4, 2019"^^xsd:string ;
+ cco:copyright "COPYRIGHT © 2015-2019 CUBRC, Inc."^^xsd:string ;
+ rdfs:label "Units of Measure Ontology"^^xsd:string .
+
+#################################################################
+# Annotation properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SI_unit_label
+cco:SI_unit_label rdf:type owl:AnnotationProperty ;
+ cco:definition "An Alternative Label that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "SI unit label"^^xsd:string ;
+ rdfs:subPropertyOf cco:alternative_label .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SI_unit_symbol
+cco:SI_unit_symbol rdf:type owl:AnnotationProperty ;
+ cco:definition "An Acronym that is officially accepted for use in the International System of Units (SI) as denoting a Measurement Unit."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "SI unit symbol"^^xsd:string ;
+ rdfs:subPropertyOf cco:acronym .
+
+
+#################################################################
+# Classes
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfAcceleration
+cco:MeasurementUnitOfAcceleration rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the rate at which objects change their velocities per unit of time."^^xsd:string ;
+ cco:example_of_usage "feet per second per second, kilometers per second per second"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Acceleration"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfAmountOfSubstance
+cco:MeasurementUnitOfAmountOfSubstance rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:alternative_label "Measurement Unit of Chemical Amount"^^xsd:string ,
+ "Measurement Unit of Enplethy"^^xsd:string ;
+ cco:definition "A Measurement Unit used in measurements of the number of a specified type of particle in a portion of matter."^^xsd:string ;
+ cco:example_of_usage "mole, pound-mole"^^xsd:string ;
+ cco:is_tokenized_by "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:comment "The type of particle quantified is typically either atoms or molecules, but may also be protons, neutrons, electrons, quarks, or other particles. The type of particle being measured should always be specified along with the measurement and its unit."^^xsd:string ;
+ rdfs:label "Measurement Unit of Amount of Substance"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfAngle
+cco:MeasurementUnitOfAngle rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the angle between two lines or planes in relation to a vertex."^^xsd:string ;
+ cco:example_of_usage "degrees, radians"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Angle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfArea
+cco:MeasurementUnitOfArea rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of two-dimensional regions or Geospatial Regions."^^xsd:string ;
+ cco:example_of_usage "square feet, square meters, acre, hectare"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Area"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfAreaMomentOfInertia
+cco:MeasurementUnitOfAreaMomentOfInertia rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:alternative_label "Measurement Unit of Second Area Moment"^^xsd:string ;
+ cco:definition "A Measurement Unit used in measurements of the distribution of Mass of an object with respect to an axis."^^xsd:string ;
+ cco:elucidation "A measure of an object’s resistance to bending or deflection."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Area Moment of Inertia"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfDensity
+cco:MeasurementUnitOfDensity rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the mass of an object per unit of its total volume."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Density"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfElectromagneticForce
+cco:MeasurementUnitOfElectromagneticForce rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the electromagnetic force between electrically charged entities."^^xsd:string ;
+ cco:example_of_usage "volt, ampere, coulomb"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Electromagnetic Force"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfEnergy
+cco:MeasurementUnitOfEnergy rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the Amount of work that is available in an object."^^xsd:string ;
+ cco:example_of_usage "ft-lbs, calorie, horsepower, kilowatt"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Energy"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfFlow
+cco:MeasurementUnitOfFlow rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the rate at which portions of a substance pass per unit of time."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Flow"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfForce
+cco:MeasurementUnitOfForce rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of interactions in which the Motion or Velocity of an object is changed, unless the interaction is opposed."^^xsd:string ;
+ cco:example_of_usage "newton, dyne, pound force "^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Force"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfFrequency
+cco:MeasurementUnitOfFrequency rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the number of times an event repeats per unit of time."^^xsd:string ;
+ cco:example_of_usage "hertz, revolutions per minute"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Frequency"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfImpulse
+cco:MeasurementUnitOfImpulse rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the integral of a Force applied to a portion of matter over a temporal interval."^^xsd:string ;
+ cco:example_of_usage "N s, dyne second"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Impulse"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfLength
+cco:MeasurementUnitOfLength rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of one-dimensional regions or Geospatial Regions."^^xsd:string ;
+ cco:example_of_usage "foot, meter, kilometer, mile"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Length"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfMass
+cco:MeasurementUnitOfMass rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of an object's resistance to Acceleration when a Force is applied to the object."^^xsd:string ;
+ cco:example_of_usage "ounce, gram, pound"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Mass"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfMassFlowRate
+cco:MeasurementUnitOfMassFlowRate rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnitOfFlow ;
+ cco:definition "A Measurement Unit of Flow used in measurements of the rate at which the Mass of a substance passes per unit time."^^xsd:string ;
+ cco:example_of_usage "kilogram per second, slug per second, pound per second"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Mass Flow Rate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfMomentum
+cco:MeasurementUnitOfMomentum rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the Momentum of a portion of matter that is in Motion."^^xsd:string ;
+ cco:example_of_usage "kg m/s, slug ft/s, g m/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Momentum"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfPower
+cco:MeasurementUnitOfPower rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of rates of work."^^xsd:string ;
+ cco:example_of_usage "watt, horsepower"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Power"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfPressure
+cco:MeasurementUnitOfPressure rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of Force applied perpendicular to a surface per unit area."^^xsd:string ;
+ cco:example_of_usage "pascal, atmosphere, pound-force per square inch"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Pressure"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfRotationalInertia
+cco:MeasurementUnitOfRotationalInertia rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:alternative_label "Measurement Unit of Moment of Inertia"^^xsd:string ,
+ "Measurement Unit of Rotational Mass"^^xsd:string ;
+ cco:definition "A Measurement Unit used in measurements of the distribution of Mass of an object with respect to its axis of rotation."^^xsd:string ;
+ cco:elucidation "A measure of an object’s resistance to change in its state of rotation."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Rotational Inertia"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfSoundLevel
+cco:MeasurementUnitOfSoundLevel rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the level (the loudness) of sounds."^^xsd:string ;
+ cco:example_of_usage "decibels, sones"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Sound Level"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfSpeed
+cco:MeasurementUnitOfSpeed rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the rates at which objects traverse distance."^^xsd:string ;
+ cco:example_of_usage "miles per hour, kilometers per hour, knot, mach"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Speed"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfTemperature
+cco:MeasurementUnitOfTemperature rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of the thermal energy in an object."^^xsd:string ;
+ cco:example_of_usage "celsius, fahrenheit, kelvin"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Temperature"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfTime
+cco:MeasurementUnitOfTime rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of temporal regions."^^xsd:string ;
+ cco:example_of_usage "second, minute, hour, day"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Time"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfTorque
+cco:MeasurementUnitOfTorque rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:alternative_label "Measurement Unit of Moment of Force"^^xsd:string ,
+ "Measurement Unit of Rotational Force"^^xsd:string ;
+ cco:definition "A Measurement Unit used in measurements of the rate of change of angular momentum of an object."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Torque"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfVolume
+cco:MeasurementUnitOfVolume rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of sites or three-dimensional regions or Geospatial Regions."^^xsd:string ;
+ cco:example_of_usage "cubic feet, cubic meter, quart, liter"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Volume"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfVolumetricFlowRate
+cco:MeasurementUnitOfVolumetricFlowRate rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnitOfFlow ;
+ cco:definition "A Measurement Unit of Flow used in measurements of the rate at which volumes of fluid pass per unit time."^^xsd:string ;
+ cco:example_of_usage "cubic metres per second, standard cubic centimeters per minute, cubic feet per second, gallons per minute"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Volumetric Flow Rate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfWork
+cco:MeasurementUnitOfWork rdf:type owl:Class ;
+ rdfs:subClassOf cco:MeasurementUnit ;
+ cco:definition "A Measurement Unit used in measurements of displacements of points to which Forces have been applied."^^xsd:string ;
+ cco:example_of_usage "joule, erg, kilowatt hour"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Measurement Unit of Work"^^xsd:string .
+
+
+#################################################################
+# Individuals
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AcreMeasurementUnit
+cco:AcreMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "acre"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Acre Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AngstromMeasurementUnit
+cco:AngstromMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "Angstrom"^^xsd:string ,
+ "Å"^^xsd:string ,
+ "Ångström"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Angstrom Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/AtmosphereMeasurementUnit
+cco:AtmosphereMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:alternative_label "atm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Atmosphere Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BarMeasurementUnit
+cco:BarMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:alternative_label "bar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Bar Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BayreMeasurementUnit
+cco:BayreMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:alternative_label "ba"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Bayre Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BinaryDegreeMeasurementUnit
+cco:BinaryDegreeMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:alternative_label "Binary Radian"^^xsd:string ,
+ "Brad"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Binary Degree Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/BritishThermalUnitMeasurementUnit
+cco:BritishThermalUnitMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfEnergy ,
+ cco:MeasurementUnitOfPower ,
+ cco:MeasurementUnitOfWork ;
+ cco:alternative_label "BTU"^^xsd:string ,
+ "Btu"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "British Thermal Unit Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CalorieMeasurementUnit
+cco:CalorieMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfEnergy ,
+ cco:MeasurementUnitOfPower ,
+ cco:MeasurementUnitOfWork ;
+ cco:alternative_label "cal"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Calorie Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CentigramMeasurementUnit
+cco:CentigramMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "cg"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Centigram Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CentiliterMeasurementUnit
+cco:CentiliterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "cL"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Centiliter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CentimeterMeasurementUnit
+cco:CentimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "cm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Centimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicCentimeterMeasurementUnit
+cco:CubicCentimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "cm^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Centimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicDecimeterMeasurementUnit
+cco:CubicDecimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "dm^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Decimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicFeetPerSecondMeasurementUnit
+cco:CubicFeetPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolumetricFlowRate ;
+ cco:acronym "cusec"^^xsd:string ;
+ cco:alternative_label "ft^3/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Feet Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicFootMeasurementUnit
+cco:CubicFootMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "ft^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Foot Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicInchMeasurementUnit
+cco:CubicInchMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "in^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Inch Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicMeterMeasurementUnit
+cco:CubicMeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "m^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Meter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicMeterPerSecondMeasurementUnit
+cco:CubicMeterPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolumetricFlowRate ;
+ cco:SI_unit_symbol "m^3/s"^^xsd:string ;
+ cco:acronym "cumec"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Meter Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicMillimeterMeasurementUnit
+cco:CubicMillimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "mm^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Millimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/CubicYardMeasurementUnit
+cco:CubicYardMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "yrd^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Cubic Yard Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DayMeasurementUnit
+cco:DayMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Day Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecibelMeasurementUnit
+cco:DecibelMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSoundLevel ;
+ cco:SI_unit_symbol "dB"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Decibel Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecigramMeasurementUnit
+cco:DecigramMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "dg"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Decigram Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DeciliterMeasurementUnit
+cco:DeciliterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "dL"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Deciliter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DecimeterMeasurementUnit
+cco:DecimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "dm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Decimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DegreeCelsiusMeasurementUnit
+cco:DegreeCelsiusMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTemperature ;
+ cco:SI_unit_label "degree Celsius"^^xsd:string ;
+ cco:SI_unit_symbol "°C"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Degree Celsius Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DegreeFahrenheitMeasurementUnit
+cco:DegreeFahrenheitMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTemperature ;
+ cco:alternative_label "°F"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Degree Fahrenheit Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DegreeMeasurementUnit
+cco:DegreeMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:SI_unit_symbol "°"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Degree Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DyneMeasurementUnit
+cco:DyneMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfForce ;
+ cco:alternative_label "dyn"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Dyne Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/DyneSecondMeasurementUnit
+cco:DyneSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfImpulse ;
+ cco:alternative_label "dyne s"^^xsd:string ,
+ "dyne second"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Dyne Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ErgMeasurementUnit
+cco:ErgMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfEnergy ,
+ cco:MeasurementUnitOfPower ,
+ cco:MeasurementUnitOfWork ;
+ cco:alternative_label "erg"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Erg Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FeetPerSecondMeasurementUnit
+cco:FeetPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "ft/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Feet Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FeetPerSecondPerSecondMeasurementUnit
+cco:FeetPerSecondPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAcceleration ;
+ cco:alternative_label "ft/s/s"^^xsd:string ,
+ "ft/s^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Feet Per Second Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/FootMeasurementUnit
+cco:FootMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "ft"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Foot Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GallonMeasurementUnit
+cco:GallonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "gal"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gallon Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GallonPerMinuteMeasurementUnit
+cco:GallonPerMinuteMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolumetricFlowRate ;
+ cco:alternative_label "gal/min"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gallon Per Minute Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GigahertzMeasurementUnit
+cco:GigahertzMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:alternative_label "GHz"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gigahertz Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GradianMeasurementUnit
+cco:GradianMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:alternative_label "Gon"^^xsd:string ,
+ "Grad"^^xsd:string ,
+ "Grade"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gradian Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GramMeasurementUnit
+cco:GramMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "g"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gram Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GramMoleMeasurementUnit
+cco:GramMoleMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAmountOfSubstance ;
+ cco:alternative_label "g-mol"^^xsd:string ,
+ "gram-mole"^^xsd:string ;
+ cco:is_tokenized_by "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gram-Mole Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GramPerCubicCentimeterMeasurementUnit
+cco:GramPerCubicCentimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfDensity ;
+ cco:SI_unit_symbol "g/cm^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gram Per Cubic Centimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/GramPerSecondMeasurementUnit
+cco:GramPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMassFlowRate ;
+ cco:alternative_label "g/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Gram Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HertzMeasurementUnit
+cco:HertzMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:SI_unit_label "hertz"^^xsd:string ;
+ cco:SI_unit_symbol "Hz"^^xsd:string ;
+ cco:alternative_label "cycles per second"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Hertz Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HorsepowerMeasurementUnit
+cco:HorsepowerMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfEnergy ,
+ cco:MeasurementUnitOfPower ,
+ cco:MeasurementUnitOfWork ;
+ cco:alternative_label "hp"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Horsepower Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/HourMeasurementUnit
+cco:HourMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:SI_unit_symbol "h"^^xsd:string ;
+ cco:alternative_label "hr"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Hour Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/InchMeasurementUnit
+cco:InchMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "in"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Inch Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/JouleMeasurementUnit
+cco:JouleMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfEnergy ,
+ cco:MeasurementUnitOfPower ,
+ cco:MeasurementUnitOfWork ;
+ cco:SI_unit_label "joule"^^xsd:string ;
+ cco:SI_unit_symbol "J"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Joule Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KelvinMeasurementUnit
+cco:KelvinMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTemperature ;
+ cco:SI_unit_label "kelvin"^^xsd:string ;
+ cco:SI_unit_symbol "K"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kelvin Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramForcePerCentimeterSquareMeasurementUnit
+cco:KilogramForcePerCentimeterSquareMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:acronym "kg/cm^2"^^xsd:string ,
+ "kgf/cm^2"^^xsd:string ;
+ cco:alternative_label "Kilogram Per Square Centimeter Measurement Unit"^^xsd:string ,
+ "Kilopond Per Centimeter Square Measurement Unit"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Force Per Centimeter Square Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramMeasurementUnit
+cco:KilogramMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:SI_unit_label "kilogram"^^xsd:string ;
+ cco:SI_unit_symbol "kg"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramMeterPerSecondMeasurementUnit
+cco:KilogramMeterPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMomentum ;
+ cco:alternative_label "kg m/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Meter Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramMeterSquareMeasurementUnit
+cco:KilogramMeterSquareMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfRotationalInertia ;
+ cco:SI_unit_symbol "kg-m^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Meter Square Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramMoleMeasurementUnit
+cco:KilogramMoleMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAmountOfSubstance ;
+ cco:alternative_label "kg-mol"^^xsd:string ,
+ "kilogram-mole"^^xsd:string ;
+ cco:is_tokenized_by "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram-Mole Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramPerCubicMeterMeasurementUnit
+cco:KilogramPerCubicMeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfDensity ;
+ cco:SI_unit_label "kg/m^3"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Per Cubic Meter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramPerLiterMeasurementUnit
+cco:KilogramPerLiterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfDensity ;
+ cco:SI_unit_symbol "kg/L"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Per Liter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilogramPerSecondMeasurementUnit
+cco:KilogramPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMassFlowRate ;
+ cco:SI_unit_symbol "kg/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilogram Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilohertzMeasurementUnit
+cco:KilohertzMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:alternative_label "kHz"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilohertz Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KiloliterMeasurementUnit
+cco:KiloliterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "kL"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kiloliter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilometerMeasurementUnit
+cco:KilometerMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "km"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilometer Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilometersPerHourMeasurementUnit
+cco:KilometersPerHourMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "km/h"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilometers Per Hour Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilometersPerSecondMeasurementUnit
+cco:KilometersPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "km/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilometers Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilometersPerSecondPerSecondMeasurementUnit
+cco:KilometersPerSecondPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAcceleration ;
+ cco:alternative_label "km/s/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilometers Per Second Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilomoleMeasurementUnit
+cco:KilomoleMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAmountOfSubstance ;
+ cco:alternative_label "kilomole"^^xsd:string ,
+ "kmol"^^xsd:string ;
+ cco:is_tokenized_by "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilomole Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilonewtonMeasurementUnit
+cco:KilonewtonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfForce ;
+ cco:alternative_label "kN"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilonewton Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilopondMeasurementUnit
+cco:KilopondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfForce ;
+ cco:alternative_label "Kilogram Force Measurement Unit"^^xsd:string ,
+ "Kilogram-Force"^^xsd:string ,
+ "kgf"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilopond Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KilovoltAmpereMeasurementUnit
+cco:KilovoltAmpereMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfElectromagneticForce ;
+ cco:alternative_label "kVA"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Kilovolt Ampere Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/KnotMeasurementUnit
+cco:KnotMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "kn"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Knot Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LiterMeasurementUnit
+cco:LiterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:SI_unit_symbol "L"^^xsd:string ;
+ cco:alternative_label "Litre"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Liter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LiterPerSecondMeasurementUnit
+cco:LiterPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolumetricFlowRate ;
+ cco:alternative_label "l/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Liter Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/LongTonMeasurementUnit
+cco:LongTonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "Displacement Ton"^^xsd:string ,
+ "Gross Ton"^^xsd:string ,
+ "Imperial Ton"^^xsd:string ,
+ "Weight Ton"^^xsd:string ,
+ "ton (UK)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Long Ton Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MachMeasurementUnit
+cco:MachMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "M"^^xsd:string ,
+ "Ma"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Mach Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MegahertzMeasurementUnit
+cco:MegahertzMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:alternative_label "MHz"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Megahertz Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MeterMeasurementUnit
+cco:MeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:SI_unit_label "meter"^^xsd:string ;
+ cco:SI_unit_symbol "m"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Meter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MetersPerSecondMeasurementUnit
+cco:MetersPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "m/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Meters Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MetersPerSecondPerSecondMeasurementUnit
+cco:MetersPerSecondPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAcceleration ;
+ cco:alternative_label "m/s/s"^^xsd:string ,
+ "m/s^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Meters Per Second Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MetricTonMeasurementUnit
+cco:MetricTonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:SI_unit_symbol "t"^^xsd:string ;
+ cco:alternative_label "tonne"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Metric Ton Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MileMeasurementUnit
+cco:MileMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "mi"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Mile Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilesPerHourMeasurementUnit
+cco:MilesPerHourMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "mi/h"^^xsd:string ,
+ "mph"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Miles Per Hour Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilesPerSecondMeasurementUnit
+cco:MilesPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSpeed ;
+ cco:alternative_label "mi/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Miles Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilesPerSecondPerSecondMeasurementUnit
+cco:MilesPerSecondPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAcceleration ;
+ cco:alternative_label "mi/s/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Miles Per Second Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilliampereMeasurementUnit
+cco:MilliampereMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfElectromagneticForce ;
+ cco:alternative_label "mA"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Milliampere Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MillibarMeasurementUnit
+cco:MillibarMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:alternative_label "mb"^^xsd:string ,
+ "mbar"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Millibar Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilligramMeasurementUnit
+cco:MilligramMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "mg"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Milligram Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MilliliterMeasurementUnit
+cco:MilliliterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "mL"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Milliliter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MillimeterMeasurementUnit
+cco:MillimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "mm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Millimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinuteMeasurementUnit
+cco:MinuteMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:SI_unit_symbol "min"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Minute Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MinuteOfArcMeasurementUnit
+cco:MinuteOfArcMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:SI_unit_symbol "'"^^xsd:string ;
+ cco:alternative_label "Arcminute"^^xsd:string ,
+ "MOA"^^xsd:string ,
+ "am"^^xsd:string ,
+ "amin"^^xsd:string ,
+ "arcmin"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Minute of Arc Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MoleMeasurementUnit
+cco:MoleMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAmountOfSubstance ;
+ cco:SI_unit_label "mole"^^xsd:string ;
+ cco:SI_unit_symbol "mol"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:comment "One mole contains exactly 6.02214076×10^23 elementary entities."^^xsd:string ;
+ rdfs:label "Mole Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/MonthMeasurementUnit
+cco:MonthMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Month Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NanometerMeasurementUnit
+cco:NanometerMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "Nanometre"^^xsd:string ,
+ "nm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Nanometer Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NauticalMileMeasurementUnit
+cco:NauticalMileMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "M"^^xsd:string ,
+ "NM"^^xsd:string ,
+ "nmi"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Nautical Mile Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NewtonMeasurementUnit
+cco:NewtonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfForce ;
+ cco:SI_unit_label "newton"^^xsd:string ;
+ cco:SI_unit_symbol "N"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Newton Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NewtonMeterMeasurementUnit
+cco:NewtonMeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTorque ;
+ cco:SI_unit_symbol "N-m"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Newton Meter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NewtonSecondMeasurementUnit
+cco:NewtonSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfImpulse ;
+ cco:alternative_label "N s"^^xsd:string ,
+ "Newton second"^^xsd:string ,
+ "Ns"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Newton Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/NewtonSecondPerKilogramMeasurementUnit
+cco:NewtonSecondPerKilogramMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMomentum ;
+ cco:alternative_label "Ns/kg"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Newton Second Per Kilogram Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/OunceMeasurementUnit
+cco:OunceMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "oz"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Ounce Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PascalMeasurementUnit
+cco:PascalMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:SI_unit_label "pascal"^^xsd:string ;
+ cco:SI_unit_symbol "Pa"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pascal Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PhonMeasurementUnit
+cco:PhonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSoundLevel ;
+ cco:alternative_label "phon"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Phon Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PintMeasurementUnit
+cco:PintMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:alternative_label "pt"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pint Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundFootMeasurementUnit
+cco:PoundFootMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTorque ;
+ cco:acronym "lb ft"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pound Foot Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundFootSecondSquareMeasurementUnit
+cco:PoundFootSecondSquareMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfRotationalInertia ;
+ cco:acronym "lb ft s^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pound Foot Second Square Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundForceMeasurementUnit
+cco:PoundForceMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfForce ;
+ cco:alternative_label "lbf"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pound Force Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundMeasurementUnit
+cco:PoundMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "lb"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pound Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundMoleMeasurementUnit
+cco:PoundMoleMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAmountOfSubstance ;
+ cco:alternative_label "lb-mol"^^xsd:string ,
+ "lbmol"^^xsd:string ,
+ "pound-mole"^^xsd:string ;
+ cco:is_tokenized_by "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pound-Mole Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundPerSecondMeasurementUnit
+cco:PoundPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMassFlowRate ;
+ cco:alternative_label "lb/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pound Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/PoundsPerSquareInchMeasurementUnit
+cco:PoundsPerSquareInchMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPressure ;
+ cco:alternative_label "psi"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Pounds Per Square Inch Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/QuartMeasurementUnit
+cco:QuartMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:acronym "qt"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Quart Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/QuarticMeterMeasurementUnit
+cco:QuarticMeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAreaMomentOfInertia ;
+ cco:SI_unit_symbol "m^4"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Quartic Meter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RadianMeasurementUnit
+cco:RadianMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:SI_unit_label "radian"^^xsd:string ;
+ cco:SI_unit_symbol "rad"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Radian Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RevolutionsPerDayMeasurementUnit
+cco:RevolutionsPerDayMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:alternative_label "r/day"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Revolutions Per Day Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/RevolutionsPerMinuteMeasurementUnit
+cco:RevolutionsPerMinuteMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:alternative_label "r/min"^^xsd:string ,
+ "rpm"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Revolutions Per Minute Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SecondMeasurementUnit
+cco:SecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:SI_unit_label "second"^^xsd:string ;
+ cco:SI_unit_symbol "s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SecondOfArcMeasurementUnit
+cco:SecondOfArcMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:SI_unit_symbol "\""^^xsd:string ;
+ cco:alternative_label "Arcsecond"^^xsd:string ,
+ "arcsec"^^xsd:string ,
+ "as"^^xsd:string ,
+ "asec"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Second of Arc Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ShaftHorsepowerMeasurementUnit
+cco:ShaftHorsepowerMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPower ;
+ cco:alternative_label "shp"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Shaft Horsepower Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ShortTonMeasurementUnit
+cco:ShortTonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "Net Ton"^^xsd:string ,
+ "ton (US)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Short Ton Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SlugFootPerSecondMeasurementUnit
+cco:SlugFootPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMomentum ;
+ cco:alternative_label "slug ft/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Slug Foot Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SlugMeasurementUnit
+cco:SlugMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMass ;
+ cco:alternative_label "slug"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Slug Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SlugPerSecondMeasurementUnit
+cco:SlugPerSecondMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfMassFlowRate ;
+ cco:alternative_label "slug/s"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Slug Per Second Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SoneMeasurementUnit
+cco:SoneMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfSoundLevel ;
+ cco:alternative_label "sone"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Sone Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareCentimeterMeasurementUnit
+cco:SquareCentimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "cm^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Centimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareDecimeterMeasurementUnit
+cco:SquareDecimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "dm^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Decimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareFootMeasurementUnit
+cco:SquareFootMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "ft^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Foot Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareInchMeasurementUnit
+cco:SquareInchMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "in^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Inch Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareKilometerMeasurementUnit
+cco:SquareKilometerMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "km^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Kilometer Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareMeterMeasurementUnit
+cco:SquareMeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "m^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Meter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareMileMeasurementUnit
+cco:SquareMileMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "mi^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Mile Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareMillimeterMeasurementUnit
+cco:SquareMillimeterMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "mm^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Millimeter Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/SquareYardMeasurementUnit
+cco:SquareYardMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfArea ;
+ cco:alternative_label "yd^2"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Square Yard Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/StandardCubicCentimeterPerMinuteMeasurementUnit
+cco:StandardCubicCentimeterPerMinuteMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolumetricFlowRate ;
+ cco:acronym "sccm"^^xsd:string ;
+ cco:alternative_label "cm^3/min"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Standard Cubic Centimeter Per Minute Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TablespoonMeasurementUnit
+cco:TablespoonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:acronym "T"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Tablespoon Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TeaspoonMeasurementUnit
+cco:TeaspoonMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:acronym "t"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Teaspoon Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TerahertzMeasurementUnit
+cco:TerahertzMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfFrequency ;
+ cco:alternative_label "THz"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Terahertz Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TurnMeasurementUnit
+cco:TurnMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfAngle ;
+ cco:alternative_label "Cycle"^^xsd:string ,
+ "Full Circle"^^xsd:string ,
+ "Revolution"^^xsd:string ,
+ "Rotation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Turn Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/TwentyFootEquivalentUnit
+cco:TwentyFootEquivalentUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfVolume ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Twenty Foot Equivalent Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VoltAmpereMeasurementUnit
+cco:VoltAmpereMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfElectromagneticForce ;
+ cco:alternative_label "VA"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Volt Ampere Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/VoltMeasurementUnit
+cco:VoltMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfElectromagneticForce ;
+ cco:alternative_label "V"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Volt Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WattMeasurementUnit
+cco:WattMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfPower ;
+ cco:SI_unit_label "watt"^^xsd:string ;
+ cco:SI_unit_symbol "W"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Watt Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/WeekMeasurementUnit
+cco:WeekMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Week Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/YardMeasurementUnit
+cco:YardMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfLength ;
+ cco:alternative_label "yrd"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Yard Measurement Unit"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/YearMeasurementUnit
+cco:YearMeasurementUnit rdf:type owl:NamedIndividual ,
+ cco:MeasurementUnitOfTime ;
+ cco:alternative_label "yr"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/UnitsOfMeasureOntology"^^xsd:string ;
+ rdfs:label "Year Measurement Unit"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/Version 1_1 Release Change File.xlsx b/Version 1_1 Release Change File.xlsx
new file mode 100644
index 0000000..5236cec
Binary files /dev/null and b/Version 1_1 Release Change File.xlsx differ
diff --git a/common-core-build-files/ModalAgentOntology.ttl b/common-core-build-files/ModalAgentOntology.ttl
new file mode 100644
index 0000000..724c626
--- /dev/null
+++ b/common-core-build-files/ModalAgentOntology.ttl
@@ -0,0 +1,1007 @@
+@prefix : .
+@prefix dc: .
+@prefix cco: .
+@prefix mro: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ rdfs:comment "The counterpart modal relations to those contained in the Agent Ontology."^^xsd:string ;
+ owl:versionInfo "COPYRIGHT © 2015 CUBRC, Inc."^^xsd:string ,
+ "October 16, 2017"^^xsd:string ,
+ "Version 1.0.1"^^xsd:string ;
+ rdfs:label "Modal Agent Ontology"^^xsd:string .
+
+
+
+#################################################################
+# Object Properties
+#################################################################
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_capability
+mro:aggregate_has_capability rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:aggregrate_bearer_of ;
+ owl:inverseOf mro:capability_of_aggregate ;
+ rdfs:domain cco:GroupOfAgents ;
+ rdfs:range cco:AgentCapability ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "aggregate has capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/capability_of
+mro:capability_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:realizable_entity_of ;
+ owl:inverseOf mro:has_capability ;
+ rdfs:domain cco:AgentCapability ;
+ rdfs:range cco:Agent ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "capability of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/capability_of_aggregate
+mro:capability_of_aggregate rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:inheres_in_aggregate ;
+ rdfs:domain cco:AgentCapability ;
+ rdfs:range cco:GroupOfAgents ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "capability of aggregate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/delimits
+mro:delimits rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_delimited_by ;
+ rdf:type owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain cco:GeopoliticalEntity ;
+ rdfs:range cco:Organization ;
+ cco:definition "An instance of Geopolitical Entity gpe1 delimits some Government g1 iff gpe1 is the area with which g1 can legally exercies its authority."^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Delimitation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "delimits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_affiliate
+mro:has_affiliate rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_affiliated_with ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has affiliate"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_aunt
+mro:has_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_brother
+mro:has_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ owl:inverseOf mro:is_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_brother_in_law
+mro:has_brother_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_brother_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has brother in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_capability
+mro:has_capability rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_realizable_entity ;
+ rdfs:domain cco:Agent ;
+ rdfs:range cco:AgentCapability ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has capability"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_daughter
+mro:has_daughter rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ owl:inverseOf mro:is_daughter_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has daughter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_daughter_in_law
+mro:has_daughter_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_daughter_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has daughter in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_familial_relationship_to
+mro:has_familial_relationship_to rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A relationship between persons by virtue of ancestry or legal union"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has familial relationship to"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_father
+mro:has_father rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ owl:inverseOf mro:is_father_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has father"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_father_in_law
+mro:has_father_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_father_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has father in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_granddaughter
+mro:has_granddaughter rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ owl:inverseOf mro:is_granddaughter_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has granddaughter"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandfather
+mro:has_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ owl:inverseOf mro:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandmother
+mro:has_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ owl:inverseOf mro:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandson
+mro:has_grandson rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ owl:inverseOf mro:is_grandson_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has grandson"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_half_brother
+mro:has_half_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ owl:inverseOf mro:is_half_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has half brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_half_sister
+mro:has_half_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ owl:inverseOf mro:is_half_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has half sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_husband
+mro:has_husband rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ owl:inverseOf mro:is_husband_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has husband"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_aunt
+mro:has_maternal_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_aunt ;
+ owl:inverseOf mro:is_maternal_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has maternal aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_first_cousin
+mro:has_maternal_first_cousin rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ owl:inverseOf mro:is_maternal_first_cousin_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has maternal first cousin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_grandfather
+mro:has_maternal_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandfather ;
+ owl:inverseOf mro:is_maternal_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has maternal grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_grandmother
+mro:has_maternal_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandmother ;
+ owl:inverseOf mro:is_maternal_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has maternal grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_maternal_uncle
+mro:has_maternal_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_uncle ;
+ owl:inverseOf mro:is_maternal_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has maternal uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_mother
+mro:has_mother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ owl:inverseOf mro:is_mother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has mother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_mother_in_law
+mro:has_mother_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_mother_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has mother in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_nephew
+mro:has_nephew rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_nephew_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has nephew"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_niece
+mro:has_niece rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_niece_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has niece"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_organizational_context
+mro:has_organizational_context rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_organizational_context_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has organizational context"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_parent
+mro:has_parent rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has parent"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_aunt
+mro:has_paternal_aunt rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_aunt ;
+ owl:inverseOf mro:is_paternal_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has paternal aunt"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_first_cousin
+mro:has_paternal_first_cousin rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ owl:inverseOf mro:is_paternal_first_cousin_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has paternal first cousin"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_grandfather
+mro:has_paternal_grandfather rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandfather ;
+ owl:inverseOf mro:is_paternal_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has paternal grandfather"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_grandmother
+mro:has_paternal_grandmother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_grandmother ;
+ owl:inverseOf mro:is_paternal_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has paternal grandmother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_paternal_uncle
+mro:has_paternal_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_uncle ;
+ owl:inverseOf mro:is_paternal_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has paternal uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_recipient
+mro:has_recipient rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:receives ;
+ rdfs:range cco:Agent ;
+ cco:definition "has_recipient is a relationship between an Act Of Communication c1 and an Agent a1 such that c1 has_recipient a1 iff a1 is the receiver and decoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has recipient"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_sender
+mro:has_sender rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_participant ;
+ owl:inverseOf mro:sends ;
+ rdfs:range cco:Agent ;
+ cco:definition "has_sender is a relationship between an Act Of Communication c1 and an Agent a1 such that c1 has_sender a1 iff a1 is the initiator and encoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has sender"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_sister
+mro:has_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ owl:inverseOf mro:is_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_sister_in_law
+mro:has_sister_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_sister_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has sister in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_son
+mro:has_son rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ owl:inverseOf mro:is_son_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has son"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_son_in_law
+mro:has_son_in_law rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ owl:inverseOf mro:is_son_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has son in law"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_step_brother
+mro:has_step_brother rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ owl:inverseOf mro:is_step_brother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has step brother"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_step_sister
+mro:has_step_sister rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ owl:inverseOf mro:is_step_sister_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has step sister"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_subordinate_role
+mro:has_subordinate_role rdf:type owl:ObjectProperty ;
+ owl:inverseOf mro:is_subordinate_role_to ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "For all x,y,t: x has subordinate role y at t iff: x is an instance of bfo:BFO_0000023 (Role) at time t, and y is an instance of bfo:BFO_0000023 (Role) at time t, and there is some z such that x is realized by z and z is an instance of Act which creates, modifies, transfers, or eliminates some u such that u is an Action Regulation at time t, and u is addressed to the bearer of y."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "has subordinate role"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_subsidiary
+mro:has_subsidiary rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_affiliate ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:Organization ;
+ cco:definition "An Organization o1 has_subsidiary Organization o2 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies."^^xsd:string ;
+ cco:definition_source " http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has subsidiary"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_uncle
+mro:has_uncle rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has uncle"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_wife
+mro:has_wife rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ owl:inverseOf mro:is_wife_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "has wife"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_affiliated_with
+mro:is_affiliated_with rdf:type owl:ObjectProperty ;
+ rdfs:domain [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ cco:Person
+ )
+ ] ;
+ rdfs:range [ rdf:type owl:Class ;
+ owl:unionOf ( cco:Agent
+ cco:Organization
+ )
+ ] ;
+ cco:definition "An Agent a1 is affiliated with some Agent a2 by virtue of their having any social or business relationship."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is affiliated with"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_ancestor_of
+mro:is_ancestor_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_descendent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is ancestor of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_aunt_of
+mro:is_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_brother_in_law_of
+mro:is_brother_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is brother-in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_brother_of
+mro:is_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_child_of
+mro:is_child_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is child of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_daughter_in_law_of
+mro:is_daughter_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is daughter in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_daughter_of
+mro:is_daughter_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is daughter of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_delimited_by
+mro:is_delimited_by rdf:type owl:ObjectProperty ,
+ owl:FunctionalProperty ,
+ owl:InverseFunctionalProperty ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:GeopoliticalEntity ;
+ cco:definition "An instance of Government g1 is_delimited_by some Geopolitical Entity gpe1 iff gpe1 is the area with which g1 can legally exercies its authority"^^xsd:string ;
+ cco:definition_source "http://en.wikipedia.org/wiki/Delimitation"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "is delimited by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_descendent_of
+mro:is_descendent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is descendent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_father_in_law_of
+mro:is_father_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is father in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_father_of
+mro:is_father_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is father of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_first_cousin_of
+mro:is_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_first_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandchild_of
+mro:is_grandchild_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is grandchild of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_granddaughter_of
+mro:is_granddaughter_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is granddaughter of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandfather_of
+mro:is_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandmother_of
+mro:is_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandparent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandparent_of
+mro:is_grandparent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is grandparent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_grandson_of
+mro:is_grandson_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandchild_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is grandson of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_half_brother_of
+mro:is_half_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is half-brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_half_sibling_of
+mro:is_half_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_half_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is half-sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_half_sister_of
+mro:is_half_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_half_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is half sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_husband_of
+mro:is_husband_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is husband of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_in_law_of
+mro:is_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_in_law_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_aunt_of
+mro:is_maternal_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is maternal aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_first_cousin_of
+mro:is_maternal_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ cco:definition "Person A is maternal first cousin of Person B iff Person B has mother M and M has sibling P and P is parent of Person A."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:comment "Comment is_maternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"^^xsd:string ;
+ rdfs:label "is maternal first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_grandfather_of
+mro:is_maternal_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is maternal grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_grandmother_of
+mro:is_maternal_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is maternal grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_maternal_uncle_of
+mro:is_maternal_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is maternal uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_mother_in_law_of
+mro:is_mother_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is mother in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_mother_of
+mro:is_mother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_parent_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is mother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_nephew_of
+mro:is_nephew_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is nephew of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_niece_of
+mro:is_niece_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is niece of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_organizational_context_of
+mro:is_organizational_context_of rdf:type owl:ObjectProperty ;
+ rdfs:domain cco:Organization ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:definition "An Organization is a organizational context of a role if a person's affiliation with the organization is a prerequisite for being a bearer of the role or if the organization ascribes the role to some entity."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is organizational context of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_parent_of
+mro:is_parent_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is parent of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_aunt_of
+mro:is_paternal_aunt_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_aunt_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is paternal aunt of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_first_cousin_of
+mro:is_paternal_first_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_first_cousin_of ;
+ cco:definition "Person A is paternal first cousin of Person B iff Person B has father F and F has sibling P and P is parent of Person A."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:comment "Comment is_paternal_first_cousin_of is not a symmetric relationship as is is_first_cousin_of"^^xsd:string ;
+ rdfs:label "is paternal first cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_grandfather_of
+mro:is_paternal_grandfather_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandfather_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is paternal grandfather of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_grandmother_of
+mro:is_paternal_grandmother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_grandmother_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is paternal grandmother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_paternal_uncle_of
+mro:is_paternal_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_uncle_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is paternal uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_permitted_by
+mro:is_permitted_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ owl:inverseOf mro:permits ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range cco:ActionRegulation ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "is permitted by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_prohibited_by
+mro:is_prohibited_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ owl:inverseOf mro:prohibits ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range cco:ActionRegulation ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "is prohibited by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_required_by
+mro:is_required_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribed_by ;
+ owl:inverseOf mro:requires ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain obo:BFO_0000015 ;
+ rdfs:range cco:ActionRegulation ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "is required by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_second_cousin_of
+mro:is_second_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_second_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is second cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_sibling_of
+mro:is_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_sister_in_law_of
+mro:is_sister_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is sister-in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_sister_of
+mro:is_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_son_in_law_of
+mro:is_son_in_law_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_in_law_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is son in-law of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_son_of
+mro:is_son_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_child_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is son of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_spouse_of
+mro:is_spouse_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_spouse_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is spouse of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_step_brother_of
+mro:is_step_brother_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is step-brother of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_step_sibling_of
+mro:is_step_sibling_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_step_sibling_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is step-sibling of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_step_sister_of
+mro:is_step_sister_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_step_sibling_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is step-sister of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_subordinate_role_to
+mro:is_subordinate_role_to rdf:type owl:ObjectProperty ;
+ rdfs:domain obo:BFO_0000023 ;
+ rdfs:range obo:BFO_0000023 ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "is subordinate role to"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_subsidiary_of
+mro:is_subsidiary_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_affiliated_with ;
+ rdfs:domain cco:Organization ;
+ rdfs:range cco:Organization ;
+ cco:definition "An Organization o2 is_subsidiary_of Organization o1 iff o1 controls o2 by having the capacity to determine the outcome of decisions about o2's financial and operating policies. "^^xsd:string ;
+ cco:definition_source "http://www.austlii.edu.au/legis/cth/consol_act/ca2001172/s50aa.html)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is subsidiary of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_supervised_by
+mro:is_supervised_by rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_affiliated_with ;
+ owl:inverseOf mro:supervises ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A person p1 is supervised by a person p2 by virtue of their being directed, managed, or overseen by p2."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/supervise)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is supervised by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_third_cousin_of
+mro:is_third_cousin_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ owl:inverseOf mro:is_third_cousin_of ;
+ rdf:type owl:SymmetricProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is third cousin of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_uncle_of
+mro:is_uncle_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_familial_relationship_to ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is uncle of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_used_by
+mro:is_used_by rdf:type owl:ObjectProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is used by"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/is_wife_of
+mro:is_wife_of rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:is_spouse_of ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "is wife of"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/permits
+mro:permits rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain cco:ActionRegulation ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "permits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/prohibits
+mro:prohibits rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain cco:ActionRegulation ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "prohibits"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/receives
+mro:receives rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain cco:Agent ;
+ cco:definition "receives is a relationship between an Agent a1 and an Act Of Communication c1 such that a1 receives c1 iff a1 is the recipient and decoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "receives"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/requires
+mro:requires rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:prescribes ;
+ rdf:type owl:AsymmetricProperty ,
+ owl:IrreflexiveProperty ;
+ rdfs:domain cco:ActionRegulation ;
+ rdfs:range obo:BFO_0000015 ;
+ cco:definition "For all x,y,t: 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."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology" ;
+ rdfs:label "requires" .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/sends
+mro:sends rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:participates_in ;
+ rdfs:domain cco:Agent ;
+ cco:definition "sends is a relationship between an Agent a1 and an Act Of Communication c1 and such that a1 sends c1 iff a1 is the initiator and encoder of the InformationContentEntity participating in c1."^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "sends"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/supervises
+mro:supervises rdf:type owl:ObjectProperty ;
+ rdfs:subPropertyOf mro:has_affiliate ;
+ rdfs:domain cco:Person ;
+ rdfs:range cco:Person ;
+ cco:definition "A person p1 supervises a person p2 by virtue of their directing, managing, or overseeing by p1."^^xsd:string ;
+ cco:definition_source "http://en.wiktionary.org/wiki/supervise)"^^xsd:string ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "supervises"^^xsd:string .
+
+
+### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/uses
+mro:uses rdf:type owl:ObjectProperty ;
+ cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalAgentOntology"^^xsd:string ;
+ rdfs:label "uses"^^xsd:string .
+
+
+### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi
diff --git a/common-core-build-files/ModalArtifactOntology.ttl b/common-core-build-files/ModalArtifactOntology.ttl
new file mode 100644
index 0000000..8f9bff6
--- /dev/null
+++ b/common-core-build-files/ModalArtifactOntology.ttl
@@ -0,0 +1,48 @@
+@prefix : .
+@prefix dc: .
+@prefix bfo: .
+@prefix cco: .
+@prefix mro: .
+@prefix obo: .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix foaf: