aboutsummaryrefslogtreecommitdiffstats
path: root/serd/serd.h
diff options
context:
space:
mode:
Diffstat (limited to 'serd/serd.h')
-rw-r--r--serd/serd.h18
1 files changed, 17 insertions, 1 deletions
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
@@ -1571,6 +1572,21 @@ 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
@{