An open API service indexing awesome lists of open source software.

https://github.com/webern/xmlvalidator

A container for validating xml files against an XSD
https://github.com/webern/xmlvalidator

Last synced: about 1 year ago
JSON representation

A container for validating xml files against an XSD

Awesome Lists containing this project

README

          

# XML Validator Container

This container allows you to validate XML files using XSD.
It also has the MusicXML schemas since that is what I am validating.

Example:

```sh
docker run --rm \
-v "${HOME}/xmlfiles:/files" \
xmllint \
--noout \
--nonet \
--schema /files/schema.xsd \
/files/file.xml
```

## License

This git repository is MIT.
Licenses for all of the software in the Docker image are in the image itself.