Additional Procedures

FHIR Profile

The profile is accessible via and presented below. The profile represents additional procedures that are carried as part of the breast implant surgery.

This profile is based on the Procedure base profile for FHIR version R4, see also Procedure.

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
identifierΣ0..*Identifier
instantiatesCanonicalΣ0..*canonical(PlanDefinition | ActivityDefinition | Measure | OperationDefinition | Questionnaire)
instantiatesUriΣ0..*uri
basedOnΣ0..*Reference(CarePlan | ServiceRequest)
partOfΣ1..1Reference(Procedure | Observation | MedicationAdministration)
statusΣ ?!1..1codeBinding
statusReasonΣ0..1CodeableConcept
categoryΣ0..1CodeableConcept
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ0..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
subjectΣ1..1Reference(Patient | Group)
encounterΣ1..1Reference(Encounter)
performedDateTimedateTime
performedPeriodPeriod
performedStringstring
performedAgeAge
performedRangeRange
recorderΣ0..1Reference(Patient | RelatedPerson | Practitioner | PractitionerRole)
asserterΣ0..1Reference(Patient | RelatedPerson | Practitioner | PractitionerRole)
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
functionΣ0..1CodeableConcept
actorΣ1..1Reference(Practitioner | PractitionerRole | Organization | Patient | RelatedPerson | Device)
onBehalfOf0..1Reference(Organization)
locationΣ0..1Reference(Location)
reasonCodeΣ0..*CodeableConcept
reasonReferenceΣ0..*Reference(Condition | Observation | Procedure | DiagnosticReport | DocumentReference)
bodySiteΣ1..*CodeableConcept
outcomeΣ0..1CodeableConcept
report0..*Reference(DiagnosticReport | DocumentReference | Composition)
complication0..*CodeableConcept
complicationDetail0..*Reference(Condition)
followUp0..*CodeableConcept
note0..*Annotation
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
action0..1CodeableConceptBinding
manipulated1..1Reference(Device)
usedReference0..1Reference(Device | Medication | Substance)
usedCode0..*CodeableConcept

Mapping

Here is a list of the exact mapping for this FHIR Profile. The mapping includes the DICA variable and corresponding FHIR data element. In case of a DICA option set, the relation between the DICA options and available values within the FHIR data element are defined.

DICA variable FHIR Data Element DICA OptionSet Value DICA OptionSet FHIR ValueSet/Code/System
capsulectomy code.coding.code 115 1-Partial capsulectomy 57554003
capsulectomy code.coding.code 115 1-Partial capsulectomy 90991008
capsulectomy code.coding.code 115 1-Partial capsulectomy 74351000146104
capsulectomy code.coding.code 115 2-Full capsulectomy Unknown
mastopexy code.coding.code 101 1-yes 50843001
autologousflapcover code.coding.code 101 1-yes 303445008
fatgrafting code.coding.code 101 1-yes 764926003

The codes used in the mapping of DICA variables are SNOMED-CT codes. This mapping is defined by a ConceptMap named AdditionalProcedures

Constraints

Constraints can refer to the cardinality of an element, required value or type of value.

The following constraints apply:

  • Element status is required. This element requires one of the following values: preparation | in-progress | not-done | on-hold | stopped | completed | entered-in-error | unknown.
  • Element code is required, with code.coding.system value "http://snomed.info/sct".
  • The element code.coding.code value should include one of the codes listed in mapping listed above.
  • Element partOf is required. In this element, it should be referred for which Breast Implant Surgery the addional procedure has been carried out.
  • Element subject is required, referring to a Patient Resource.
  • Element encounter is required, referring to the Encounter Resource in which the Procedure occurs.
  • Element bodySite is required, using "http://snomed.info/sct" as value for subelement bodysite.coding.system, and of the following SNOMED codes for subelement bodySite.coding.code: 24028007 (Right), 7771000 (Left), or 51440002 (Bilateral).

Example Additional Procedure with capsulectomy and fatgrafting

{
   "resourceType":"Procedure",
   "id":"additional-procedure-capsulectomy",
   "meta":{
      "profile":[
         "http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/AdditionalProcedures"
      ]
   },
   "status":"completed",
   "partOf":[
      {
         "reference":"Procedure/breastimplantsurgery"
      }
   ],
   "code":{
      "coding":[
         {
            "system":"http://snomed.info/sct",
            "code":"90991008",
            "display":"Periprosthetic capsulectomy of breast"
         },
         {
            "system":"http://snomed.info/sct",
            "code":"764926003",
            "display":"Transfer of fat to breast (procedure) / Lipofilling of breast"
         }
      ]
   },
   "subject":{
      "reference":"Patient/12345"
   },
   "encounter":{
      "reference":"Encounter/4565"
   },
   "bodySite":[
      {
         "coding":[
            {
               "system":"http://snomed.info/sct",
               "code":"7771000",
               "display":"Left"
            }
         ]
      }
   ]
}