-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small fix to ShEx validator for recursive shapes...
- Loading branch information
Showing
8 changed files
with
174 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
PREFIX sc: <http://purl.org/science/owl/sciencecommons/> | ||
prefix : <http://example.org/> | ||
prefix xsd: <http://www.w3.org/2001/XMLSchema#> | ||
prefix schema: <http://schema.org/> | ||
|
||
:Book IRI and { | ||
:name xsd:string ; | ||
:related @:Book * | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
:a@:Book, | ||
:b@:Book, | ||
:c@:Book, | ||
:d@:Book, | ||
:e@:Book, | ||
:f@:Book |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
prefix : <http://example.org/> | ||
prefix xsd: <http://www.w3.org/2001/XMLSchema#> | ||
prefix schema: <http://schema.org/> | ||
|
||
:a :name "Title A" ; | ||
:related :b . | ||
|
||
:b :related :a ; | ||
:name "Title B". | ||
|
||
:c :name "Title C1", "Title C2" . | ||
|
||
:d :name 234 . | ||
|
||
:e :namme "Title E" . | ||
|
||
:f :name "Title F" ; | ||
:related :a, _:1 . | ||
|
||
_:1 :name "Unknown title" . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters