Please note:
- This version of the UK Core is for C&TA Sprint 7 Review.
- This version is not suitable for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate an error returned due to an error in a date
Table View
OperationOutcome.id[0] | UKCore-OperationOutcome-DateError-Example |
OperationOutcome.issue[0].severity[0] | fatal |
OperationOutcome.issue[0].code[0] | structure |
OperationOutcome.issue[0].details[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/operation-outcome |
OperationOutcome.issue[0].details[0].coding[0].code[0] | MSG_DATE_FORMAT |
OperationOutcome.issue[0].details[0].coding[0].display[0] | The Date value %s is not in the correct format (Xml Date Format required) |
OperationOutcome.issue[0].diagnostics[0] | Interop.FHIRProcessors.Patient.processbirthDate line 2450 |
OperationOutcome.issue[0].expression[0] | Patient.birthDate |
XML View
<OperationOutcome xmlns="http://hl7.org/fhir"> <id value="UKCore-OperationOutcome-DateError-Example" /> <issue> <severity value="fatal" /> <code value="structure" /> <details> <coding> <system value="http://terminology.hl7.org/CodeSystem/operation-outcome" /> <code value="MSG_DATE_FORMAT" /> <display value="The Date value %s is not in the correct format (Xml Date Format required)" /> </coding> </details> <diagnostics value="Interop.FHIRProcessors.Patient.processbirthDate line 2450" /> <expression value="Patient.birthDate" /> </issue> </OperationOutcome>
JSON View
{ "resourceType": "OperationOutcome", "id": "UKCore-OperationOutcome-DateError-Example", "issue": [ { "severity": "fatal", "code": "structure", "details": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/operation-outcome", "code": "MSG_DATE_FORMAT", "display": "The Date value %s is not in the correct format (Xml Date Format required)" } ] }, "diagnostics": "Interop.FHIRProcessors.Patient.processbirthDate line 2450", "expression": [ "Patient.birthDate" ] } ] }