SERD-VALIDATE(1) General Commands Manual SERD-VALIDATE(1)

serd-validate
validate RDF data

serd-validate [-hV] [-B base] [-I syntax] [-W checks] [-X checks] [-k bytes] input ...

serd-validate validates RDF data against one or more RDFS or OWL schemas. Unlike other serd tools, serd-validate does not write any data, it only prints messages and returns a status that indicates whether the data is valid.

The options are as follows:

base
Base URI or path. See serd-pipe(1) for details.

syntax
Input syntax or option: NQuads, NTriples, TriG, Turtle, lax, variables, relative, or labels. See serd-pipe(1) for details.

checks
Warn about any issues found by the given checks, which is a regular expression that matches a set of check names to enable, or the special value all which enables all checks. See CHECKS below for a detailed list of all checks.

checks
Exclude checks from the set of checks enabled by a previous -W option. This is typically used after -W all to suppress a few specific checks.

Display version information and exit.

Print the command line options.

bytes
Parser stack size. See serd-pipe(1) for details.

Checks that all properties with owl:allValuesFrom restrictions have valid value types.
Checks that any instance of a class with a owl:cardinality property restriction has exactly that many values of that property.
Checks that any instance of a class with a owl:maxCardinality property restriction has no more than that many values of that property.
Checks that any instance of a class with a owl:minCardinality property restriction has at least that many values of that property.
Checks that every rdfs:Class has an rdfs:label.
Checks that datatype properties have literal (not instance) values.
Checks that every datatype is defined as a rdfs:Datatype.
Checks that there are no instances of deprecated classes.
Checks that there are no uses of deprecated properties.
Checks that no instance has several values of a functional property.
Checks that there are no instances where a literal is expected.
Checks that every instance with an explicit type matches that type. This is a broad check that triggers other type-related checks, but mainly it will check that every instance of a class conforms to any restrictions on that class.
Checks that at most one instance has a given value of an inverse functional property.
Checks that there are no literals where an instance is expected.
Checks that literal values are not greater than or equal to any applicable xsd:maxExclusive datatype restrictions.
Checks that literal values are not greater than any applicable xsd:maxInclusive datatype restrictions.
Checks that literal values are not less than or equal to any applicable xsd:minExclusive datatype restrictions.
Checks that literal values are not less than any applicable xsd:minInclusive datatype restrictions.
Checks that literals with xsd:pattern restrictions match the regular expression pattern for their datatype.
Checks that literals with supported restrictions conform to those restrictions. This is a high-level check that triggers the more specific individual literal restriction checks.
Checks that literals with supported XSD datatypes are valid. The set of supported types is the same as when writing canonical forms.
Checks that object properties have instance (not literal) values.
Checks that there are no typed literals where a plain literal is expected. A plain literal may have an optional language tag, but not a datatype.
Checks that every predicate is defined as an rdf:Property.
Checks that any instance with a property with an rdfs:domain is in that domain.
Checks that every rdf:Property has an rdfs:label.
Checks that the value for any property with an rdfs:range is in that range.
Checks that instances of classes with owl:someValuesFrom property restrictions have at least one matching property value.
Checks that no class is a sub-class of itself, recursively. This ensures that the graph is acyclic with respect to rdfs:subClassOf.
Checks that no property is a sub-property of itself, recursively. This ensures that the graph is acyclic with respect to rdfs:subPropertyOf.

serd-validate exits with a status of 0 on success, 17 if the data is invalid, or another non-zero status if an error occured.

To run all checks on a file:

$ serd-validate -W all input.ttl

To run only the classLabel check on a file:

$ serd-validate -W classLabel input.ttl

To run all checks except classLabel on a file:

$ serd-validate -W all -X classLabel input.ttl

serd-validate is a part of serd, by David Robillard d@drobilla.net.
August 10, 2021 Serd 0.30.11