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
6 changes: 6 additions & 0 deletions docs/release_notes/1305-change-prevents-to-prohibits
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### Minor Updates
- Changed `gist:prevents` to `gist:prohibits`. Issue [#1305](https://github.com/semanticarts/gist/issues/1305).
- Added property `gist:prohibits`.
- Deprecated property `gist:prevents`.


17 changes: 17 additions & 0 deletions ontologies/gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3345,9 +3345,26 @@ gist:prevents
a owl:ObjectProperty ;
rdfs:domain gist:Intention ;
rdfs:range gist:Behavior ;
owl:deprecated "true"^^xsd:boolean ;
owl:equivalentClass gist:prohibits ;
skos:definition "Relates an intention to behavior that it prohibits."^^xsd:string ;
skos:editorialNote "See guidance on removing this term in the next major release at https://github.com/semanticarts/gist/issues/1380#issuecomment-3617257248"^^xsd:string ;
skos:example "A city ordinance prohibits jaywalking."^^xsd:string ;
skos:prefLabel "prevents"^^xsd:string ;
gist:isSupersededBy gist:prohibits ;
.

gist:prohibits
a owl:ObjectProperty ;
rdfs:domain gist:Intention ;
rdfs:range gist:Behavior ;
skos:definition "Relates an intention to a behavior that it seeks to prevent, discourage, or forbid."^^xsd:string ;
skos:example
"A city ordinance prohibits jaywalking."^^xsd:string ,
'Private property laws prohibit someone from entering private land marked with a "No Trespassing" sign.'^^xsd:string
;
skos:prefLabel "prohibits"^^xsd:string ;
skos:scopeNote "A behavior can be prohibited without being prevented. For example, a speed limit may prohibit driving faster than a stated speed but does not always succeed in preventing drivers from exceeding that speed."^^xsd:string ;
.

gist:providesOrderFor
Expand Down