Skip to main content

Data Validation Engine

License PyPi Conda CI Unit Tests CI Formatting & Linting

The Data Validation Engine (DVE) is a configuration driven data validation library built and utilised by NHS England. Currently the package has been reverted from v1.0.0 release to a 0.x as we feel the package is not yet mature enough to be considered a 1.0.0 release. So please bear this in mind if reading through the commits and references to a v1+ release when on v0.x.

As mentioned above, the DVE is "configuration driven" which means the majority of development for you as a user will be building a JSON document to describe how the data will be validated. The JSON document is known as a dischema file and example files can be accessed here. If you'd like to learn more about JSON document and how to build one from scratch, then please read the documentation here.

Once a dischema file has been defined, you are ready to use the DVE. The DVE is typically orchestrated based on four key "services". These are...

Service Purpose
1. File Transformation This service will take submitted files and turn them into stringified parquet file(s) to ensure that a consistent data structure can be passed through the other services.
2. Data Contract This service will validate and perform type casting against a stringified parquet file using pydantic models.
3. Business Rules The business rules service will perform more complex validations such as comparisons between fields and tables, aggregations, filters etc to generate new entities.
4. Error Reports The error reports service will take all the errors raised in previous services and surface them into a readable format for a downstream users/service. Currently, this implemented to be an excel spreadsheet but could be reconfigured to meet other requirements/use cases.

If you'd like more detailed documentation around these services the please read the extended documentation here.

The DVE has been designed in a way that's modular and can support users who just want to utilise specific "services" from the DVE (i.e. just the file transformation + data contract). Additionally, the DVE is designed to support different backend implementations. As part of the base installation of DVE, you will find backend support for Spark and DuckDB. So, if you need a MySQL backend implementation, you can implement this yourself. Given our organisations requirements, it will be unlikely that we add anymore specific backend implementations into the base package beyond Spark and DuckDB. So, if you are unable to implement this yourself, I would recommend reading the guidance on requesting new features and raising bug reports here.

Additionally, if you'd like to contribute a new backend implementation into the base DVE package, then please look at the Contributing section.

Installation and usage

The DVE is a Python package and can be installed using package managers such as pip. As of the latest release we support Python 3.10 & 3.11, with Spark v3.4 and DuckDB v1.1. In the future we will be looking to upgrade the DVE to working on a higher versions of Python, DuckDB and Spark.

If you're planning to use the Spark backend implementation, you will also need OpenJDK 11 installed.

Python dependencies are listed in pyproject.toml.

To install the DVE package you can simply install using a package manager such as pip.

pip install data-validation-engine

Note - Only versions >=0.6.2 are available on PyPi. For older versions please install directly from the git repo or build from source.

Once you have installed the DVE you are ready to use it. For guidance on how to create your dischema JSON document (configuration), please read the documentation.

Version 0.0.1 does support a working Python 3.7 installation. However, we will not be supporting any issues with that version of the DVE if you choose to use it. Use at your own risk.

Requesting new features and raising bug reports

Before creating new issues, please check to see if the same bug/feature has been created already. Where a duplicate is created, the ticket will be closed and referenced to an existing issue.

If you have spotted a bug with the DVE then please raise an issue here using the "bug template".

If you have feature request then please follow the same process whilst using the "Feature request template".

Upcoming features

Below is a list of features that we would like to implement or have been requested.

Feature Release Version Released?
Open source release 0.1.0 Yes
Uplift to Python 3.11 0.2.0 Yes
Uplift Pyspark to 3.5 0.8.0 Yes
Allow DVE to run on Python 3.12+ 0.8.0 Yes
Upgrade to Pydantic 2.0 0.9.0 No
Uplift Pyspark to 4.0+ TBA No
Polars upgrade to v1+ TBA No
DuckDB upgrade to v1.5+ TBA No
Python 3.13 & 3.14 upgrade TBA No
Create a more user friendly interface for building and modifying dischema files TBA No

If you are interested in getting any of the unreleased features listed above available, then please read the Contributing section and then submit us a pull request.

Contributing

Please see guidance here.

Legal

This codebase is released under the MIT License. This covers both the codebase and any sample code in the documentation.

Any HTML or Markdown documentation is © Crown copyright and available under the terms of the Open Government 3.0 licence.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data_validation_engine-0.8.5.tar.gz (157.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

data_validation_engine-0.8.5-py3-none-any.whl (207.1 kB view details)

Uploaded Python 3

File details

Details for the file data_validation_engine-0.8.5.tar.gz.

File metadata

  • Download URL: data_validation_engine-0.8.5.tar.gz
  • Upload date:
  • Size: 157.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for data_validation_engine-0.8.5.tar.gz
Algorithm Hash digest
SHA256 f3d6f825021968a06ea3249cf2a6b1a2e7a4842e48999f576f797b90ac456b15
MD5 140eb83baa5eb22e54a466fe8690f32f
BLAKE2b-256 6f8de6f6bbd69a9c3341126a8dc1b2230800098a2330307c1e165a2f1c799470

See more details on using hashes here.

Provenance

The following attestation bundles were made for data_validation_engine-0.8.5.tar.gz:

Publisher: ci_pypi_publish.yml on NHSDigital/data-validation-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file data_validation_engine-0.8.5-py3-none-any.whl.

File metadata

File hashes

Hashes for data_validation_engine-0.8.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b31bc184cee183cfaf8e16b8a4d033c21d79bdab8c7f4b2060700729cac5fc5a
MD5 8b8cb0403dcafb314cf6adf68e50ac06
BLAKE2b-256 1cfa5d452f8993fe05b44f1ded83a0348dce6a7419eb5ed8c26f10f94a9b4fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for data_validation_engine-0.8.5-py3-none-any.whl:

Publisher: ci_pypi_publish.yml on NHSDigital/data-validation-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.9.0

2 files

This release

0.8.5 This release

2 files

0.8.4

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.6

2 files

0.7.5

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page