-
Notifications
You must be signed in to change notification settings - Fork 0
Shex Resources
goodb edited this page Jun 14, 2019
·
3 revisions
Online shex validation testers:
- http://shexjava.lille.inria.fr/demonstrator
- https://rawgit.com/shexSpec/shex.js/master/packages/shex-webapp/doc/shex-simple.html
Visualizers
Documentation
- Pre-release (aka most current) documentation.. https://rawgit.com/shexSpec/primer/extends/index.html
- Shex book chapter on validating RDF https://book.validatingrdf.com/bookHtml010.html
Examples
- using transitive patterns: https://tinyurl.com/y2a7ng3c
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX : <http://a.example/ns#>
<#Pet> EXTRA a {
a [<#Beagle> <#Spaniel>] ;
:name [@en @fr]
}
<#Pet2> EXTENDS @<#Pet> {} AND EXTRA a {
a @<#X>+
}
<#X> {
rdfs:subClassOf [<#Animal>] OR @<#X>
}