Type-Level Validate Operation

post

oracle-fhir-server/fhir/Goal/$validate

The validate operation checks whether the attached content would be acceptable either generally, as a create, an update or as a delete to an existing resource.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/fhir+json ()
FHIR Parameters Resource
Root Schema : schema
Type: object
FHIR Parameters Resource
Example:
{
  "resourceType": "Parameters",
  "parameter": [ {
    "name": "resource",
    "resource": {
      "resourceType": "Account",
    }
  }, {
    "name": "mode",
    "valueCode": "example"
  }, {
    "name": "profile",
     "valueUri": "example"
  } ]
}
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : FHIR-OperationOutcome-RESOURCE
Type: object
OperationOutcome FHIR resource
Example:
{
  "resourceType": "OperationOutcome"
}
Back to Top