OperationOutcome

OperationOutcome-SuccessfulValidation-Example

Example of a successful response to a Resource submission, it is expected that a transaction will result in multiple OperationOutcome resources (one for each resource submitted). Further details in responses are pending finalization of the NHS England acknowledgements framework and testing within the GMS broker alpha.

OperationOutcome
{
    "resourceType": "OperationOutcome",
    "id": "OperationOutcome-SuccesfulValidation-Example",
    "meta": {
        "lastUpdated": "2022-10-21T13:47:00+00:00"
    },
    "issue":  [
        {
            "severity": "information",
            "code": "informational",
            "diagnostics": "No issues detected during validation"
        }
    ]
}
<OperationOutcome xmlns="http://hl7.org/fhir">
    <id value="OperationOutcome-SuccesfulValidation-Example" />
    <meta>
        <lastUpdated value="2022-10-21T13:47:00+00:00" />
    </meta>
    <issue>
        <severity value="information" />
        <code value="informational" />
        <diagnostics value="No issues detected during validation" />
    </issue>
</OperationOutcome>