Click to close

ShEx

Data Validation Workbench

This demo is out of date with repect to ShEx2; try the ShEx2 online demo.

Rendering

Validation:

as

Translations

SPARQL:
View as:

Validation messages:

Validation Results

result navigation enabled — use ctrl-↑ and ctrl-↓ to browse results.

<Alice> matches <http://example.org/sh#Person>: assuming _:1 fails _:0, _:0 fails _:1
PASS { :hasBiologicalParent @{ :gender (:Male ) } matched by <Alice> :hasBiologicalParent _:0 . PASS { :gender (:Male) matched by _:0 :gender :Male . } :hasBiologicalParent @{ :gender (:Female) } matched by <Alice> :hasBiologicalParent _:1 . PASS { :gender (:Female) matched by _:1 :gender :Female . } }
Remaining triples:
  <Alice> sh:nodeShape <http://example.org/sh#Person> .
  <Bob> sh:nodeShape <http://example.org/sh#Person> .
  _:2 :gender :Male .
  <Bob> :hasBiologicalParent _:2 .
  _:3 :gender :Female .
  <Bob> :hasBiologicalParent _:3 .
  _:4 :gender :Fale .
  <Bob> :hasBiologicalParent _:4 .
<Bob> fails <http://example.org/sh#Person>: assuming _:3 fails _:0, _:4 fails _:0, _:2 fails _:1, _:4 fails _:1
FAIL { Errors: ☹ expected <Bob> <http://example.org/#hasBiologicalParent> _:4. to match <http://example.org/#hasBiologicalParent> @_:0 FAIL { Errors: ☹ expected at least 1 matches of <http://example.org/#gender> (<http://example.org/#Male>)expected _:4 <http://example.org/#gender> <http://example.org/#Fale>. to match <http://example.org/#gender> (<http://example.org/#Male>) Matches: } ☹ expected <Bob> <http://example.org/#hasBiologicalParent> _:4. to match <http://example.org/#hasBiologicalParent> @_:1 FAIL { Errors: ☹ expected at least 1 matches of <http://example.org/#gender> (<http://example.org/#Female>)expected _:4 <http://example.org/#gender> <http://example.org/#Fale>. to match <http://example.org/#gender> (<http://example.org/#Female>) Matches: } Matches: :hasBiologicalParent @{ :gender (:Male ) } matched by <Bob> :hasBiologicalParent _:2 . PASS { :gender (:Male) matched by _:2 :gender :Male . } :hasBiologicalParent @{ :gender (:Female) } matched by <Bob> :hasBiologicalParent _:3 . PASS { :gender (:Female) matched by _:3 :gender :Female . } }



Schema (ShEx):

Schema parsed.0.19 kB, 8 ms, 24 kB/s
PREFIX my: <http://example.org/sh#>
PREFIX : <http://example.org/#>

start = my:Person

my:Person {
    :hasBiologicalParent { :gender (:Male  ) },
    :hasBiologicalParent { :gender (:Female) }
}
PREFIX : <http://example.org/#>
PREFIX sh: <http://www.w3.org/ns/shacl#>

<Alice> sh:nodeShape <http://example.org/sh#Person> ;
    :hasBiologicalParent [ :gender :Male   ];
    :hasBiologicalParent [ :gender :Female ].

<Bob> sh:nodeShape <http://example.org/sh#Person> ;
    :hasBiologicalParent [ :gender :Male   ];
    :hasBiologicalParent [ :gender :Female ];
    :hasBiologicalParent [ :gender :Fale   ].