Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/release_notes/issue1235-remove-gist-Taxonomy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Major Updates

- Removed `gist:Taxonomy` and updated `gist:ControlledVocabulary` notes to indicate that it can be used in place of `gist:Taxonomy`. Issue [#1235](https://github.com/semanticarts/gist/issues/1235).
52 changes: 7 additions & 45 deletions ontologies/gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@prefix gistd: <https://w3id.org/semanticarts/ns/data/gist/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Expand Down Expand Up @@ -535,6 +535,7 @@ gist:ControlledVocabulary
] ;
skos:definition "A collection of terms approved and managed by some organization or person."^^xsd:string ;
skos:prefLabel "Controlled Vocabulary"^^xsd:string ;
skos:scopeNote "A controlled vocabulary is similar to a skos:ConceptScheme, but it could also be used for things that are not concepts, such as organizations, US presidents, geo-regions, etc. Hierarchical relationships between instances of the controlled vocabulary are possible."^^xsd:string ;
.

gist:CountryGeoRegion
Expand Down Expand Up @@ -1417,11 +1418,13 @@ gist:Organization
gist:SchemaMetaData ,
gist:UnitOfMeasure
;
skos:definition "A structured entity formed to achieve specific goals, typically involving members with defined roles."^^xsd:string ;
skos:scopeNote "Not all organizations have members, e.g. shell companies."^^xsd:string ;
skos:definition "A structured entity formed to achieve specific goals, typically involving members with defined roles."^^xsd:string ;
skos:example "Legal entities like companies; non-legal entities like clubs, committees, or departments."^^xsd:string ;
skos:prefLabel "Organization"^^xsd:string ;
skos:scopeNote "While typically the members of organizations are people, in some cases they are other organizations; e.g., the members of the United Nations are country governments."^^xsd:string ;
skos:scopeNote
"Not all organizations have members, e.g. shell companies."^^xsd:string ,
"While typically the members of organizations are people, in some cases they are other organizations; e.g., the members of the United Nations are country governments."^^xsd:string
;
.

gist:Permission
Expand Down Expand Up @@ -1887,47 +1890,6 @@ gist:TaskTemplate
;
.

gist:Taxonomy
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:ControlledVocabulary
[
a owl:Restriction ;
owl:onProperty [
owl:inverseOf gist:isMemberOf ;
] ;
owl:someValuesFrom [
a owl:Class ;
owl:intersectionOf (
gist:Category
[
a owl:Class ;
owl:unionOf (
[
a owl:Restriction ;
owl:onProperty [
owl:inverseOf gist:hasBroader ;
] ;
owl:someValuesFrom gist:Category ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasBroader ;
owl:someValuesFrom gist:Category ;
]
) ;
]
) ;
] ;
]
) ;
] ;
skos:definition "A controlled vocabulary arranged as a hierarchy of concepts."^^xsd:string ;
skos:prefLabel "Taxonomy"^^xsd:string ;
.

gist:Template
a owl:Class ;
owl:disjointWith gist:UnitOfMeasure ;
Expand Down