aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-27 15:48:25 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit9c9232a079a38e4f56de6bc7b1a6c5b1de332144 (patch)
tree6131402ba6ec1337315e5641aeae6f2e83be83b4 /serd
parent4d7c58952353e9017dddda8f69fc6ee437b3476f (diff)
downloadserd-9c9232a079a38e4f56de6bc7b1a6c5b1de332144.tar.gz
serd-9c9232a079a38e4f56de6bc7b1a6c5b1de332144.tar.bz2
serd-9c9232a079a38e4f56de6bc7b1a6c5b1de332144.zip
Add model validation
Diffstat (limited to 'serd')
-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
@{