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
2 changes: 1 addition & 1 deletion docs/release_notes/issue1191-add-Assignment-class.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Minor Updates

- Added `gist:Assignment` class and corresponding object properties: `gist:isAssignmentOf`, `gist:isAssignmentTo`, and `gist:isAssignedBy`. Issue [#1191](https://github.com/semanticarts/gist/issues/1191).
- Added `gist:Assignment` class and corresponding object properties: `gist:isAssignmentOf` and `gist:isAssignmentTo`. Issues [#1191](https://github.com/semanticarts/gist/issues/1191), [#1223](https://github.com/semanticarts/gist/issues/1223).
19 changes: 1 addition & 18 deletions ontologies/gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ gist:Assignment
gist:TemporalRelation
[
a owl:Restriction ;
owl:onProperty gist:isAssignedBy ;
owl:onProperty gist:hasGiver ;
owl:someValuesFrom owl:Thing ;
]
[
Expand Down Expand Up @@ -2945,23 +2945,6 @@ gist:isAllocatedBy
;
.

gist:isAssignedBy
a owl:ObjectProperty ;
skos:definition "Relates an assignment to the assigner."^^xsd:string ;
skos:example "An employee is assigned to a task by a supervisor."^^xsd:string ;
skos:prefLabel "is assigned by"^^xsd:string ;
skos:scopeNote
"Due to the Open World Assumption, the assigner may not be known or asserted."^^xsd:string ,
"The assigner is typically a person, organization, or software system."^^xsd:string ,
"While typically this predicate will be used with gist:Assignment subjects, there may be other use cases and therefore a domain is not specified."^^xsd:string
;
gist:domainIncludes gist:Assignment ;
gist:rangeIncludes
gist:Organization ,
gist:Person
;
.

gist:isAssignmentOf
a owl:ObjectProperty ;
skos:definition "Relates an assignment to the resource it assigns."^^xsd:string ;
Expand Down