大学の課題の一環として、電子健康モニタリングと記録管理用の xml データ モデルを作成する必要があります。今では XML の概念と基本構造を理解していますが、構造化の最適な方法について少し混乱しています。私は 1 つの xml ドキュメント (以下の構造を参照) を持っていますが、周辺機器と医療記録を同じドキュメント内の「健康」の下に保持することをお勧めします。これにより、単一のドキュメントが非常に大きくなる可能性があるためです。
<health>
<pat>
<person>
<name></name>
<gender></gender>
<mobile></mobile>
<email></email>
</person>
<address>
<house></house>
<street></street>
<city></city>
<pc></pc>
</address>
</pat>
<Contact>
<name></name>
<tel></tel>
</Contact>
<doctor>
<title></title>
<firstname></firstname>
<surname></surname>
<tel></tel>
</doctor>
<drug>
<name></name>
<quantity></quantity>
<cost></cost>
<expirydate></expirydate>
<prescribedate></prescribedate>
</drug>
<peripheraldata>
<temperature></temperature>
</peripheraldata>
<records>
<warnings></warnings>
<symptoms></symptoms>
<diagnosis></diagnosis>
<date></date>
</records>
</health>
前もって感謝します