Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sord_validate.1 1.7KB

12 years ago
12 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .TH SORD_VALIDATE 1 "21 Mar 2012"
  2. .SH NAME
  3. .B sord_validate \- Validate RDF data
  4. .SH SYNOPSIS
  5. sord_validate [OPTION]... INPUT...
  6. .SH OPTIONS
  7. .TP
  8. \fB\-h\fR
  9. Print the command line options.
  10. .TP
  11. \fB\-l\fR
  12. Print errors on a single line.
  13. .TP
  14. \fB\-v\fR
  15. Display version information and exit.
  16. .SH DESCRIPTION
  17. This is a simple validator which checks that all used properties are actually
  18. defined, and that the domain and range of properties is explicitly correct.
  19. Note that an "error" from this program does not necessarily mean data is
  20. invalid, since it is not required to explicitly list types in RDF, however it
  21. is a good idea to do so.
  22. This program never retrieves data from the web or magical places on the file
  23. system, it only processes files passed directly on the command line. This
  24. means you must pass all used vocabularies to get a useful result.
  25. If an appropriate schema is available, literals are checked against datatype
  26. definitions (both the explicit datatype of the literal itself as well as any
  27. types implied by the corresponding property). Three XML Schema Datatypes (XSD)
  28. constraints are currently supported: regular expressions (xsd:pattern), and
  29. inclusive range (xsd:minimumInclusive and xsd:maximumInclusive). Given an
  30. appropriate schema, this is enough to validate against most of the standard XSD
  31. datatypes.
  32. .SH EXAMPLES
  33. sord_validate `find ~/schemas/ -name '*.ttl'` data.ttl
  34. .SH AUTHOR
  35. sord_validate was written by David Robillard <d@drobilla.net>
  36. .SH COPYRIGHT
  37. Copyright \(co 2012-2013 David Robillard.
  38. .br
  39. License: <http://www.opensource.org/licenses/isc-license>
  40. .br
  41. This is free software; you are free to change and redistribute it.
  42. .br
  43. There is NO WARRANTY, to the extent permitted by law.
  44. .SH "SEE ALSO"
  45. <http://drobilla.net/software/sord>