Created
October 17, 2010 21:04
-
-
Save LeifW/631292 to your computer and use it in GitHub Desktop.
Make a picture showing the entities in the schema linked together by their described properties.
This file contains hidden or 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
| roqet schema_diagram.sparql -r dot -D $1 | dot -Tsvg -o pic.svg |
This file contains hidden or 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
| PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
| PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
| PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
| PREFIX xs: <http://www.w3.org/2001/XMLSchema#> | |
| CONSTRUCT {?from ?prop ?to} | |
| WHERE { ?prop rdfs:domain ?from ; | |
| rdfs:range ?to. } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment