A directory structure and metadata linter based on JSON Schema.
JSON Schema is great for validating (files containing) JSON objects that e.g. contain metadata, but these are only the smallest pieces in the organization of a whole directory structure, e.g. of some dataset of project. When working on datasets of a certain kind, they might contain various types of data, each different file requiring different accompanying metadata, based on its file type and/or location.
DirSchema combines JSON Schemas and regexes into a solution to enforce structural dependencies and metadata requirements in directories and directory-like archives. With it you can for example check that:
jpg
files in directory img
)test.jpg
has test.jpg_meta.json
)If validating these kinds of constraints looks appealing to you, this tool is for you!
Dirschema features:
pip install dirschema
The dirschema
tool needs as input:
You can run it like this:
dirschema my_dirschema.yaml DIRECTORY_OR_ARCHIVE_PATH
If the validation was successful, there will be no output. Otherwise, the tool will output a list of errors (e.g. invalid metadata, missing files, etc.).
You can also use dirschema
from other Python code as a library:
from dirschema.validate import DSValidator
DSValidator("/path/to/dirschema").validate("/dataset/path")
Similarly, the method will return an error dict, which will be empty if the validation succeeded.
You can find more information on using and contributing to this repository in the documentation.
If you want to cite this project in your scientific work, please use the citation file in the repository.
We kindly thank all authors and contributors.
This project was developed at the Institute for Materials Data Science and Informatics (IAS-9) of the Jülich Research Center and funded by the Helmholtz Metadata Collaboration (HMC), an incubator-platform of the Helmholtz Association within the framework of the Information and Data Science strategic initiative.