Item

The item element corresponds to the atomic medical information (e.g. blood pressure). It can also represent a concept that is not medical if required (e.g. a contact person).

We do not describe here all the possible elements for an item since the meaning and the use of those elements are defined by the transaction context. We only provide the very basic elements that could be used in every context.

id

Identifies the heading or item within the current parent element (transaction or heading).
The ID-KMEHR identifying system requires using the sequential position of the heading or item within the parent element.

In addition to this, local heading identifiers may be used.

Mandatory

cd

Specifies the ‘type’ of the item according to the CD-ITEM dictionary (or other recognized dictionary for items)

Other local codifications may be associated.

Mandatory

content

Provides the ‘value’ of the item. The data type to use to describe this value is defined by the transaction context.

Optional

text

Comments about the item.

Optional

lnk

To establish link(s) with the item.

Optional

XML examples

The following item element describes a contact person. Its content is a person element.

<item>
   <id SV="1.0" S="ID-KMEHR">1</id>
   <cd SV="1.0" S="CD-ITEM">contactperson</cd>
   <cd SV="1.0" S="CD-CONTACT-PERSON">father</cd>
   <content>
      <person>
         <id SV="1.0" S="INSS"/>
         <firstname>FatherFirstname</firstname>
         <familyname>FatherFamilyname</familyname>
         <sex>
            <cd SV="1.0" S="CD-SEX">male</cd>
         </sex>
      </person>
   </content>
</item>

The following item represents a ‘medical problem’ that is described in free text.

<item>
   <id S="ID-KMEHR" SV="1.0">8</id> 
   <cd S="CD-ITEM" SV="1.0">healthcareelement</cd> 
   <content>
      <text L="en">Adult respiratory distress syndrom</text>
   </content>
</item>

The following item represents a ‘medical problem’ described with multiple codifications.

<item>
   <id S="ID-KMEHR" SV="1.0">8</id>
   <cd S="CD-ITEM" SV="1.0">healthcareelement</cd>
   <content>
      <cd S="CD-CLINICAL" SV="1.0">10008140</cd>
      <cd S="ICPC" SV="2">R99</cd>
      <cd S="ICD" SV="10">J80</cd>
   </content>
</item>

The following item represents ‘major congenital malformations detected at birth’ as classified for eBirth project (specific classification).

<item>
   <id SV="1.0" S="ID-KMEHR">6</id>
   <cd SV="1.0" S="CD-ITEM-EBIRTH">congenitalmalformation</cd>
   <content>
      <cd SV="1.0" S="LOCAL" SL="CD-EBIRTH-CONGENITALMALFORMATION">trisomie21</cd>
   </content>
   <content>
      <cd SV="1.0" S="LOCAL" SL="CD-EBIRTH-CONGENITALMALFORMATION">membersreduction</cd>
   </content>
</item>