Instance-Level Validate Operation

post

oracle-fhir-server/fhir/ResearchStudy/{id}/$validate

The validate operation checks whether the attached content would be acceptable either generally, as an update or as a delete to an existing resource.Modes update and delete can only be used when the operation is invoked at the resource instance level.

Request

Path Parameters
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",
      "id": "1"
    }
  }, {
    "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