From 9951ac45de1287c5674ff7d01acb40614acf1a6a Mon Sep 17 00:00:00 2001 From: Doug Barbin <109533609+dougbarbin@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:23:19 -0500 Subject: [PATCH] Fixed bug preventing the description from displaying for one of the Date of Birth of Victim error codes. --- _data/error.json | 8 ++++---- librs-spec.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/_data/error.json b/_data/error.json index 8e7f04f..6633fd0 100644 --- a/_data/error.json +++ b/_data/error.json @@ -464,7 +464,7 @@ "l47": "The date supplied for Date of Birth of Arrestaee (DE L47) is not valid. Please ensure that the supplied date is in the MMDDYYY Format. Additionally this value cannot be all zeros, it must be a real date.", "c3": "The date supplied for the Submission Date (DE C3) is not valid. Please ensure that the supplied date is in the MMDDYYY Format.", "l37": "The date supplied for the Date of Birth of Offender (DE L37) is not valid. Please ensure that the supplied date is in the MMDDYYY Format.", - "l26": "The date supplied for the Date of Birth of Offender (DE L37) is not valid. Please ensure that the supplied date is in the MMDDYYY Format." + "L26": "The date supplied for the Date of Birth of Offender (DE L37) is not valid. Please ensure that the supplied date is in the MMDDYYY Format." } }, "11015": { @@ -2539,7 +2539,7 @@ "err_no": 25010, "err_message": "AGE CANNOT BE ESTIMATE IF DATE OF BIRTH AND INCIDENT DATE IS KNOWN", "err_desc": { - "l26": "If entered, and Incident Date/Hour (3) contains the actual incident date, then Age of Victim (26) *at the time of the incident* must be an exact age.", + "L26": "If entered, and Incident Date/Hour (3) contains the actual incident date, then Age of Victim (26) *at the time of the incident* must be an exact age.", "26": "**Estimated Age:** Age CANNOT be an estimate if Date of Birth of Victim (L26) is entered, and Incident Date/Hour (3) is an actual Incident Date (that is, not a Report date ('R'))." } }, @@ -2553,7 +2553,7 @@ "err_no": 25030, "err_message": "DATE ENTERED MUST BE A VALID CALENDAR DATE", "err_desc": { - "l26": "Each component of the date must be valid: {::nomarkdown}{:/}EG: Month of Data Submission and Year of Data Submission are '06/2014', the Date of Birth of Victim (L26) CANNOT contain any date 07/01/2014 or greater." + "L26": "Each component of the date must be valid: {::nomarkdown}{:/}EG: Month of Data Submission and Year of Data Submission are '06/2014', the Date of Birth of Victim (L26) CANNOT contain any date 07/01/2014 or greater." } }, "25031": { @@ -2561,7 +2561,7 @@ "err_no": 25031, "err_message": "MUST BE ON OR BEFORE INCIDENT DATE AND HOUR", "err_desc": { - "l26": "MUST be on or before Incident Date/Hour (3)." + "L26": "MUST be on or before Incident Date/Hour (3)." } }, "25202": { diff --git a/librs-spec.md b/librs-spec.md index 51b3ab4..21e81fc 100644 --- a/librs-spec.md +++ b/librs-spec.md @@ -3158,9 +3158,9 @@ ___ Requirement | Requirement Description | Error Number | Error Message :-----------:|-------------------------|:------------:|---------- {% assign error = site.data.error["11005"] -%} -1 | {{error.err_desc["l26"]}} | {{error.err_no}}| {{ error.err_message }} +1 | {{error.err_desc["L26"]}} | {{error.err_no}}| {{ error.err_message }} {% assign error = site.data.error["90046"] -%} -2 | {{error.err_desc["l26"]}} | {{error.err_no}}| {{ error.err_message }} +2 | {{error.err_desc["L26"]}} | {{error.err_no}}| {{ error.err_message }} ___