From c2c668027d77d8d7cd29ec35f16f69706ab9d937 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh <> Date: Wed, 29 Mar 2023 21:30:36 -0400 Subject: [PATCH 01/12] Many changes to political entities. Added interest_in, vulnerability, and disrupting disposition --- AgentOntology.ttl | 448 +++++++++++++++++++++++++++++++++-- ExtendedRelationOntology.ttl | 34 ++- QualityOntology.ttl | 26 +- 3 files changed, 487 insertions(+), 21 deletions(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 9245080c..6515a997 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -6,16 +6,42 @@ @prefix xml: . @prefix xsd: . @prefix rdfs: . +@prefix skos: . +@prefix dcterms: . @base . rdf:type owl:Ontology ; owl:versionIRI ; owl:imports ; - ; - rdfs:label "Agent Ontology"@en ; + dcterms:license ; rdfs:comment "This ontology is designed to represent agents, especially persons and organizations, and their roles."@en ; + rdfs:label "Agent Ontology"@en ; owl:versionInfo "Version 1.4"@en . +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/bibliographicCitation +dcterms:bibliographicCitation rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created +dcterms:created rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator +dcterms:creator rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#editorialNote +skos:editorialNote rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel +skos:prefLabel rdf:type owl:AnnotationProperty . + + ################################################################# # Object Properties ################################################################# @@ -66,9 +92,9 @@ cco:delimits rdf:type owl:ObjectProperty ; owl:inverseOf cco:is_delimited_by ; rdf:type owl:FunctionalProperty , owl:InverseFunctionalProperty ; - rdfs:domain cco:GeopoliticalEntity ; + rdfs:domain cco:DelimitingDomain ; rdfs:range cco:Organization ; - cco:definition "An instance of Geopolitical Entity gpe1 delimits some Organization o1 iff gpe1 is the area within which o1 can legally operate."@en ; + cco:definition "An instance of Delimiting Domain dd1 delimits some Organization o1 iff dd1 is the area within which o1 can legally operate."@en ; cco:definition_source "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "delimits"@en . @@ -233,6 +259,21 @@ cco:has_husband rdf:type owl:ObjectProperty ; rdfs:label "has husband"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/has_interest_in +cco:has_interest_in rdf:type owl:ObjectProperty ; + owl:inverseOf cco:is_interest_of ; + rdfs:domain cco:Agent ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A relation between an entity and some process where the entity has an interest in that process."@en ; + cco:elucidation "There are four conditions in which an entity has an interest in some process. 1) Biological Condition: If a part (including improper part) of an organism has a function, then that organism has an interest in the realization of that function. 2) Artifactual Condition: If a part (including improper part) of an artifact has a function, then some agent or group of agents, at some time, has an interest in the realization of that function. 3) Prescription Condition: If an agent or group of agents has a plan, then it has an interest in the realization of all the processes and process-combinations prescribed by that plan. 4) Facilitation Condition: If (a) x has an interest in the realization of a disposition y, and (b) the realization of a disposition z facilitates the realization of disposition y, then (c) x has an interest in the realization of disposition z, and by 'facilitates' we mean that the occurrence of a process w, which realizes realization of z is either (1) required for y, to realize or (2) would contribute positively to the grade of, y's realization."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:label "has interest in"@en ; + skos:editorialNote "This term is meant to be weakly normative. The only sense in which the process is of positive normative value is that it's prescribed by the entity, or historically of evolutionary benefit to the entity's ancestors, or facilitates a process the entity has an interest in for the prior two reasons. The process an entity has an interest could in many or all ways be harmful to the entity."@en ; + skos:prefLabel "has interest in"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/has_maternal_aunt cco:has_maternal_aunt rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cco:has_aunt ; @@ -544,8 +585,8 @@ 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 Organization o1 is_delimited_by some Geopolitical Entity gpe1 iff gpe1 is the area within which o1 can legally operate."@en ; + rdfs:range cco:DelimitingDomain ; + cco:definition "An instance of Organization o1 is_delimited_by some Delimiting Domain dd1 iff dd1 is the area within which o1 can legally operate."@en ; cco:definition_source "https://en.wikipedia.org/w/index.php?title=Boundary_delimitation&oldid=1039137603"^^xsd:anyURI ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "is delimited by"@en . @@ -663,6 +704,18 @@ cco:is_in_law_of rdf:type owl:ObjectProperty ; rdfs:label "is in-law of"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/is_interest_of +cco:is_interest_of rdf:type owl:ObjectProperty ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range cco:Agent ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "The inverse of has_interest_in. " ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:label "is interest of"@en ; + skos:prefLabel "is interest of"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/is_maternal_aunt_of cco:is_maternal_aunt_of rdf:type owl:ObjectProperty ; rdfs:subPropertyOf cco:is_aunt_of ; @@ -1243,6 +1296,18 @@ cco:CitizenRole rdf:type owl:Class ; rdfs:label "Citizen Role"@en . + + + +### http://www.ontologyrepository.com/CommonCoreOntologies/City +cco:City rdf:type owl:Class ; + rdfs:subClassOf cco:LocalAdministrativeRegion ; + cco:definition "A Local Administrative Region 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."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "City"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/CivilOrganization cco:CivilOrganization rdf:type owl:Class ; owl:equivalentClass [ owl:intersectionOf ( cco:Organization @@ -1300,6 +1365,47 @@ cco:ContractorRole rdf:type owl:Class ; rdfs:label "Contractor Role"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/Country +cco:Country rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Domain of a Country"@en ; + skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Thus, instead of defining 'Country' we have defined four country elements found under the class 'Country Element'. We leave it to the users to define 'Country' as it suites their purposes."@en , + "What is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a county (it's a territory) but has a government, a distinct culture, and so on."@en ; + skos:prefLabel "Domain of a Country"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/CountryElement +cco:CountryElement rdf:type owl:Class ; + owl:equivalentClass [ rdf:type owl:Class ; + owl:unionOf ( cco:Country + cco:GovernmentOfACountry + cco:MaterialTerritoryOfACountry + cco:Populace + ) + ] ; + rdfs:subClassOf cco:ElementOfAPoliticalGeographicalEntity ; + dcterms:created "2023-02-17T19:02:16-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:alternative_label "Elements of a Country"@en ; + cco:definition "An Element of a Political Geographical Entity that exists, if a Country exists: If a Country exists, then there is a Domain of a Country, within which there is a Material Territory of a Country (land, air, water), and there is a Government of a Country delimited by that domain, and a Populace whom that Government has legitimate authority over."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Country Element"@en ; + skos:editorialNote "'Country' is exceedingly ambiguous. However, the notion is too common and useful to ignore. Thus, we define 'Country Element' and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; + skos:prefLabel "Country Element"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/County +cco:County rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity ; + cco:definition "A Government Domain that is part of either a First-Order or Second-Order Administrative Region."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "County"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/Crew cco:Crew rdf:type owl:Class ; rdfs:subClassOf cco:GroupOfPersons ; @@ -1308,6 +1414,27 @@ cco:Crew rdf:type owl:Class ; rdfs:label "Crew"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/DelimitingDomain +cco:DelimitingDomain rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:GeospatialRegion + [ rdf:type owl:Restriction ; + owl:onProperty cco:delimits ; + owl:someValuesFrom cco:Organization + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:GeospatialRegion ; + owl:disjointWith cco:DivisonOfGeopoliticalEntity ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:alternative_label "Delimiting Domain"@en ; + cco:definition "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Delimiting Domain"@en ; + skos:prefLabel "Delimiting Domain"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/Disability cco:Disability rdf:type owl:Class ; rdfs:subClassOf obo:BFO_0000019 ; @@ -1325,6 +1452,20 @@ cco:Disease rdf:type owl:Class ; rdfs:label "Disease"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/DivisonOfGeopoliticalEntity +cco:DivisonOfGeopoliticalEntity rdf:type owl:Class ; + rdfs:subClassOf cco:GeospatialRegion , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000050 ; + owl:someValuesFrom cco:DelimitingDomain + ] ; + cco:definition "A Geospatial Region that is a fiat division of a Delimiting Domain and not a Delimiting Domain."@en ; + cco:example_of_usage "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:comment "Instances of this class are not proper Delimiting Domains, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; + rdfs:label "Division of Delimiting Domain"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/EducationalOrganization cco:EducationalOrganization rdf:type owl:Class ; rdfs:subClassOf cco:Organization ; @@ -1334,6 +1475,25 @@ cco:EducationalOrganization rdf:type owl:Class ; rdfs:label "Educational Organization"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/ElementOfAPoliticalGeographicalEntity +cco:ElementOfAPoliticalGeographicalEntity rdf:type owl:Class ; + owl:equivalentClass [ rdf:type owl:Class ; + owl:unionOf ( cco:GeopoliticalEntity + cco:Government + cco:MaterialTerritoryOfAGovernmentDomain + cco:Populace + ) + ] ; + rdfs:subClassOf obo:BFO_0000004 ; + dcterms:created "2023-02-17T18:57:10-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "An independent continuant that exists, if a Political Geographical Entity exists: If a Political Geographical Entity exists, then there is Government Domain, within which there is a Material Territory of a Government Domain (land, air, water), and there is an Government delimited by that Government Domain, and a Populace whom that Government has legitimate authority over."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Element Of A Political Geographical Entity"@en ; + skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; + skos:prefLabel "Element Of A Political Geographical Entity"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/Enemy cco:Enemy rdf:type owl:Class ; owl:equivalentClass [ owl:intersectionOf ( cco:Person @@ -1419,7 +1579,7 @@ cco:Family rdf:type owl:Class ; ### 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."@en ; + cco:definition "A Biological Sex inhering in an individual that only produces gametes that can be fertilized by male gametes."@en ; cco:definition_source "http://purl.org/obo/owl/PATO#PATO_0000383" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Female Sex"@en . @@ -1442,17 +1602,102 @@ cco:FinancialValueOfProperty rdf:type owl:Class ; rdfs:label "Financial Value of Property"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion +cco:FirstOrderAdministrativeRegion rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000050 ; + owl:someValuesFrom cco:Country + ] ; + cco:definition "A Government Domain that is a primary administrative division of a Country."@en ; + cco:definition_source "http://www.geonames.org/export/codes.html" ; + cco:example_of_usage "a state in the United States" ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "First-Order Administrative Region"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/FourthOrderAdministrativeRegion +cco:FourthOrderAdministrativeRegion rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000050 ; + owl:someValuesFrom cco:ThirdOrderAdministrativeRegion + ] ; + cco:definition "A Government Domain that is a subdivision of a Third-Order Administrative Region."@en ; + cco:definition_source "http://www.geonames.org/export/codes.html" ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Fourth-Order Administrative Region"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalEntity +cco:GeopoliticalEntity rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:DelimitingDomain + [ rdf:type owl:Restriction ; + owl:onProperty cco:delimits ; + owl:someValuesFrom cco:Government + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:DelimitingDomain ; + cco:definition "A Delimiting Domain that delimits the authority of a Government to exercise its control within the bounded area."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Government Domain"@en . + + +### 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 Government Domain."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Government Domain Border"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalOrganization +cco:GeopoliticalOrganization rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:Organization + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0000053 ; + owl:someValuesFrom cco:GeopoliticalPowerRole + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:Organization ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "An Organization that bears a Geopolitical Power Role."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Geopolitical Organization"@en ; + skos:prefLabel "Geopolitical Organization"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole +cco:GeopoliticalPowerRole rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A Role had by an Organization that is perceived by an International Community as capable of performing influential acts in that community and is realized in performing such acts."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Geopolitical Power Role"@en ; + skos:prefLabel "Geopolitical Power Role"@en . + + ### 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 + owl:someValuesFrom cco:DelimitingDomain ] ; - cco:definition "An Organization that exercises executive, legislative, or judicial authority over a Geopolitical Entity."@en ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "An Organization that is the highest legitimate authority delimited by some Delimiting Domain and that exercises executive, legislative, or judicial authority in that Domain."@en ; cco:definition_source "https://en.wikipedia.org/w/index.php?title=Government&oldid=1063736308"^^xsd:anyURI ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - rdfs:label "Government"@en . + rdfs:label "Government"@en ; + skos:editorialNote "Highest legitimate authority should not be confused with highest legitimate authority of a particular kind. For example, while the judicial branch of the United States government has the highest judicial authority in a Delimiting Domain, it is not the highest legitimate authority delimited by that domain. The combination of executive, judicial, and legislative branches is higher because it wields more legitimate authority than any branch on its own."@en , + "Importantly, the definition states \"highest legitimate authority delimited by some Delimiting Domain\" and not \"highest legitimate authority in some Delimiting Domain.\" The government of Wales is the highest legitimate authority delimited by some Delimiting Domain but it is not the highest legitimate authority in that domain, which would be the government of the United Kingdom."@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentAgency @@ -1464,7 +1709,26 @@ cco:GovernmentAgency rdf:type owl:Class ; ] ; cco:definition "An Organization that is part of a Government and is responsible for the oversight and administration of specific governmental functions."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - rdfs:label "Government Agency"@en . + rdfs:label "Government Organization"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentOfACountry +cco:GovernmentOfACountry rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:Government + [ rdf:type owl:Restriction ; + owl:onProperty cco:is_delimited_by ; + owl:someValuesFrom cco:Country + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:Government ; + dcterms:created "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Government of a Country"@en ; + skos:prefLabel "Government of a Country"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/GroupOfAgents @@ -1544,6 +1808,17 @@ cco:IncorporatedOrganization rdf:type owl:Class ; rdfs:label "Incorporated Organization"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/InternationalCommunity +cco:InternationalCommunity rdf:type owl:Class ; + rdfs:subClassOf cco:GroupOfAgents ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "International Community"@en ; + skos:prefLabel "International Community"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/InterpersonalRelationshipRole cco:InterpersonalRelationshipRole rdf:type owl:Class ; rdfs:subClassOf obo:BFO_0000023 ; @@ -1573,6 +1848,15 @@ cco:LanguageSkill rdf:type owl:Class ; rdfs:label "Language Skill"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/LocalAdministrativeRegion +cco:LocalAdministrativeRegion rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity ; + cco:alternative_label "Locality"@en ; + cco:definition "A Government Domain that delimits a local Government."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Local Administrative Region"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/MaleSex cco:MaleSex rdf:type owl:Class ; rdfs:subClassOf cco:BiologicalSex ; @@ -1582,6 +1866,42 @@ cco:MaleSex rdf:type owl:Class ; rdfs:label "Male Sex"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfACountry +cco:MaterialTerritoryOfACountry rdf:type owl:Class ; + rdfs:subClassOf cco:MaterialTerritoryOfAGovernmentDomain , + [ owl:intersectionOf ( cco:MaterialTerritoryOfAGovernmentDomain + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0001018 ; + owl:someValuesFrom cco:Country + ] + ) ; + rdf:type owl:Class + ] ; + dcterms:created "2023-02-06T10:14:09-05:00"@en ; + cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Material Territory of a Country"@en ; + skos:prefLabel "Material Territory of a Country"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain +cco:MaterialTerritoryOfAGovernmentDomain rdf:type owl:Class ; + rdfs:subClassOf cco:PortionOfGeosphere , + [ owl:intersectionOf ( cco:PortionOfGeosphere + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0001018 ; + owl:someValuesFrom cco:GeopoliticalEntity + ] + ) ; + rdf:type owl:Class + ] ; + dcterms:created "2023-02-06T10:14:09-05:00"@en ; + cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Government Domain"@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Material Territory of a Government Domain"@en ; + skos:prefLabel "Material Territory of a Government Domain"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryPersonnelForce cco:MilitaryPersonnelForce rdf:type owl:Class ; rdfs:subClassOf cco:ArmedForce ; @@ -1594,7 +1914,7 @@ cco:MilitaryPersonnelForce rdf:type owl:Class ; ### 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."@en ; + cco:definition "An Allegiance Role that inheres in an Agent by virtue of that Agent not performing or being committed to performing Acts that have as their Objective to either support or undermine the Objectives of an Agent or Group of Agents involved in some conflict."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Neutral Role"@en . @@ -1715,6 +2035,40 @@ cco:ParamilitaryForce rdf:type owl:Class ; rdfs:label "Paramilitary Force"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResident +cco:PermanentResident rdf:type owl:Class ; + owl:equivalentClass [ owl:intersectionOf ( cco:Person + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0000087 ; + owl:someValuesFrom cco:PermanentResidentRole + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:Person ; + cco:definition "A person with a Permanent Residence Role."@en ; + dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + skos:prefLabel "Permanent Resident"@en ; + rdfs:label "Permanent Resident"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResidentRole +cco:PermanentResidentRole rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000023 ; + dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + dcterms:bibliographicCitation "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; + cco:definition "A role inhering in a person who is recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + skos:prefLabel "PermanentResidentRole"@en ; + rdfs:label "Permanent Resident Role"@en . + + + + + ### http://www.ontologyrepository.com/CommonCoreOntologies/Person cco:Person rdf:type owl:Class ; rdfs:subClassOf cco:Animal ; @@ -1758,12 +2112,24 @@ cco:PoliticalOrientation rdf:type owl:Class ; ### 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."@en ; + cco:definition "A Group of Persons forming the total population of some Government Domain."@en ; cco:definition_source "https://en.wikipedia.org/w/index.php?title=Population&oldid=1059148871"^^xsd:anyURI ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Populace"@en . + + + +### 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."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Province"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/Religion cco:Religion rdf:type owl:Class ; rdfs:subClassOf cco:InformationContentEntity ; @@ -1798,6 +2164,19 @@ cco:Scar rdf:type owl:Class ; rdfs:label "Scar"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion +cco:SecondOrderAdministrativeRegion rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000050 ; + owl:someValuesFrom cco:FirstOrderAdministrativeRegion + ] ; + cco:definition "A Government Domain that is a subdivision of a First-Order Administrative Region."@en ; + cco:definition_source "http://www.geonames.org/export/codes.html" ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Second-Order Administrative Region"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/ServiceProvider cco:ServiceProvider rdf:type owl:Class ; rdfs:subClassOf cco:Organization ; @@ -1852,6 +2231,16 @@ cco:SocialNetwork rdf:type owl:Class ; rdfs:label "Social Network"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/State +cco:State rdf:type owl:Class ; + rdfs:subClassOf cco:FirstOrderAdministrativeRegion ; + cco:alternative_label "State"@en ; + 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."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Constituent State"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/Tattoo cco:Tattoo rdf:type owl:Class ; rdfs:subClassOf cco:BodilyComponent ; @@ -1861,6 +2250,28 @@ cco:Tattoo rdf:type owl:Class ; rdfs:label "Tattoo"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion +cco:ThirdOrderAdministrativeRegion rdf:type owl:Class ; + rdfs:subClassOf cco:GeopoliticalEntity , + [ rdf:type owl:Restriction ; + owl:onProperty obo:BFO_0000050 ; + owl:someValuesFrom cco:SecondOrderAdministrativeRegion + ] ; + cco:definition "A Government Domain that is a subdivision of a Second-Order Administrative Region."@en ; + cco:definition_source "http://www.geonames.org/export/codes.html" ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Third-Order Administrative Region"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/Town +cco:Town rdf:type owl:Class ; + rdfs:subClassOf cco:LocalAdministrativeRegion ; + cco:definition "A Local Administrative Region 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."@en ; + cco:definition_source "http://www.dictionary.com/browse/town" ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Town"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/UnalliedPerson cco:UnalliedPerson rdf:type owl:Class ; owl:equivalentClass [ owl:intersectionOf ( cco:Person @@ -1878,4 +2289,13 @@ cco:UnalliedPerson rdf:type owl:Class ; rdfs:label "Neutral Person"@en . -### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi +### http://www.ontologyrepository.com/CommonCoreOntologies/Village +cco:Village rdf:type owl:Class ; + rdfs:subClassOf cco:LocalAdministrativeRegion ; + cco:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; + cco:definition_source "http://www.merriam-webster.com/dictionary/village" ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Village"@en . + + +### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi diff --git a/ExtendedRelationOntology.ttl b/ExtendedRelationOntology.ttl index 5156db08..d6ba9268 100644 --- a/ExtendedRelationOntology.ttl +++ b/ExtendedRelationOntology.ttl @@ -5,6 +5,8 @@ @prefix rdf: . @prefix xml: . @prefix xsd: . +@prefix skos: . +@prefix dcterms: . @prefix rdfs: . @base . @@ -42,6 +44,32 @@ cco:code_license rdf:type owl:AnnotationProperty ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; rdfs:label "code license"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/is_disrupted_by +cco:is_disrupted_by rdf:type owl:ObjectProperty ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + owl:inverseOf cco:is_disrupted_by ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + cco:definition "Inverse of disrupts." ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; + rdfs:label "is disrupted by"@en ; + skos:prefLabel "is disrupted by"@en . + +### http://www.ontologyrepository.com/CommonCoreOntologies/disrupts +cco:disrupts rdf:type owl:ObjectProperty ; + owl:inverseOf cco:is_disrupted_by ; + rdfs:domain obo:BFO_0000015 ; + rdfs:range obo:BFO_0000015 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A relation where one process disrupts another process from occurring as it would have."@en ; + cco:elucidation "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from realizing in that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "disrupts"@en ; + skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; + skos:prefLabel "disrupts"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/content_license cco:content_license rdf:type owl:AnnotationProperty ; @@ -335,7 +363,7 @@ cco:has_accomplice rdf:type owl:ObjectProperty ; rdfs:subPropertyOf obo:RO_0000057 ; 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."@en ; + cco:definition "A Processual Entity p1 has_accomplice some agent a1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ; cco:definition_source "https://en.wikipedia.org/w/index.php?title=Accomplice&oldid=1002047204"^^xsd:anyURI ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; rdfs:label "has accomplice"@en . @@ -347,7 +375,7 @@ cco:has_input rdf:type owl:ObjectProperty ; owl:inverseOf cco:is_input_of ; rdfs:domain obo:BFO_0000015 ; rdfs:range obo:BFO_0000002 ; - cco:definition "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the begining of y is a necessary condition for the start of y."@en ; + cco:definition "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; rdfs:label "has input"@en . @@ -430,7 +458,7 @@ cco:is_input_of rdf:type owl:ObjectProperty ; rdfs:subPropertyOf obo:RO_0000056 ; rdfs:domain obo:BFO_0000002 ; rdfs:range obo:BFO_0000015 ; - cco:definition "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the begining of y is a necessary condition for the start of y."@en ; + cco:definition "x is_input_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the beginning of y is a necessary condition for the start of y."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ; rdfs:label "is input of"@en . diff --git a/QualityOntology.ttl b/QualityOntology.ttl index b0ddeb98..ecb331ae 100644 --- a/QualityOntology.ttl +++ b/QualityOntology.ttl @@ -5,6 +5,8 @@ @prefix rdf: . @prefix xml: . @prefix xsd: . +@prefix skos: . +@prefix dcterms: . @prefix rdfs: . @base . @@ -226,6 +228,17 @@ cco:Cyan rdf:type owl:Class ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ; rdfs:label "Cyan"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/DisruptingDisposition +cco:DisruptingDisposition rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000016 ; + dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A disposition the realization of which would disrupt a process some entity has an interest in."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ; + skos:editorialNote "This is a defined class. A Disrupting Disposition is indexed by the interest_in object property. A disposition can be a Disrupting Disposition according to one index and not a Disrupting Disposition according to another index." ; + rdfs:label "Disrupting Disposition"@en ; + skos:prefLabel "Threat"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/Cylindrical cco:Cylindrical rdf:type owl:Class ; @@ -862,12 +875,17 @@ cco:Violet rdf:type owl:Class ; rdfs:label "Violet"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/Vulnerability cco:Vulnerability rdf:type 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."@en ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ; - rdfs:label "Vulnerability"@en . + rdfs:subClassOf cco:DisruptingDisposition ; + dcterms:bibliographicCitation "Vulnerability | Definition of Vulnerability by Oxford Dictionary on Lexico.Com Also Meaning of Vulnerability. https://web.archive.org/web/20210118111731/https://www.lexico.com/en/definition/vulnerability. Accessed 19 Dec. 2022. " ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + skos:editorialNote "This is defined class. A Vulnerability is indexed by the interest_in object property. A disposition can be a Vulnerability according to one index and not a Vulnerability according to another index." ; + cco:definition "A Disrupting Disposition the realization of which would disrupt a process that the bearer of the Disrupting Disposition has an interest in."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/QualityOntology"^^xsd:anyURI ; + rdfs:label "Vulnerability"@en ; + skos:prefLabel "Vulnerability"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/Wavy From a3d0dca6bc0f7c1618dc3c3c462ad267fa52ec83 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh <> Date: Wed, 29 Mar 2023 21:40:31 -0400 Subject: [PATCH 02/12] Moved Delimiting Domain (and cco:GeopoliticalEntity branch) branch to Agent Ontology --- GeospatialOntology.ttl | 268 ++++++++++++++--------------------------- 1 file changed, 91 insertions(+), 177 deletions(-) diff --git a/GeospatialOntology.ttl b/GeospatialOntology.ttl index f7178ace..5b5be429 100644 --- a/GeospatialOntology.ttl +++ b/GeospatialOntology.ttl @@ -6,16 +6,35 @@ @prefix xml: . @prefix xsd: . @prefix rdfs: . +@prefix skos: . +@prefix dcterms: . @base . rdf:type owl:Ontology ; owl:versionIRI ; owl:imports ; - ; + + dcterms:license ; rdfs:comment "This ontology is designed to represent sites, spatial regions, and other entities, especially those that are located near the surface of Earth, as well as the relations that hold between them."@en ; rdfs:label "Geospatial Ontology"@en ; owl:versionInfo "Version 1.4"@en . +################################################################# +# Annotation properties +################################################################# + +### http://purl.org/dc/terms/created +dcterms:created rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/creator +dcterms:creator rdf:type owl:AnnotationProperty . + + +### http://www.w3.org/2004/02/skos/core#prefLabel +skos:prefLabel rdf:type owl:AnnotationProperty . + + ################################################################# # Object Properties ################################################################# @@ -239,13 +258,6 @@ cco:CenterOfMass rdf:type owl:Class ; rdfs:label "Center of Mass"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/City -cco:City rdf:type owl:Class ; - rdfs:subClassOf cco:LocalAdministrativeRegion ; - cco:definition "A Local Administrative Region 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."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=City&oldid=1062635325"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "City"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/ConstructedFeature @@ -273,37 +285,18 @@ cco:CoordinateSystemAxis rdf:type owl:Class ; rdfs:label "Coordinate System Axis"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/Country -cco:Country rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity ; - cco:alternative_label "Sovereign State"@en ; - 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."@en ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Country"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/County -cco:County rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity ; - cco:definition "A Geopolitical Entity that is part of either a First-Order or Second-Order Administrative Region."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=County&oldid=1062817834"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "County"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/DivisonOfGeopoliticalEntity -cco:DivisonOfGeopoliticalEntity rdf:type owl:Class ; - rdfs:subClassOf cco:GeospatialRegion , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000050 ; - owl:someValuesFrom cco:GeopoliticalEntity - ] ; - owl:disjointWith cco:GeopoliticalEntity ; - cco:definition "A Geospatial Region that is a fiat division of a Geopolitical Entity and not a Geopolitical Entity."@en ; - cco:example_of_usage "Flatbush, French Quarter, Western New York, Texas Panhandle, Greater Montreal Area of Quebec, Pacific Northwest, southwest area of Al Anbar Province, Northern Iraq." ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:comment "Instances of this class are not proper geopolitical entities, but in some cases may have an organization that exercises some control over the region, such as the homeowners' association for a neighborhood."@en ; - rdfs:label "Division of Geopolitical Entity"@en . + + + + + + + + ### http://www.ontologyrepository.com/CommonCoreOntologies/EnvironmentalFeature @@ -314,31 +307,10 @@ cco:EnvironmentalFeature rdf:type owl:Class ; rdfs:label "Environmental Feature"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/FirstOrderAdministrativeRegion -cco:FirstOrderAdministrativeRegion rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000050 ; - owl:someValuesFrom cco:Country - ] ; - cco:definition "A Geopolitical Entity that is a primary administrative division of a Country."@en ; - cco:definition_source "http://www.geonames.org/export/codes.html" ; - cco:example_of_usage "a state in the United States" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "First-Order Administrative Region"@en . - - -### http://www.ontologyrepository.com/CommonCoreOntologies/FourthOrderAdministrativeRegion -cco:FourthOrderAdministrativeRegion rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000050 ; - owl:someValuesFrom cco:ThirdOrderAdministrativeRegion - ] ; - cco:definition "A Geopolitical Entity that is a subdivision of a Third-Order Administrative Region."@en ; - cco:definition_source "http://www.geonames.org/export/codes.html" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Fourth-Order Administrative Region"@en . + + + + ### http://www.ontologyrepository.com/CommonCoreOntologies/GeographicFeature @@ -349,21 +321,10 @@ cco:GeographicFeature rdf:type owl:Class ; rdfs:label "Geographic Feature"@en . -### 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."@en ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Geopolitical Entity"@en . -### 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."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Border&oldid=1061275162"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Geopolitical Entity Border"@en . + + ### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialBoundary @@ -490,13 +451,7 @@ cco:HydrographicFeature rdf:type owl:Class ; rdfs:label "Hydrographic Feature"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/LocalAdministrativeRegion -cco:LocalAdministrativeRegion rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity ; - cco:alternative_label "Locality"@en ; - cco:definition "A Geopolitical Entity that delimits a local Government."@en ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Local Administrative Region"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/LowDensityResidentialArea @@ -516,6 +471,12 @@ cco:MajorAxis rdf:type owl:Class ; rdfs:label "Major Axis"@en . + + + + + + ### http://www.ontologyrepository.com/CommonCoreOntologies/MinorAxis cco:MinorAxis rdf:type owl:Class ; rdfs:subClassOf obo:BFO_0000026 ; @@ -595,13 +556,52 @@ cco:PopulatedPlace rdf:type owl:Class ; rdfs:label "Populated place"@en . -### 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."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Province&oldid=1062496131"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Province"@en . +### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfAtmosphere +cco:PortionOfAtmosphere rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + cco:definition "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; + rdfs:label "Portion of Atmosphere"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfCryosphere +cco:PortionOfCryosphere rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + cco:definition "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; + cco:definition_source "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; + rdfs:label "Portion of Cryosphere"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere +cco:PortionOfGeosphere rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + cco:definition "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; + rdfs:label "Portion of Geosphere"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfHydrosphere +cco:PortionOfHydrosphere rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + cco:definition "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; + rdfs:label "Portion of Hydrosphere"@en . + + +### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLithosphere +cco:PortionOfLithosphere rdf:type owl:Class ; + rdfs:subClassOf obo:BFO_0000024 ; + cco:definition "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; + cco:definition_source "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; + rdfs:label "Portion of Lithosphere"@en . + + + ### http://www.ontologyrepository.com/CommonCoreOntologies/RollAxis @@ -621,17 +621,7 @@ cco:SeaLevel rdf:type owl:Class ; rdfs:label "Sea Level"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/SecondOrderAdministrativeRegion -cco:SecondOrderAdministrativeRegion rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000050 ; - owl:someValuesFrom cco:FirstOrderAdministrativeRegion - ] ; - cco:definition "A Geopolitical Entity that is a subdivision of a First-Order Administrative Region."@en ; - cco:definition_source "http://www.geonames.org/export/codes.html" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Second-Order Administrative Region"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/SemiMajorAxis @@ -650,14 +640,7 @@ cco:SemiMinorAxis rdf:type owl:Class ; rdfs:label "Semi-Minor Axis"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/State -cco:State rdf:type owl:Class ; - rdfs:subClassOf cco:FirstOrderAdministrativeRegion ; - cco:alternative_label "Constituent State"@en ; - 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."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Constituent_state&oldid=1063662102"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "State"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/Subcontinent @@ -669,17 +652,7 @@ cco:Subcontinent rdf:type owl:Class ; rdfs:label "Subcontinent"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/ThirdOrderAdministrativeRegion -cco:ThirdOrderAdministrativeRegion rdf:type owl:Class ; - rdfs:subClassOf cco:GeopoliticalEntity , - [ rdf:type owl:Restriction ; - owl:onProperty obo:BFO_0000050 ; - owl:someValuesFrom cco:SecondOrderAdministrativeRegion - ] ; - cco:definition "A Geopolitical Entity that is a subdivision of a Second-Order Administrative Region."@en ; - cco:definition_source "http://www.geonames.org/export/codes.html" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Third-Order Administrative Region"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalPath @@ -703,22 +676,8 @@ cco:ThreeDimensionalPosition rdf:type owl:Class ; rdfs:label "Three-Dimensional Position"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/Town -cco:Town rdf:type owl:Class ; - rdfs:subClassOf cco:LocalAdministrativeRegion ; - cco:definition "A Local Administrative Region 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."@en ; - cco:definition_source "http://www.dictionary.com/browse/town" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Town"@en . - -### http://www.ontologyrepository.com/CommonCoreOntologies/Village -cco:Village rdf:type owl:Class ; - rdfs:subClassOf cco:LocalAdministrativeRegion ; - cco:definition "A Local Administrative Region in which a human population permanently resides that is typically larger than the population of a hamlet but smaller than that of a Town."@en ; - cco:definition_source "http://www.merriam-webster.com/dictionary/village" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Village"@en . + ### http://www.ontologyrepository.com/CommonCoreOntologies/YawAxis @@ -763,49 +722,4 @@ cco:zAxis rdf:type owl:Class ; rdfs:label "z-Axis"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfAtmosphere -:PortionOfAtmosphere rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - cco:definition "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Portion of Atmosphere"@en . - - -### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfCryosphere -:PortionOfCryosphere rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - cco:definition "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ; - cco:definition_source "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Portion of Cryosphere"@en . - - -### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere -:PortionOfGeosphere rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - cco:definition "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Portion of Geosphere"@en . - - -### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfHydrosphere -:PortionOfHydrosphere rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - cco:definition "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Portion of Hydrosphere"@en . - - -### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLithosphere -:PortionOfLithosphere rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000024 ; - cco:definition "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ; - cco:definition_source "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ; - rdfs:label "Portion of Lithosphere"@en . - - ### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi From 02a1f0d17a78d2275adfc9e553be462d8f7e1f9a Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh <> Date: Wed, 29 Mar 2023 21:58:19 -0400 Subject: [PATCH 03/12] Typos --- AgentOntology.ttl | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 6515a997..007d0bbb 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1296,9 +1296,6 @@ cco:CitizenRole rdf:type owl:Class ; rdfs:label "Citizen Role"@en . - - - ### http://www.ontologyrepository.com/CommonCoreOntologies/City cco:City rdf:type owl:Class ; rdfs:subClassOf cco:LocalAdministrativeRegion ; @@ -1675,7 +1672,11 @@ cco:GeopoliticalOrganization rdf:type owl:Class ; ### http://www.ontologyrepository.com/CommonCoreOntologies/GeopoliticalPowerRole cco:GeopoliticalPowerRole rdf:type owl:Class ; - rdfs:subClassOf obo:BFO_0000023 ; + rdfs:subClassOf obo:BFO_0000023 , + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0000052 ; + owl:someValuesFrom cco:Organization + ] ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A Role had by an Organization that is perceived by an International Community as capable of performing influential acts in that community and is realized in performing such acts."@en ; @@ -2046,27 +2047,24 @@ cco:PermanentResident rdf:type owl:Class ; rdf:type owl:Class ] ; rdfs:subClassOf cco:Person ; - cco:definition "A person with a Permanent Residence Role."@en ; dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "A person with a Permanent Residence Role."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - skos:prefLabel "Permanent Resident"@en ; - rdfs:label "Permanent Resident"@en . + rdfs:label "Permanent Resident"@en ; + skos:prefLabel "Permanent Resident"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/PermanentResidentRole cco:PermanentResidentRole rdf:type owl:Class ; rdfs:subClassOf obo:BFO_0000023 ; + dcterms:bibliographicCitation "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - dcterms:bibliographicCitation "Permanent Residency - Wikipedia. https://en.wikipedia.org/wiki/Permanent_residency. Accessed 10 Feb. 2023." ; cco:definition "A role inhering in a person who is recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - skos:prefLabel "PermanentResidentRole"@en ; - rdfs:label "Permanent Resident Role"@en . - - - + rdfs:label "Permanent Resident Role"@en ; + skos:prefLabel "Permanent Resident Role"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/Person @@ -2118,9 +2116,6 @@ cco:Populace rdf:type owl:Class ; rdfs:label "Populace"@en . - - - ### http://www.ontologyrepository.com/CommonCoreOntologies/Province cco:Province rdf:type owl:Class ; rdfs:subClassOf cco:FirstOrderAdministrativeRegion ; From aa244812149a1f660e69136c873caa0a32a7e75e Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh <> Date: Thu, 30 Mar 2023 23:54:04 -0400 Subject: [PATCH 04/12] Fixed Typos --- AgentOntology.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 007d0bbb..12bb4ae1 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1897,7 +1897,7 @@ cco:MaterialTerritoryOfAGovernmentDomain rdf:type owl:Class ; rdf:type owl:Class ] ; dcterms:created "2023-02-06T10:14:09-05:00"@en ; - cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Government Domain"@en ; + cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Material Territory of a Government Domain"@en ; skos:prefLabel "Material Territory of a Government Domain"@en . From c4bb0391b9d07a67ecf94abc21473cdd1f889bdc Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh <> Date: Fri, 31 Mar 2023 21:59:20 -0400 Subject: [PATCH 05/12] Made Geopolitical Power Role Counterfactual --- AgentOntology.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 12bb4ae1..243985aa 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1679,7 +1679,7 @@ cco:GeopoliticalPowerRole rdf:type owl:Class ; ] ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - cco:definition "A Role had by an Organization that is perceived by an International Community as capable of performing influential acts in that community and is realized in performing such acts."@en ; + cco:definition "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Geopolitical Power Role"@en ; skos:prefLabel "Geopolitical Power Role"@en . From d44bac85425f19c70bb7966536958348c207169d Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Tue, 4 Apr 2023 18:52:40 -0400 Subject: [PATCH 06/12] Typos --- AgentOntology.ttl | 1 + ExtendedRelationOntology.ttl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 243985aa..e5e349ea 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -707,6 +707,7 @@ cco:is_in_law_of rdf:type owl:ObjectProperty ; ### http://www.ontologyrepository.com/CommonCoreOntologies/is_interest_of cco:is_interest_of rdf:type owl:ObjectProperty ; rdfs:domain obo:BFO_0000015 ; + owl:inverseOf cco:has_interest_in ; rdfs:range cco:Agent ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; diff --git a/ExtendedRelationOntology.ttl b/ExtendedRelationOntology.ttl index d6ba9268..6a63bba8 100644 --- a/ExtendedRelationOntology.ttl +++ b/ExtendedRelationOntology.ttl @@ -47,7 +47,7 @@ cco:code_license rdf:type owl:AnnotationProperty ; ### http://www.ontologyrepository.com/CommonCoreOntologies/is_disrupted_by cco:is_disrupted_by rdf:type owl:ObjectProperty ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; - owl:inverseOf cco:is_disrupted_by ; + owl:inverseOf cco:disrupts ; rdfs:domain obo:BFO_0000015 ; rdfs:range obo:BFO_0000015 ; cco:definition "Inverse of disrupts." ; From a59e5adb4c73f17722a25c13549b0f3c85ef26e5 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Tue, 4 Apr 2023 20:40:57 -0400 Subject: [PATCH 07/12] Typos in 'Element of Political Geographical Entity' --- AgentOntology.ttl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index e5e349ea..966406c1 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1384,11 +1384,11 @@ cco:CountryElement rdf:type owl:Class ; cco:Populace ) ] ; - rdfs:subClassOf cco:ElementOfAPoliticalGeographicalEntity ; + rdfs:subClassOf cco:ElementOfPoliticalGeographicalEntity ; dcterms:created "2023-02-17T19:02:16-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:alternative_label "Elements of a Country"@en ; - cco:definition "An Element of a Political Geographical Entity that exists, if a Country exists: If a Country exists, then there is a Domain of a Country, within which there is a Material Territory of a Country (land, air, water), and there is a Government of a Country delimited by that domain, and a Populace whom that Government has legitimate authority over."@en ; + cco:definition "An Element of Political Geographical Entity that exists, if a Country exists: If a Country exists, then there is a Domain of a Country, within which there is a Material Territory of a Country (land, air, water), and there is a Government of a Country delimited by that domain, and a Populace whom that Government has legitimate authority over."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Country Element"@en ; skos:editorialNote "'Country' is exceedingly ambiguous. However, the notion is too common and useful to ignore. Thus, we define 'Country Element' and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; @@ -1473,8 +1473,8 @@ cco:EducationalOrganization rdf:type owl:Class ; rdfs:label "Educational Organization"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/ElementOfAPoliticalGeographicalEntity -cco:ElementOfAPoliticalGeographicalEntity rdf:type owl:Class ; +### http://www.ontologyrepository.com/CommonCoreOntologies/ElementOfPoliticalGeographicalEntity +cco:ElementOfPoliticalGeographicalEntity rdf:type owl:Class ; owl:equivalentClass [ rdf:type owl:Class ; owl:unionOf ( cco:GeopoliticalEntity cco:Government @@ -1487,9 +1487,9 @@ cco:ElementOfAPoliticalGeographicalEntity rdf:type owl:Class ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "An independent continuant that exists, if a Political Geographical Entity exists: If a Political Geographical Entity exists, then there is Government Domain, within which there is a Material Territory of a Government Domain (land, air, water), and there is an Government delimited by that Government Domain, and a Populace whom that Government has legitimate authority over."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - rdfs:label "Element Of A Political Geographical Entity"@en ; + rdfs:label "Element Of Political Geographical Entity"@en ; skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; - skos:prefLabel "Element Of A Political Geographical Entity"@en . + skos:prefLabel "Element Of Political Geographical Entity"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/Enemy From 34c18537f680fa671f22d5041bc7ab0af987e254 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Thu, 6 Apr 2023 14:10:07 -0400 Subject: [PATCH 08/12] Made 'delimits' not functional or inverse functional. --- AgentOntology.ttl | 37 ++++++++++++++++--------------------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 966406c1..5ff08989 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -90,8 +90,6 @@ cco:capability_of_aggregate rdf:type owl:ObjectProperty ; ### 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:DelimitingDomain ; rdfs:range cco:Organization ; cco:definition "An instance of Delimiting Domain dd1 delimits some Organization o1 iff dd1 is the area within which o1 can legally operate."@en ; @@ -581,9 +579,7 @@ cco:is_daughter_of rdf:type owl:ObjectProperty ; ### http://www.ontologyrepository.com/CommonCoreOntologies/is_delimited_by -cco:is_delimited_by rdf:type owl:ObjectProperty , - owl:FunctionalProperty , - owl:InverseFunctionalProperty ; +cco:is_delimited_by rdf:type owl:ObjectProperty ; rdfs:domain cco:Organization ; rdfs:range cco:DelimitingDomain ; cco:definition "An instance of Organization o1 is_delimited_by some Delimiting Domain dd1 iff dd1 is the area within which o1 can legally operate."@en ; @@ -707,7 +703,6 @@ cco:is_in_law_of rdf:type owl:ObjectProperty ; ### http://www.ontologyrepository.com/CommonCoreOntologies/is_interest_of cco:is_interest_of rdf:type owl:ObjectProperty ; rdfs:domain obo:BFO_0000015 ; - owl:inverseOf cco:has_interest_in ; rdfs:range cco:Agent ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; @@ -1475,21 +1470,21 @@ cco:EducationalOrganization rdf:type owl:Class ; ### http://www.ontologyrepository.com/CommonCoreOntologies/ElementOfPoliticalGeographicalEntity cco:ElementOfPoliticalGeographicalEntity rdf:type owl:Class ; - owl:equivalentClass [ rdf:type owl:Class ; - owl:unionOf ( cco:GeopoliticalEntity - cco:Government - cco:MaterialTerritoryOfAGovernmentDomain - cco:Populace - ) - ] ; - rdfs:subClassOf obo:BFO_0000004 ; - dcterms:created "2023-02-17T18:57:10-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - cco:definition "An independent continuant that exists, if a Political Geographical Entity exists: If a Political Geographical Entity exists, then there is Government Domain, within which there is a Material Territory of a Government Domain (land, air, water), and there is an Government delimited by that Government Domain, and a Populace whom that Government has legitimate authority over."@en ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - rdfs:label "Element Of Political Geographical Entity"@en ; - skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; - skos:prefLabel "Element Of Political Geographical Entity"@en . + owl:equivalentClass [ rdf:type owl:Class ; + owl:unionOf ( cco:GeopoliticalEntity + cco:Government + cco:MaterialTerritoryOfAGovernmentDomain + cco:Populace + ) + ] ; + rdfs:subClassOf obo:BFO_0000004 ; + dcterms:created "2023-02-17T18:57:10-05:00"^^xsd:dateTime ; + dcterms:creator "https://cubrc.org"^^xsd:anyURI ; + cco:definition "An independent continuant that exists, if a Political Geographical Entity exists: If a Political Geographical Entity exists, then there is Government Domain, within which there is a Material Territory of a Government Domain (land, air, water), and there is an Government delimited by that Government Domain, and a Populace whom that Government has legitimate authority over."@en ; + cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; + rdfs:label "Element Of Political Geographical Entity"@en ; + skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; + skos:prefLabel "Element Of Political Geographical Entity"@en . ### http://www.ontologyrepository.com/CommonCoreOntologies/Enemy From 394a3ebe3758dc4e63e8df0ee456c69ef45a3791 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Thu, 6 Apr 2023 14:13:35 -0400 Subject: [PATCH 09/12] Made elucidation of 'disrupts' more clear. --- ExtendedRelationOntology.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExtendedRelationOntology.ttl b/ExtendedRelationOntology.ttl index 6a63bba8..0b158b68 100644 --- a/ExtendedRelationOntology.ttl +++ b/ExtendedRelationOntology.ttl @@ -64,7 +64,7 @@ cco:disrupts rdf:type owl:ObjectProperty ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A relation where one process disrupts another process from occurring as it would have."@en ; - cco:elucidation "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from realizing in that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; + cco:elucidation "A process can disrupt another process from occurring as it would have by 1) preventing a disposition or role from being realized by that process, 2) lowering the grade of the process, or 3) stopping the process from continuing to occur."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "disrupts"@en ; skos:editorialNote "To lower the grade of a process is to lower the quality of a process according to some standard, for example when realizing a capability or a function."@en ; From 7ac5f1dbea6a02019d3805bddc47f85363938fc2 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Thu, 6 Apr 2023 19:14:23 -0400 Subject: [PATCH 10/12] Added bibliographic citations and definition sources. --- AgentOntology.ttl | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 5ff08989..243a2fdd 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1361,8 +1361,10 @@ cco:ContractorRole rdf:type owl:Class ; ### http://www.ontologyrepository.com/CommonCoreOntologies/Country cco:Country rdf:type owl:Class ; rdfs:subClassOf cco:GeopoliticalEntity ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A Government Domain that is associated with certain distinct political, ethnic, or cultural characteristics, and which delimits a Government that has legitimate authority over a Populace."@en ; + cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Domain of a Country"@en ; skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Thus, instead of defining 'Country' we have defined four country elements found under the class 'Country Element'. We leave it to the users to define 'Country' as it suites their purposes."@en , @@ -1380,10 +1382,12 @@ cco:CountryElement rdf:type owl:Class ; ) ] ; rdfs:subClassOf cco:ElementOfPoliticalGeographicalEntity ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-17T19:02:16-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:alternative_label "Elements of a Country"@en ; cco:definition "An Element of Political Geographical Entity that exists, if a Country exists: If a Country exists, then there is a Domain of a Country, within which there is a Material Territory of a Country (land, air, water), and there is a Government of a Country delimited by that domain, and a Populace whom that Government has legitimate authority over."@en ; + cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Country Element"@en ; skos:editorialNote "'Country' is exceedingly ambiguous. However, the notion is too common and useful to ignore. Thus, we define 'Country Element' and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; @@ -1421,7 +1425,6 @@ cco:DelimitingDomain rdf:type owl:Class ; owl:disjointWith cco:DivisonOfGeopoliticalEntity ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - cco:alternative_label "Delimiting Domain"@en ; cco:definition "A Geospatial Region that delimits the authority of an Organization to exercise its control within the bounded area."@en ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Delimiting Domain"@en ; @@ -1478,9 +1481,11 @@ cco:ElementOfPoliticalGeographicalEntity rdf:type owl:Class ; ) ] ; rdfs:subClassOf obo:BFO_0000004 ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-17T18:57:10-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "An independent continuant that exists, if a Political Geographical Entity exists: If a Political Geographical Entity exists, then there is Government Domain, within which there is a Material Territory of a Government Domain (land, air, water), and there is an Government delimited by that Government Domain, and a Populace whom that Government has legitimate authority over."@en ; + cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Element Of Political Geographical Entity"@en ; skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; @@ -1658,9 +1663,13 @@ cco:GeopoliticalOrganization rdf:type owl:Class ; rdf:type owl:Class ] ; rdfs:subClassOf cco:Organization ; + dcterms:bibliographicCitation "Lee, David S., and Brad Glosserman. “How Companies Can Navigate Today’s Geopolitical Risks.” Harvard Business Review, 28 Nov. 2022. hbr.org, https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks." , + "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "An Organization that bears a Geopolitical Power Role."@en ; + cco:definition_source "https://chass.usu.edu/international-studies/aggies-go/power" , + "https://hbr.org/2022/11/how-companies-can-navigate-todays-geopolitical-risks" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Geopolitical Organization"@en ; skos:prefLabel "Geopolitical Organization"@en . @@ -1673,9 +1682,11 @@ cco:GeopoliticalPowerRole rdf:type owl:Class ; owl:onProperty obo:RO_0000052 ; owl:someValuesFrom cco:Organization ] ; + dcterms:bibliographicCitation "University, Utah State. Geopolitical Power | Aggies GO. https://chass.usu.edu/international-studies/aggies-go/power. Accessed 6 Apr. 2023." ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A Role had by an Organization, that is perceived by an International Community as capable of performing influential acts in that community, and which would be realized in performing such acts."@en ; + cco:definition_source "https://chass.usu.edu/international-studies/aggies-go/power" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Geopolitical Power Role"@en ; skos:prefLabel "Geopolitical Power Role"@en . @@ -1720,9 +1731,11 @@ cco:GovernmentOfACountry rdf:type owl:Class ; rdf:type owl:Class ] ; rdfs:subClassOf cco:Government ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-08T19:54:46-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A Government that has legitimate authority within and is delimited by a Domain of a Country."@en ; + cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Government of a Country"@en ; skos:prefLabel "Government of a Country"@en . @@ -1808,9 +1821,11 @@ cco:IncorporatedOrganization rdf:type owl:Class ; ### http://www.ontologyrepository.com/CommonCoreOntologies/InternationalCommunity cco:InternationalCommunity rdf:type owl:Class ; rdfs:subClassOf cco:GroupOfAgents ; + dcterms:bibliographicCitation "The International Community. 5 Apr. 2023, https://dictionary.cambridge.org/us/dictionary/english/international-community." ; dcterms:created "2022-12-30T21:32:27-05:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A maximal Group of Geopolitical Organizations engaged in geopolitics with one another."@en ; + cco:definition_source "https://dictionary.cambridge.org/us/dictionary/english/international-community" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "International Community"@en ; skos:prefLabel "International Community"@en . @@ -1874,8 +1889,10 @@ cco:MaterialTerritoryOfACountry rdf:type owl:Class ; ) ; rdf:type owl:Class ] ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-06T10:14:09-05:00"@en ; cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; + cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Material Territory of a Country"@en ; skos:prefLabel "Material Territory of a Country"@en . @@ -1892,8 +1909,10 @@ cco:MaterialTerritoryOfAGovernmentDomain rdf:type owl:Class ; ) ; rdf:type owl:Class ] ; + dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-06T10:14:09-05:00"@en ; cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ; + cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Material Territory of a Government Domain"@en ; skos:prefLabel "Material Territory of a Government Domain"@en . @@ -2058,6 +2077,7 @@ cco:PermanentResidentRole rdf:type owl:Class ; dcterms:created "2023-03-29T20:17:54-04:00"^^xsd:dateTime ; dcterms:creator "https://cubrc.org"^^xsd:anyURI ; cco:definition "A role inhering in a person who is recognized as having legal resident status in a Government Domain in which that person is not a citizen but where they have the right to reside on a permanent basis."@en ; + cco:definition_source "https://en.wikipedia.org/wiki/Permanent_residency" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Permanent Resident Role"@en ; skos:prefLabel "Permanent Resident Role"@en . From 43a01418a102bdb5dde9a33bc1e7caa1dd9bb7d4 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Thu, 6 Apr 2023 20:05:48 -0400 Subject: [PATCH 11/12] Clarified 'Political Geographical Element' --- AgentOntology.ttl | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index 243a2fdd..cbf45da4 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1390,7 +1390,14 @@ cco:CountryElement rdf:type owl:Class ; cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Country Element"@en ; - skos:editorialNote "'Country' is exceedingly ambiguous. However, the notion is too common and useful to ignore. Thus, we define 'Country Element' and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; + skos:editorialNote "'Country' is exceedingly ambiguous. However, the notion is too common and useful to ignore. Thus, we define 'Country Element' and leave it to users to decide what they believe the term refers to."@en , + """The intended use of this element is to allow for an opinionated use of the label 'Country' by users. There are two ways to do this. + +First, a user could add, to an extension ontology, either term as a label to one of the elements, thus baptizing the element as properly refered to by that term. For example, one could add the label 'Country' to what is currently labeled 'Domain of a Country'. Because labels don't create logical conflicts, this strategy should allow for various ontologies, with conflicting opinions about the proper use of 'Country' to merge without logical issue. + +The second strategy would be to mint, in an extension ontology, a brand new IRI, label it 'Country' and have that new entity be defined and axiomatized in terms of the elements. While this would result in merged ontologies having similar labels accross distinct IRIs, this is not a logical issue. + +Of course, this all assumes that users are conforming to the definitions of BFO and CCO. Thus, if a users decides that a 'Country' is (or is identical to) a 'Domain of a Country', then it would be entailed that a Country has no political authority, at least not in a way that isn't derivitive on the political authority of the government it delimits. As such, users should be careful to exploit the relationships between the elements, choosing the right element for the right relationship."""@en ; skos:prefLabel "Country Element"@en . @@ -1488,7 +1495,14 @@ cco:ElementOfPoliticalGeographicalEntity rdf:type owl:Class ; cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Element Of Political Geographical Entity"@en ; - skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to. It could be any combination of the elements. The referent can then be specified axiomatically."@en ; + skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to."@en , + """The intended use of this element is to allow for an opinionated use of the label 'Political Geographical Entity' or 'Geopolitical Entity' by users. There are two ways to do this. + +First, a user could add, to an extension ontology, either term as a label to one of the elements, thus baptizing the element as properly refered to by that term. For example, one could add the label 'Geopolitical Entity' to what is currently labeled 'Domain of a Government'. Because labels don't create logical conflicts, this strategy should allow for various ontologies, with conflicting opinions about the proper use of, say, 'Geopolitical Entity' to merge without logical issue. + +The second strategy would be to mint, in an extension ontology, a brand new IRI, label it 'Political Geographical Entity' or 'Geopolitical Entity' and have that new entity be defined and axiomatized in terms of the elements. While this would result in merged ontologies having similar labels accross distinct IRIs, this is not a logical issue. + +Of course, this all assumes that users are conforming to the definitions of BFO and CCO. Thus, if a users decides that a 'Geopolitical Entity' is (or is identical to) a 'Domain of a Government', then it would be entailed that a Geopolitical Entity has no political authority, at least not in a way that isn't derivitive on the political authority of the government it delimits. As such, users should be careful to exploit the relationships between the elements, choosing the right element for the right relationship."""@en ; skos:prefLabel "Element Of Political Geographical Entity"@en . From e8efba2c3b924b536d016e1a2074eda8ca8bd0c2 Mon Sep 17 00:00:00 2001 From: David Gordon Limbaugh Date: Fri, 7 Apr 2023 10:07:55 -0400 Subject: [PATCH 12/12] Removed Political Geographical Element Classes Removed 'Element of a Political Geographical Entity' and 'Country Element' --- AgentOntology.ttl | 96 ++++++++++------------------------------------- 1 file changed, 19 insertions(+), 77 deletions(-) diff --git a/AgentOntology.ttl b/AgentOntology.ttl index cbf45da4..4b12636f 100644 --- a/AgentOntology.ttl +++ b/AgentOntology.ttl @@ -1367,40 +1367,10 @@ cco:Country rdf:type owl:Class ; cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; rdfs:label "Domain of a Country"@en ; - skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Thus, instead of defining 'Country' we have defined four country elements found under the class 'Country Element'. We leave it to the users to define 'Country' as it suites their purposes."@en , - "What is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a county (it's a territory) but has a government, a distinct culture, and so on."@en ; + skos:editorialNote "'Country' is an unclear term. Does it refer to the people, the government, the site, or the material in the site? Furthermore, what is properly referred to as a 'Country' is highly dependent on the classification practices of the international community. For example: The United Kingdom is a sovereign country that has Wales, a non-sovereign Country, as a member. Vatican City is a sovereign country that is landlocked by a city: Rome, Italy. Puerto Rico is not a county (it's a territory) but has a government, a distinct culture, and so on. Thus, here we do not definine 'Country' but instead define 'Domain of a Country'."@en ; skos:prefLabel "Domain of a Country"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/CountryElement -cco:CountryElement rdf:type owl:Class ; - owl:equivalentClass [ rdf:type owl:Class ; - owl:unionOf ( cco:Country - cco:GovernmentOfACountry - cco:MaterialTerritoryOfACountry - cco:Populace - ) - ] ; - rdfs:subClassOf cco:ElementOfPoliticalGeographicalEntity ; - dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; - dcterms:created "2023-02-17T19:02:16-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - cco:alternative_label "Elements of a Country"@en ; - cco:definition "An Element of Political Geographical Entity that exists, if a Country exists: If a Country exists, then there is a Domain of a Country, within which there is a Material Territory of a Country (land, air, water), and there is a Government of a Country delimited by that domain, and a Populace whom that Government has legitimate authority over."@en ; - cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - rdfs:label "Country Element"@en ; - skos:editorialNote "'Country' is exceedingly ambiguous. However, the notion is too common and useful to ignore. Thus, we define 'Country Element' and leave it to users to decide what they believe the term refers to."@en , - """The intended use of this element is to allow for an opinionated use of the label 'Country' by users. There are two ways to do this. - -First, a user could add, to an extension ontology, either term as a label to one of the elements, thus baptizing the element as properly refered to by that term. For example, one could add the label 'Country' to what is currently labeled 'Domain of a Country'. Because labels don't create logical conflicts, this strategy should allow for various ontologies, with conflicting opinions about the proper use of 'Country' to merge without logical issue. - -The second strategy would be to mint, in an extension ontology, a brand new IRI, label it 'Country' and have that new entity be defined and axiomatized in terms of the elements. While this would result in merged ontologies having similar labels accross distinct IRIs, this is not a logical issue. - -Of course, this all assumes that users are conforming to the definitions of BFO and CCO. Thus, if a users decides that a 'Country' is (or is identical to) a 'Domain of a Country', then it would be entailed that a Country has no political authority, at least not in a way that isn't derivitive on the political authority of the government it delimits. As such, users should be careful to exploit the relationships between the elements, choosing the right element for the right relationship."""@en ; - skos:prefLabel "Country Element"@en . - - ### http://www.ontologyrepository.com/CommonCoreOntologies/County cco:County rdf:type owl:Class ; rdfs:subClassOf cco:GeopoliticalEntity ; @@ -1478,34 +1448,6 @@ cco:EducationalOrganization rdf:type owl:Class ; rdfs:label "Educational Organization"@en . -### http://www.ontologyrepository.com/CommonCoreOntologies/ElementOfPoliticalGeographicalEntity -cco:ElementOfPoliticalGeographicalEntity rdf:type owl:Class ; - owl:equivalentClass [ rdf:type owl:Class ; - owl:unionOf ( cco:GeopoliticalEntity - cco:Government - cco:MaterialTerritoryOfAGovernmentDomain - cco:Populace - ) - ] ; - rdfs:subClassOf obo:BFO_0000004 ; - dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; - dcterms:created "2023-02-17T18:57:10-05:00"^^xsd:dateTime ; - dcterms:creator "https://cubrc.org"^^xsd:anyURI ; - cco:definition "An independent continuant that exists, if a Political Geographical Entity exists: If a Political Geographical Entity exists, then there is Government Domain, within which there is a Material Territory of a Government Domain (land, air, water), and there is an Government delimited by that Government Domain, and a Populace whom that Government has legitimate authority over."@en ; - cco:definition_source "https://avalon.law.yale.edu/20th_century/intam03.asp" ; - cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology"^^xsd:anyURI ; - rdfs:label "Element Of Political Geographical Entity"@en ; - skos:editorialNote "As a parent term to 'Country', 'Political Geographical Entity' is exceedingly ambiguous. However, the notion, like 'Country', is too common and useful to ignore. Thus, we define the elements of a Political Geographical Entity and leave it to users to decide what they believe the term refers to."@en , - """The intended use of this element is to allow for an opinionated use of the label 'Political Geographical Entity' or 'Geopolitical Entity' by users. There are two ways to do this. - -First, a user could add, to an extension ontology, either term as a label to one of the elements, thus baptizing the element as properly refered to by that term. For example, one could add the label 'Geopolitical Entity' to what is currently labeled 'Domain of a Government'. Because labels don't create logical conflicts, this strategy should allow for various ontologies, with conflicting opinions about the proper use of, say, 'Geopolitical Entity' to merge without logical issue. - -The second strategy would be to mint, in an extension ontology, a brand new IRI, label it 'Political Geographical Entity' or 'Geopolitical Entity' and have that new entity be defined and axiomatized in terms of the elements. While this would result in merged ontologies having similar labels accross distinct IRIs, this is not a logical issue. - -Of course, this all assumes that users are conforming to the definitions of BFO and CCO. Thus, if a users decides that a 'Geopolitical Entity' is (or is identical to) a 'Domain of a Government', then it would be entailed that a Geopolitical Entity has no political authority, at least not in a way that isn't derivitive on the political authority of the government it delimits. As such, users should be careful to exploit the relationships between the elements, choosing the right element for the right relationship."""@en ; - skos:prefLabel "Element Of Political Geographical Entity"@en . - - ### http://www.ontologyrepository.com/CommonCoreOntologies/Enemy cco:Enemy rdf:type owl:Class ; owl:equivalentClass [ owl:intersectionOf ( cco:Person @@ -1894,15 +1836,15 @@ cco:MaleSex rdf:type owl:Class ; ### http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfACountry cco:MaterialTerritoryOfACountry rdf:type owl:Class ; - rdfs:subClassOf cco:MaterialTerritoryOfAGovernmentDomain , - [ owl:intersectionOf ( cco:MaterialTerritoryOfAGovernmentDomain - [ rdf:type owl:Restriction ; - owl:onProperty obo:RO_0001018 ; - owl:someValuesFrom cco:Country - ] - ) ; - rdf:type owl:Class - ] ; + owl:equivalentClass [ owl:intersectionOf ( cco:MaterialTerritoryOfAGovernmentDomain + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0001018 ; + owl:someValuesFrom cco:Country + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:MaterialTerritoryOfAGovernmentDomain ; dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-06T10:14:09-05:00"@en ; cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a The Domain of a Country."@en ; @@ -1914,15 +1856,15 @@ cco:MaterialTerritoryOfACountry rdf:type owl:Class ; ### http://www.ontologyrepository.com/CommonCoreOntologies/MaterialTerritoryOfAGovernmentDomain cco:MaterialTerritoryOfAGovernmentDomain rdf:type owl:Class ; - rdfs:subClassOf cco:PortionOfGeosphere , - [ owl:intersectionOf ( cco:PortionOfGeosphere - [ rdf:type owl:Restriction ; - owl:onProperty obo:RO_0001018 ; - owl:someValuesFrom cco:GeopoliticalEntity - ] - ) ; - rdf:type owl:Class - ] ; + owl:equivalentClass [ owl:intersectionOf ( cco:PortionOfGeosphere + [ rdf:type owl:Restriction ; + owl:onProperty obo:RO_0001018 ; + owl:someValuesFrom cco:GeopoliticalEntity + ] + ) ; + rdf:type owl:Class + ] ; + rdfs:subClassOf cco:PortionOfGeosphere ; dcterms:bibliographicCitation "Convention on Rights and Duties of States (inter-American); December 26, 1933. https://avalon.law.yale.edu/20th_century/intam03.asp. Accessed 6 Apr. 2023." ; dcterms:created "2023-02-06T10:14:09-05:00"@en ; cco:definition "The portions of lithosphere, hydrosphere, or atmosphere that together exactly occupy a Government Domain"@en ;