-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
TargetSubjectsOf := predicate:IRI
sh:targetSubjectsOf: A TargetSubjectsOf matches any subject node in the data graph with a triple (node, predicate, ) where "" is any node.
# In a graph with some triples with ex:ex:submittedOn predicates:
<http://a.example/Issue1> ex:submittedOn "2015-07-08" .
<http://a.example/Issue2> ex:submittedOn "2015-07-09"; ex:status ex:assigned .
<http://a.example/Issue3> ex:submittedOn "2015-07-10"; ex:status ex:resolved .
# sh:targetSubjectOf selects the nodes that appear as subjects in triples with predicate as a predicate:
# This selects <http://a.example/Issue2> and <http://a.example/Issue3> for valdiation.
<IssueShape> sh:targetSubjectsOf ex:status .
Parent issue is Targets #36