Skip to content

Commit 02641d8

Browse files
docs: fix 'Bad Value' in cases where it should be 'Bad value'
fix some of the urls that are pointing at invalid locations
1 parent 9dc2939 commit 02641d8

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/user_guidance/business_rules.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For the simplest rules, you can write them in the filters section. For example,
5050
"failure_type": "record",
5151
"error_code": "MOVIE_TOO_LONG",
5252
"failure_message": "Movie must be less than 4 hours long.",
53-
"category": "Bad Value"
53+
"category": "Bad value"
5454
}
5555
]
5656
}
@@ -81,7 +81,7 @@ For the simplest rules, you can write them in the filters section. For example,
8181
"failure_type": "submission",
8282
"error_code": "MOVIE_TOO_LONG",
8383
"failure_message": "Movie must be less than 4 hours long.",
84-
"category": "Bad Value"
84+
"category": "Bad value"
8585
}
8686
]
8787
}
@@ -113,7 +113,7 @@ For the simplest rules, you can write them in the filters section. For example,
113113
"is_informational": true,
114114
"error_code": "MOVIE_TOO_LONG",
115115
"failure_message": "Movie must be less than 4 hours long.",
116-
"category": "Bad Value",
116+
"category": "Bad value",
117117
}
118118
]
119119
}

docs/user_guidance/data_contract.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,13 +417,13 @@ When a [Feedback Message](./feedback_messages.md) is produced during the contrac
417417
"error_message": "File Rejected - movie_uuid is blank.",
418418
"error_level": "submission"
419419
},
420-
"Bad Value": {
420+
"Bad value": {
421421
"error_code": "MOVIE_UUID_02",
422422
"error_message": "Record Rejected - movie_uuid has an incorrect data format. movie_uuid={{ movie_uuid }}.",
423423
}
424424
},
425425
"movie_name": {
426-
"Bad Value": {
426+
"Bad value": {
427427
"error_code": "MOVIE_NAME_01",
428428
"error_message": "Warning - movie_name has an incorrect data format. movie_name={{ movie_name }}.",
429429
"is_informational": true

docs/user_guidance/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ You can install the DVE package through python package managers such as [pip](ht
7979

8080
Python dependencies are listed in the [`pyproject.toml`](https://github.com/NHSDigital/data-validation-engine/blob/main/pyproject.toml). Many of the dependencies are locked to quite restrictive versions due to complexity of this package. Core packages such as Pydantic, Pyspark and DuckDB are unlikely to receive flexible version constraints as changes in those packages could cause the DVE to malfunction. For less important dependencies, we have tried to make the contraints more flexible. Therefore, we would advise you to install the DVE into a seperate environment rather than trying to integrate it into an existing Python environment.
8181

82-
Once you have installed the DVE you are almost ready to use it. To be able to run the DVE, you will need to choose one of the supported pipeline runners (see Backend implementations here - [DuckDB](user_guidance/implementations/duckdb.md) *or* [Spark](user_guidance/implementations/spark.md)) and you will need to create your own dischema document to configure how the DVE should validate incoming data. You can read more about this in the [Getting Started](getting_started.md) page.
82+
Once you have installed the DVE you are almost ready to use it. To be able to run the DVE, you will need to choose one of the supported pipeline runners (see Backend implementations here - [DuckDB](implementations/duckdb.md) *or* [Spark](implementations/spark.md)) and you will need to create your own dischema document to configure how the DVE should validate incoming data. You can read more about this in the [Getting Started](getting_started.md) page.
8383

8484

8585
## DVE Version Compatability Matrix

0 commit comments

Comments
 (0)