MeshAdmDevice

FHIR Profile

The Implant Device Resource refers to the implant used for breast surgery. The profile is accessible via Device and presented below.

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

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
id1..1string
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeΣ0..1CodeableConceptBinding
systemΣ0..1uri
valueΣ1..1string
periodΣ0..1Period
assignerΣ0..1Reference(Organization)
definition0..1Reference(DeviceDefinition)
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
deviceIdentifierΣ0..1string
issuer0..1uri
jurisdiction0..1uri
carrierAIDCΣ0..1base64Binary
carrierHRFΣ0..1string
entryType0..1codeBinding
statusΣ ?!0..1codeBinding
statusReason0..*CodeableConceptBinding
distinctIdentifier0..1string
manufacturer1..1stringBinding
manufactureDate0..1dateTime
expirationDate0..1dateTime
lotNumber1..1string
serialNumber1..1string
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
name1..1string
type1..1codeBinding
modelNumber0..1string
partNumber0..1string
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
systemType1..1CodeableConcept
version0..1string
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
type0..1CodeableConcept
component0..1Identifier
value1..1string
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
type1..1CodeableConcept
valueQuantity0..*Quantity
valueCode0..*CodeableConcept
patient0..1Reference(Patient)
owner0..1Reference(Organization)
contact0..*ContactPoint
location0..1Reference(Location)
url0..1uri
note0..*Annotation
safetyΣ0..*CodeableConcept
parent0..1Reference(Device)

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
sheet type.coding.system n/a n/a http://snomed.info/sct
sheet type.coding.code 145 1-MESH/ADM sheet Unknown
sheet type.coding.code 145 2-MESH 404213007
sheet type.coding.code 145 3-ADM Unkown
admmanufacturer manufacturer 131 n/a ADM/Mesh Manufacturer
admmanother manufacturer n/a n/a n/a
meshmanufacturer manufacturer 131 n/a ADM/Mesh Manufacturer
meshmanother manufacturer n/a n/a n/a
admcatalogus identifier.id n/a n/a admcatalogus
admcatalogus identifier.value n/a n/a n/a
meshcatalogus identifier.id n/a n/a admcatalogus
meshcatalogus identifier.value n/a n/a n/a
admserialno serialNumber n/a n/a n/a
admlotno lotNumber n/a n/a n/a
meshserialno serialNumber n/a n/a n/a
meshlotno lotNumber n/a n/a n/a

Constraints

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

The following constraints apply:

  • The element identifier contains slice catalogusno. For the meshcatalogus variable, use for identifier.id value "meshcatalogus", with the actual value for this variable in identifier.value. The same principle works for variable admcatalogus, see example.
  • Element type is mandatory. The value should contain a SNOMED code that corresponds with one of the SNOMED codes listed in the mapping for variable "sheet".
  • For element manufacturer, use the value from ValueSet ADM/Mesh Manufacturer when admmanufacturer or meshmanufacturer apply. The codes in this ValueSet are identical to the codes used in DICA option set 145. In case of admmanother or meshmanother, set the value for this variable in the element, see example 2.

Example MESH device with manufacturer from Valueset Manufacturer

{
   "resourceType":"Device",
   "id":"example-1-mesh-device",
   "meta":{
      "profile":[
         "http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/MeshAdmDevice"
      ]
   },
   "identifier":[
      {
         "id":"meshcatalogus",
         "value":"1234567890354353"
      }
   ],
   "status":"active",
   "manufacturer":"13",
   "lotNumber":"LOT3434",
   "serialNumber":"SN453664",
   "type":{
      "coding":[
         {
            "system":"http://snomed.info/sct",
            "code":"404213007",
            "display":"Mesh (physical object)"
         }
      ]
   }
}

Example MESH device with other manufacturer

{
   "resourceType":"Device",
   "id":"example-2-mesh-device",
   "meta":{
      "profile":[
         "http://mrdm.nl/profiles/fhir/r4/dbir/StructureDefinition/MeshAdmDevice"
      ]
   },
   "identifier":[
      {
         "id":"admcatalogus",
         "value":"1234567890354353"
      }
   ],
   "status":"active",
   "manufacturer":"other manufacturer",
   "lotNumber":"LOT3434",
   "serialNumber":"SN453664",
   "type":{
      "coding":[
         {
            "system":"http://snomed.info/sct",
            "code":"404213007",
            "display":"Mesh (physical object)"
         }
      ]
   }
}