Changes between Version 3 and Version 4 of LEGACY - i2b2 - The algorithms applied to importing a PDO


Ignore:
Timestamp:
12/21/11 12:01:48 (13 years ago)
Author:
jeff.lusted
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LEGACY - i2b2 - The algorithms applied to importing a PDO

    v3 v4  
    66
    77A lot of this detail can be gleaned from a careful reading of the CRC documentation, particularly those parts of the CRC Design and CRC Messaging pdf's covering the import use cases. But understanding is not easy. The details have been augmented by code reading the CRC loader.
     8
     9=== The PDO (Patient Data Object) ===
     10The outline structure of a PDO is given in the following:
     11{{{
     12<?xml version="1.0" encoding="UTF-8"?>
     13<pdo:patient_data xmlns:pdo="http://www.i2b2.org/xsd/hive/pdo/1.1/pdo">
     14
     15   <!-- patient identifier set -->
     16   <pdo:pid_set>
     17      <pid> </pid>
     18   </pdo:pid_set>
     19   
     20   <!-- event identifier set -->
     21   <pdo:eid_set>
     22      <eid> </eid>
     23   </pdo:eid_set>
     24   
     25   <pdo:patient_set>
     26      <patient> </patient>
     27   </pdo:patient_set>
     28   
     29   <pdo:event_set>
     30      <event> </event>
     31   </pdo:event_set>
     32   
     33   <pdo:concept_set>
     34      <concept> </concept>
     35   </pdo:concept_set>
     36     
     37   <pdo:observation_set>
     38      <observation> </observation>
     39   </pdo:observation_set>
     40   
     41</pdo:patient_data>
     42}}}