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.
CapsularGrade (Extension) | I | | Extension | There are no (further) constraints on this element Element idShort description Optional Extensions Element Definition Optional Extension Element - found in all resources.
Data type Extension Constraints- ele-1: All FHIR elements must have a @value or children
hasValue() or (children().count() > id.count()) - ext-1: Must have either extensions or value[x], not both
extension.exists() != value.exists()
Mappings |
id | | 0..1 | string | There are no (further) constraints on this element Element idShort description Unique id for inter-element referencing Definition Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
Data type string Mappings |
extension | I | 0..* | Extension | There are no (further) constraints on this element Element idShort description Additional content defined by implementations Alternate names extensions, user content Definition May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
Comments There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.
Data type Extension Sliced: Unordered, Open, by url(Value) Extensions are always sliced by (at least) url Constraints- ele-1: All FHIR elements must have a @value or children
hasValue() or (children().count() > id.count()) - ext-1: Must have either extensions or value[x], not both
extension.exists() != value.exists()
Mappings |
url | | 1..1 | uriFixed Value | Element idShort description identifies the meaning of the extension Definition Source of the definition for the extension code - a logical name or a URL.
Comments The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension.
Data type uri Fixed value http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/Capsular Mappings |
value[x] | | 1..1 | Binding | Element idShort description Value of extension Definition Value of extension - must be one of a constrained set of the data types (see Extensibility for a list).
Binding https://simplifier.net/mrdm-dbir/dbir-valueset-capsular-grade (required) Constraints- ele-1: All FHIR elements must have a @value or children
hasValue() or (children().count() > id.count())
Mappings |
valueInteger | | | integer | Data type integer |
valueString | | | string | Data type string |
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"
}
]
}
]
}