A005 returns invalid JSON object

Hi,

Since 24/08/2026 when validating the response body from a call to A005 using the FhirJsonDeserializer from the Hl7.Fhir.STU3 v6.4.0 NuGet package we have been getting a deserilization exception. This is due to the Description property in the DocumentReference resource being an empty string. Below is a truncated example of a response body that causes the exception:
{
“resourceType”: “ReferralRequest”,

“contained”: [
{
“id”: “DocumentReference-155233”,
“meta”: {
“profile”: [
https://fhir.nhs.uk/STU3/StructureDefinition/eRS-DocumentReference-1
]
},
“resourceType”: “DocumentReference”,
“type”: {
“coding”: [
{
“code”: “REFERRER”,
“system”: “https://fhir.nhs.uk/STU3/CodeSystem/eRS-AttachmentType-1”,
“display”: “Referrer”
}
]
},
“status”: “current”,
“indexed”: “2026-09-04T07:57:51.629Z”,
“description”: “”,
…**
**
FHIR documentation states that “String property values can never be empty. Either the property is absent, or it is present with at least one character of content”. Therefore in this case the description property should not be present.

We can patch our code to ignore the error or add a dummy description where none exists so the JSON can be successfully deserialized and the attachment download, but do you have any idea what might have caused this issue?