verify_qti {rqti} | R Documentation |
Verify QTI XML against XSD Schema QTI v2.1
Description
This function validates a QTI XML document against the IMS QTI v2.1.2 XSD schema.
Usage
verify_qti(doc, extended_scheme = FALSE)
Arguments
doc |
A character string representing the path to the XML file or an
|
extended_scheme |
A boolean value that controls the version of the XSD
schema used for validation. If |
Value
A logical value indicating whether the XML document is valid according to the schema. If invalid, returns an object detailing the validation errors.
Examples
## Not run:
# Validate an XML file
result <- verify_qti("path/to/your/qti.xml")
## End(Not run)
[Package rqti version 1.0.0 Index]