Capsular

FHIR Profile

The extension Capsular defines the grade of the capsular condition.

This extension is used for FHIR Profile Preexisting Condition, accessible via PreExistingCondition.

This profile is based on the FHIR version R4 specifications for extensions, see also Extensibility.

id0..1string
extensionI0..*Extension
url1..1uriFixed Value
valueIntegerinteger
valueStringstring

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
capsular extension.capsular 116 identical to ValueSet Capsular

The code for DICA variable capsular is set by ValueSet Capsular

An example of the capsular variable with value 2. The display value is optional, the code value is required.

      "valueCodeableConcept": {
        "coding": [
          {
            "system": "http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/Capsular",
            "code": "2",
            "display": "Grade 2"
          }
        ]
      }

Constraints

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

The following constraints apply:

  • The extension element must use url "http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/Capsular".
  • Each coding element should adhere to the above-mentioned URL listed
  • Each coding element should abide by the code available in the corresponding ValueSet

Example PreExistingCondition with extension Capsular for capsular grade 3

{
   "resourceType":"Condition",
   "id":"example-1-capsular",
   "meta":{
      "profile":[
         "http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/Condition/PreExistingCondition"
      ]
   },
   "code":{
      "coding":[
         {
            "system":"http://snomed.info/sct",
            "code":"12205951000119108",
            "display":"Breast implant associated squamous cell carcinoma"
         },
         {
            "system":"http://snomed.info/sct",
            "code":"237474000",
            "extension":[
               {
                  "url":"http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/Capsular",
                  "valueString":"3",
                  "display": "Grade 3"
               }
            ],
            "display":"Capsular breast contracture of breast implant (disorder)"
         }
      ]
   },
   "subject":{
      "reference":"Patient/1253"
   },
   "encounter":{
      "reference":"Encounter/34355"
   },
   "bodySite":[
      {
         "coding":[
            {
               "system":"http://snomed.info/sct",
               "code":"7771000",
               "display":"Left"
            }
         ]
      }
   ]
}