Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Domain range includes. Fixes #389 #479

Merged
merged 11 commits into from
May 28, 2021
Merged
Show file tree
Hide file tree
Changes from 4 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
8 changes: 8 additions & 0 deletions docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
gist Release Notes
=====

Release X.x.x
-----

### Minor Updates
- Added two annotation properties and uses: Issue [#389](https://github.com/semanticarts/gist/issues/389)
- domainIncludes
- rangeIncludes

Release 9.7.0
-----

Expand Down
23 changes: 23 additions & 0 deletions gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2853,6 +2853,10 @@ gist:basedOn
owl:inverseOf gist:basisFor ;
skos:definition "Pointer to the thing something was derived from"^^xsd:string ;
skos:prefLabel "based on"^^xsd:string ;
gist:rangeIncludes
gist:Specification ,
gist:Template
;
.

gist:basisFor
Expand All @@ -2865,6 +2869,7 @@ gist:categorizedBy
a owl:ObjectProperty ;
skos:definition "Points to a taxonomy item or other less formally defined class."^^xsd:string ;
skos:prefLabel "categorized by"^^xsd:string ;
gist:rangeIncludes gist:Category ;
.

gist:characterizedAs
Expand Down Expand Up @@ -3010,6 +3015,15 @@ gist:directs
skos:prefLabel "directs"^^xsd:string ;
.

gist:domainIncludes
a owl:AnnotationProperty ;
rdfs:subPropertyOf skos:scopeNote ;
skos:definition "Relates a property to a class that is (one of) the type(s) the property is expected to be used on."^^xsd:string ;
skos:example "The domain for the property, gist:basedOn includes gist:Template."^^xsd:string ;
skos:prefLabel "domain includes"^^xsd:string ;
skos:scopeNote "This property means the same thing as the schema.org version which is not compliant with OWL-DL"^^xsd:string ;
.

gist:encryptedText
a owl:DatatypeProperty ;
rdfs:subPropertyOf gist:containedText ;
Expand Down Expand Up @@ -3689,6 +3703,15 @@ gist:produces
skos:prefLabel "produces"^^xsd:string ;
.

gist:rangeIncludes
a owl:AnnotationProperty ;
rdfs:subPropertyOf skos:scopeNote ;
skos:definition "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property."^^xsd:string ;
skos:example "The range for the property, gist:categorizedBy includes gist:Category."^^xsd:string ;
skos:prefLabel "range includes"^^xsd:string ;
skos:scopeNote "This property means the same thing as the schema.org version which is not compliant with OWL-DL"^^xsd:string ;
.

gist:recognizedBy
a owl:ObjectProperty ;
rdfs:range [
Expand Down