Fix rendering of single FHIR resource: fhir_operation_validate() now by object Validator()

This commit is contained in:
Markus Mandalka 2024-09-12 14:27:42 +02:00
parent d3c624d64c
commit 05f5fa5e28

View File

@ -162,7 +162,7 @@ class Validator():
) )
resource = r.json() resource = r.json()
outcome = fhir_operation_validate(resource_type, resource, send_pretty=True) outcome = self.fhir_operation_validate(resource_type, resource, send_pretty=True)
render_validation_outcome(resource, outcome, resource_url=resource_url) render_validation_outcome(resource, outcome, resource_url=resource_url)