diff options
author | David Robillard <d@drobilla.net> | 2012-03-30 02:19:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-30 02:19:52 +0000 |
commit | ff3c6fc88657d2e94847ceb00adea7597894d897 (patch) | |
tree | 95931a641722a75fb3ed306e7960f3f179680eaf /doc | |
parent | 43ee05bf7402c47e7034490bfebf08d3f57900e7 (diff) | |
download | sord-ff3c6fc88657d2e94847ceb00adea7597894d897.tar.gz sord-ff3c6fc88657d2e94847ceb00adea7597894d897.tar.bz2 sord-ff3c6fc88657d2e94847ceb00adea7597894d897.zip |
Add convenient sord_search(), sord_ask(), and sord_count().
Add sord_validate tool for validating data against RDF/OWL schemas.
git-svn-id: http://svn.drobilla.net/sord/trunk@211 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'doc')
-rw-r--r-- | doc/sord_validate.1 | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/sord_validate.1 b/doc/sord_validate.1 new file mode 100644 index 0000000..071611d --- /dev/null +++ b/doc/sord_validate.1 @@ -0,0 +1,34 @@ +.TH SORD_VALIDATE 1 "21 Mar 2012" + +.SH NAME +.B sord_validate \- Validate RDF data + +.SH SYNOPSIS +sord_validate INPUT... + +This is a simple validator which checks that all used properties are actually +defined, and that the domain and range of properties is explicitly correct. +Note that an "error" from this program does not necessarily mean data is +invalid, since it is not required to explicitly list types in RDF, however it +is a good idea to do so. If data type definitions are available with an +xsd:pattern property, literals with that datatype will be checked against the +xsd:pattern (a regular expresssion) to ensure they are valid. + +This program does not retrieve any data from the web or magical places on the +file system. It only processes files passed directly on the command line. +This means you must pass all used vocabularies to get a useful result. + +.SH AUTHOR +sord_validate was written by David Robillard <d@drobilla.net> + +.SH COPYRIGHT +Copyright \(co 2012 David Robillard. +.br +License: <http://www.opensource.org/licenses/isc-license> +.br +This is free software; you are free to change and redistribute it. +.br +There is NO WARRANTY, to the extent permitted by law. + +.SH "SEE ALSO" +<http://drobilla.net/software/sord> |