| 8 | |
| 9 | === The PDO (Patient Data Object) === |
| 10 | The 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 | }}} |