Skip to content

Commit dc2ade1

Browse files
committed
Updates to government/governed geo region terms
1 parent ee5864b commit dc2ade1

File tree

2 files changed

+37
-24
lines changed

2 files changed

+37
-24
lines changed

docs/ReleaseNotes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ Release 11.0.0
1111
- Defined a top-level datatype property `atDateTime`, neutral as to start/end, planned/actual, and precision (day, minute, microsecond). Replaced existing object properties to a hierarchy of subproperties of `atDateTime`, retaining distinctions between start and end, planned vs actual, and precisions.
1212
- Renamed `ContemporaneousEvent` to `ContemporaryEvent`.
1313
- Removed property `gist:hasOrderedMember`. `gist:hasMember` should be used instead. Issue [#540](https://github.com/semanticarts/gist/issues/540).
14+
- Distinguished governments from governed geo-regions, as per issue [#215](https://github.com/semanticarts/gist/issues/215). Changes include:
15+
- Added classes `SubCountryGovernment`, `IntergovernmentalOrganization`, and `TreatyOrganization` as subclasses of `Organization`.
16+
- Added classes `GovernedGeoRegion`, `CountryGeoRegion` as subclasses of `GeoRegion`.
17+
- Removed restriction on `CountryGovernment` requiring it to be recognized by some other country government, and stipulate its sovereignty.
1418
- Removed domain and range constraints from `gist:requires`. Issue [#183](https://github.com/semanticarts/gist/issues/183).
1519
- Removed domain and range constraints from `gist:hasNumerator`, `gist:hasDenominator`, `gist:hasMultiplier`, and `gist:hasMultiplicand`. Issue [#160](https://github.com/semanticarts/gist/issues/160).
1620

1721
### Minor Updates
1822

19-
- Added unit symbols for unit instances instances per issue [#579](https://github.com/semanticarts/gist/issues/579).
23+
- Added unit symbols for unit instances per issue [#579](https://github.com/semanticarts/gist/issues/579).
2024

2125
### Patch Updates
2226

gistCore.ttl

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,6 @@ gist:CountingUnit
654654

655655
gist:CountryGeoRegion
656656
a owl:Class ;
657-
rdfs:subClassOf gist:GovernedGeoRegion ;
658657
owl:equivalentClass [
659658
a owl:Class ;
660659
owl:intersectionOf (
@@ -663,20 +662,18 @@ gist:CountryGeoRegion
663662
a owl:Restriction ;
664663
owl:onProperty gist:isGovernedBy ;
665664
owl:onClass gist:CountryGovernment ;
666-
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
665+
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
667666
]
668667
) ;
669668
] ;
670-
skos:definition "A defined geographical area (or areas) governed by only one country government."^^xsd:string ;
671-
skos:prefLabel "Country Geo Region"^^xsd:string ;
669+
skos:definition "A defined geographical area (or areas) governed by exactly one country government."^^xsd:string ;
670+
skos:editorialNote "DAN: changed qualified cardinality restriction from max 1 to exactly 1. Is there a problem with that?"^^xsd:string ;
671+
skos:prefLabel "Country Geo-Region"^^xsd:string ;
672672
.
673673

674674
gist:CountryGovernment
675675
a owl:Class ;
676-
owl:disjointWith
677-
gist:IntergovernmentalOrganization ,
678-
gist:SubCountryGovernment
679-
;
676+
owl:disjointWith gist:SubCountryGovernment ;
680677
owl:equivalentClass [
681678
a owl:Class ;
682679
owl:intersectionOf (
@@ -692,11 +689,18 @@ gist:CountryGovernment
692689
[
693690
a owl:Restriction ;
694691
owl:onProperty gist:governs ;
695-
owl:someValuesFrom gist:GeoRegion ;
692+
owl:someValuesFrom gist:CountryGeoRegion ;
693+
]
694+
[
695+
a owl:Restriction ;
696+
owl:onProperty gist:isGovernedBy ;
697+
owl:onClass gist:GovernmentOrganization ;
698+
owl:maxQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
696699
]
697700
) ;
698701
] ;
699702
skos:definition "A Government Organization which asserts both sovereignty (i.e., it is not governed by some other government organization) and governance over an entity generally recognized as a 'country'."^^xsd:string ;
703+
skos:editorialNote "DAN: Changed the second restriction to CountryGeoRegion, not GeoRegion. I don't understand the first restriction: it states that a country government is the set of all things are are not governed by government organizations, which includes chairs. I think you want a qualified max cardinality of 0 restriction, which I've added above for your review. Is it correct to also say that it governs exactly one GeoRegion, rather than one or more? I.e., a qualified cardinality restriction of 1 on governs CountryGeoRegion."^^xsd:string ;
700704
skos:note "While a country government may enter into treaties with other country governments, that does not mean it is 'governed by' the others."^^xsd:string ;
701705
skos:prefLabel "Country Government"^^xsd:string ;
702706
.
@@ -1046,7 +1050,6 @@ gist:GeoPoliticalRegion
10461050

10471051
gist:GeoRegion
10481052
a owl:Class ;
1049-
rdfs:subClassOf gist:Place ;
10501053
owl:disjointWith
10511054
gist:IntellectualProperty ,
10521055
gist:Intention ,
@@ -1061,6 +1064,7 @@ gist:GeoRegion
10611064
owl:equivalentClass [
10621065
a owl:Class ;
10631066
owl:intersectionOf (
1067+
gist:Place
10641068
[
10651069
a owl:Restriction ;
10661070
owl:onProperty gist:hasMagnitude ;
@@ -1150,7 +1154,6 @@ gist:Goal
11501154

11511155
gist:GovernedGeoRegion
11521156
a owl:Class ;
1153-
rdfs:subClassOf gist:GeoRegion ;
11541157
owl:equivalentClass [
11551158
a owl:Class ;
11561159
owl:intersectionOf (
@@ -1163,17 +1166,22 @@ gist:GovernedGeoRegion
11631166
]
11641167
) ;
11651168
] ;
1166-
skos:definition "A defined geographical area (or areas) governed by at least one government organization."^^xsd:string ;
1167-
skos:prefLabel "Governed Geo Region"^^xsd:string ;
1169+
skos:definition "A defined geographic area or areas governed by at least one government organization."^^xsd:string ;
1170+
skos:prefLabel "Governed Geo-Region"^^xsd:string ;
1171+
skos:scopeNote "Geographic regions do not need not be physically contiguous in order to constitute a governed geo-region; e.g., Alaska and Hawaii."^^xsd:string ;
11681172
.
11691173

11701174
gist:GovernmentOrganization
11711175
a owl:Class ;
11721176
rdfs:subClassOf gist:Organization ;
1173-
skos:definition "An Organization which exercises political and/or regulatory authority over a political unit, people, georegion, etc, as well as performs certain functions for this unit or body. Differs from a corporation in that it cannot be owned."^^xsd:string ;
1177+
owl:disjointWith
1178+
gist:IntergovernmentalOrganization ,
1179+
gist:TreatyOrganization
1180+
;
1181+
skos:definition "An organization which exercises political and/or regulatory authority over a political unit, people, geo-region, etc., as well as performing certain functions for this unit or body. Differs from a corporation in that it cannot be owned."^^xsd:string ;
11741182
skos:example "The State of Washington Office of Financial Management; the Food and Drug Administration; the Scottish Parliament."^^xsd:string ;
11751183
skos:prefLabel "Government Organization"^^xsd:string ;
1176-
skos:scopeNote "Includes administrative, regulatory, and enforcement organizations created or sanctioned by Country or SubCountry Government Organizations."^^xsd:string ;
1184+
skos:scopeNote "Includes administrative, regulatory, and enforcement organizations created or sanctioned by Country or SubCountry Governments."^^xsd:string ;
11771185
.
11781186

11791187
gist:Group
@@ -1295,7 +1303,6 @@ gist:Intention
12951303

12961304
gist:IntergovernmentalOrganization
12971305
a owl:Class ;
1298-
rdfs:subClassOf gist:Organization ;
12991306
owl:equivalentClass [
13001307
a owl:Class ;
13011308
owl:intersectionOf (
@@ -1308,7 +1315,8 @@ gist:IntergovernmentalOrganization
13081315
]
13091316
) ;
13101317
] ;
1311-
skos:definition "An organization the membership of which is comprised of Government Organizations."^^xsd:string ;
1318+
skos:definition "An organization whose members are government organizations."^^xsd:string ;
1319+
skos:example "The United Nations, the European Union"^^xsd:string ;
13121320
skos:prefLabel "Inter-Governmental Organization"^^xsd:string ;
13131321
.
13141322

@@ -2255,7 +2263,6 @@ gist:StreetAddress
22552263

22562264
gist:SubCountryGovernment
22572265
a owl:Class ;
2258-
rdfs:subClassOf gist:GovernmentOrganization ;
22592266
owl:equivalentClass [
22602267
a owl:Class ;
22612268
owl:intersectionOf (
@@ -2272,11 +2279,12 @@ gist:SubCountryGovernment
22722279
]
22732280
) ;
22742281
] ;
2275-
skos:definition "A territory-governing organization under the direct or indirect control of a country government."^^xsd:string ;
2282+
skos:definition "A government of a governed geo-region other than a country, which is under the direct or indirect control of a country government."^^xsd:string ;
22762283
skos:prefLabel "Sub-Country Government"^^xsd:string ;
22772284
skos:scopeNote
2278-
"Across the world, there are a broad number of terms used for the sub-sections of a country and the governments thereof. We should not automatically go with 'state', 'county', and 'city'. It is more future-proof just to mint the instances using the generic SubCountryGovernment and apply an appropriate category."^^xsd:string ,
2279-
"Note that this class applies to territory-governing organizations. Regulatory and bureaucratic organizations are members of the more generic GovernmentOrganization class."^^xsd:string
2285+
"Across the world, there are a variety of types of subsections of a country and the governments thereof (as well as different terms, like 'province' and 'state', which refer to essentially the same type of thing). We should not automatically assume 'state', 'county', and 'city'. It is more future-proof just to mint the instances using the generic SubCountryGovernment and, where greater specificity is needed, define categories or subclasses."^^xsd:string ,
2286+
"Note that the predicate 'governs' is used both for the relationship a government has to a governed geo-region, and for the relationship one government has to the governments of its sub-regions."^^xsd:string ,
2287+
"This class applies only to organizations governing geo-regions. Regulatory and bureaucratic organizations are members of the more generic GovernmentOrganization class."^^xsd:string
22802288
;
22812289
.
22822290

@@ -2532,7 +2540,6 @@ gist:Transaction
25322540

25332541
gist:TreatyOrganization
25342542
a owl:Class ;
2535-
rdfs:subClassOf gist:IntergovernmentalOrganization ;
25362543
owl:equivalentClass [
25372544
a owl:Class ;
25382545
owl:intersectionOf (
@@ -2545,7 +2552,9 @@ gist:TreatyOrganization
25452552
]
25462553
) ;
25472554
] ;
2548-
skos:definition "An organization the membership of which is comprised of Country Governments."^^xsd:string ;
2555+
skos:definition "An organization whose members are country governments."^^xsd:string ;
2556+
skos:editorialNote "DAN: do we want to say that *only* country governments are members?"^^xsd:string ;
2557+
skos:example "NATO, the Louisiana Purchase, the Treaty of Versailles"^^xsd:string ;
25492558
skos:prefLabel "Treaty Organization"^^xsd:string ;
25502559
.
25512560

0 commit comments

Comments
 (0)