CodeSystem Delta Remove Operation

post

/oracle-fhir-server/fhir/CodeSystem/$apply-codesystem-delta-remove

The $apply-codesystem-delta-remove operation can be used to remove concepts from an existing external Codeystem.

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": "system",
 "valueUri": "http://example.com/labCodes"
 },
 {
 "name": "file",
 "valueAttachment": {
 "contentType": "text/csv",
 "data": "Q09ERSxESVNQTEFZCgpDSEVNLENoZW1pc3RyeQpIQixIZW1vZ2xvYmluCk5FVVQsTmV1dHJvcGhpbHMKTUlDUk8sTWljcm9iaW9sb2d5CkMmUyxDdWx0dXJlIGFuZCBTZW5zaXRpdml0eQ==",
 "url": "file:/concepts.csv"
 }
 }
 ]
 }
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : FHIR-SAMPLE-JSON-RESPONSE
Type: object
FHIR Parameters Resource
Example:
{
 "resourceType": "Parameters",
 "parameter": [ {
 "name": "conceptCount",
 "valueInteger": 2
 }, {
 "name": "target",
 "valueReference": {
 "reference": "CodeSystem/150002"
 }
 } ]
 }
Back to Top