| 4 | |
| 5 | A fuller explanation is given in the accompanying document; see [raw-attachment:MetadataXML-documentation.txt MetadataXML Column Format.]. This requires careful reading. The use of this column has expanded from v1.5 to v1.6 of i2b2. |
| 6 | |
| 7 | Interestingly, here is an example of its use applied to integer values other than lab results... |
| 8 | |
| 9 | {{{ |
| 10 | From: Larry Errecart [larry.errecart@ucdmc.ucdavis.edu] |
| 11 | Sent: 03 March 2011 20:22 |
| 12 | To: Holden, Nick |
| 13 | Subject: Re: Integer values in i2b2 data other than lab users |
| 14 | |
| 15 | We have blood pressure and BMI loaded and had to emulate the xml in the lab records to enable the "set value" function. Here's our c_metadataxml entry for systolic: |
| 16 | |
| 17 | <?xml version="1.0"?> |
| 18 | <ValueMetadata> |
| 19 | <Version>3.02</Version> |
| 20 | <CreationDateTime>12/15/2009 11:22:19</CreationDateTime> |
| 21 | <TestID>SYSTOLIC</TestID> |
| 22 | <TestName>SYSTOLIC</TestName> |
| 23 | <DataType>PosInteger</DataType> |
| 24 | <CodeType>GRP</CodeType> |
| 25 | <Loinc>99999-9</Loinc> |
| 26 | <Flagstouse>HL</Flagstouse> |
| 27 | <Oktousevalues>Y</Oktousevalues> |
| 28 | <MaxStringLength></MaxStringLength> |
| 29 | <LowofLowValue>50</LowofLowValue> |
| 30 | <HighofLowValue>90</HighofLowValue> |
| 31 | <LowofHighValue>140</LowofHighValue> |
| 32 | <HighofHighValue>230</HighofHighValue> |
| 33 | <LowofToxicValue></LowofToxicValue> |
| 34 | <HighofToxicValue></HighofToxicValue> |
| 35 | <EnumValues></EnumValues> |
| 36 | <CommentsDeterminingExclusion> |
| 37 | <Com></Com> |
| 38 | </CommentsDeterminingExclusion> |
| 39 | <UnitValues> |
| 40 | <NormalUnits>mm/Hg</NormalUnits> |
| 41 | <EqualUnits> mm/Hg </EqualUnits> |
| 42 | <ExcludingUnits></ExcludingUnits> |
| 43 | <ConvertingUnits> |
| 44 | <Units></Units> |
| 45 | <MultiplyingFactor></MultiplyingFactor> |
| 46 | </ConvertingUnits> |
| 47 | </UnitValues> |
| 48 | <Analysis> |
| 49 | <Enums /> |
| 50 | <Counts /> |
| 51 | <New /> |
| 52 | </Analysis> |
| 53 | </ValueMetadata> |
| 54 | |
| 55 | larry |
| 56 | }}} |
| 57 | |