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 1 commit
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
4 changes: 3 additions & 1 deletion docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ gist Release Notes
Release X.x.x
-----

### Minor Updates
#### Patch Updates
- Added annotation properties which provide usage guidance for properties without the constraints imposed by `rdfs:range` and `rdfs:domain`: Issue [#389](https://github.com/semanticarts/gist/issues/389)
- domainIncludes
- rangeIncludes

### Minor Updates

Release 9.7.0
-----

Expand Down
20 changes: 12 additions & 8 deletions gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2853,10 +2853,6 @@ 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 Down Expand Up @@ -3019,9 +3015,12 @@ 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:example "The domain for the property gist:hasMember includes gist:Collection."^^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 ;
skos:scopeNote
"This property is used to guide the ontology user, like all annotation properties, it do not play a role in inference."^^xsd:string ,
"This property means the same thing as the schema.org version which is not compliant with OWL-DL"^^xsd:string
;
.

gist:encryptedText
Expand Down Expand Up @@ -3282,6 +3281,7 @@ gist:hasMember
owl:inverseOf gist:memberOf ;
skos:definition "Relates a Collection to its member individuals."^^xsd:string ;
skos:prefLabel "has member"^^xsd:string ;
gist:domainIncludes gist:Collection ;
.

gist:hasNavigationalChild
Expand Down Expand Up @@ -3624,6 +3624,7 @@ gist:parentOf
a owl:ObjectProperty ;
skos:definition "Biological Parent"^^xsd:string ;
skos:prefLabel "parent of"^^xsd:string ;
gist:rangeIncludes gist:Person ;
.

gist:partOf
Expand Down Expand Up @@ -3707,9 +3708,12 @@ 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: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 ;
skos:scopeNote
"This property is used to guide the ontology user, like all annotation properties, it do not play a role in inference."^^xsd:string ,
"This property means the same thing as the schema.org version, which is an rdf:Property and not compliant with OWL-DL."^^xsd:string
;
.

gist:recognizedBy
Expand Down