From 9c9232a079a38e4f56de6bc7b1a6c5b1de332144 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 27 May 2018 15:48:25 +0200 Subject: Add model validation --- serd/serd.h | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index 2a8c4fae..9d5f09b4 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -109,7 +109,8 @@ typedef enum { SERD_ERR_ID_CLASH, ///< Encountered clashing blank node IDs SERD_ERR_BAD_CURIE, ///< Invalid CURIE (e.g. prefix does not exist) SERD_ERR_INTERNAL, ///< Unexpected internal error (should not happen) - SERD_ERR_OVERFLOW ///< Stack overflow + SERD_ERR_OVERFLOW, ///< Stack overflow + SERD_ERR_INVALID ///< Invalid data } SerdStatus; /// RDF syntax type @@ -1570,6 +1571,21 @@ SERD_API SerdStatus serd_model_erase_range(SerdModel* model, SerdRange* range); +/** + Validate model. + + This performs validation based on the RDFS and OWL vocabularies. All + necessary data, including those vocabularies and any property/class + definitions that use them, are assumed to be in `model`. + + Validation errors are reported to the world's error sink. + + @return 0 on success. +*/ +SERD_API +SerdStatus +serd_validate(const SerdModel* model); + /** @} @name Inserter -- cgit v1.2.1