Skip to content

feat: #407 add support for sh:TripleTerm to sh:nodeKind and allow lists #410

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

Merged
merged 8 commits into from
Aug 13, 2025
Merged
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
12 changes: 9 additions & 3 deletions shacl12-core/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3435,9 +3435,15 @@ <h4>sh:nodeKind</h4>
The node kind (IRI, blank node, literal, triple term or combinations of these) of all value nodes.
<span data-syntax-rule="nodeKind-maxCount">A shape has at most one value for <code>sh:nodeKind</code>.</span>
The value of sh:nodeKind in a shape is either an IRI or a blank node that is a well-formed SHACL list where all members are IRIs.
<span data-syntax-rule="nodeKind-in">The values or members of <code>sh:nodeKind</code> in a shape are one of the following seven instances of the class <code>sh:NodeKind</code>:
<code>sh:BlankNode</code>, <code>sh:IRI</code>, <code>sh:Literal</code>
<code>sh:BlankNodeOrIRI</code>, <code>sh:BlankNodeOrLiteral</code>, <code>sh:IRIOrLiteral</code> and <code>sh:TripleTerm</code>.</span>
<br /><br />
<span data-syntax-rule="nodeKind-in">
If the values of <code>sh:nodeKind</code> are IRIs, then the values of <code>sh:nodeKind</code> in a shape are one of the following seven instances of the class <code>sh:NodeKind</code>:
<code>sh:BlankNode</code>, <code>sh:IRI</code>, <code>sh:Literal</code>
<code>sh:BlankNodeOrIRI</code>, <code>sh:BlankNodeOrLiteral</code>, <code>sh:IRIOrLiteral</code> and <code>sh:TripleTerm</code>.
<br /><br />
If the values of <code>sh:nodeKind</code> are well-formed SHACL lists, then the values of <code>sh:nodeKind</code> in a shape are one of the following four instances of the class <code>sh:NodeKind</code>:
<code>sh:BlankNode</code>, <code>sh:IRI</code>, <code>sh:Literal</code>, and <code>sh:TripleTerm</code>.
</span>
</td>
</tr>
</table>
Expand Down