-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added separate type for historical patient data to support child status
- Loading branch information
1 parent
2c5a493
commit ce7994b
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" | ||
xmlns:ctr="http://lmst.dk/ctr/xml.schema/2022/12/01" | ||
targetNamespace="http://lmst.dk/ctr/xml.schema/2022/12/01" | ||
elementFormDefault="qualified"> | ||
|
||
<include schemaLocation="PatientStatusValue.xsd"/> | ||
<include schemaLocation="IsChild.xsd"/> | ||
<include schemaLocation="ValidFromDate.xsd"/> | ||
<include schemaLocation="ValidToDate.xsd"/> | ||
|
||
<element name="PatientHistoricalStatus" type="ctr:PatientHistoricalStatusType"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Historical Patient status</documentation> | ||
<documentation xml:lang="da-DK">Historisk Patientstatus</documentation> | ||
</annotation> | ||
</element> | ||
<complexType name="PatientHistoricalStatusType"> | ||
<sequence> | ||
<element name="Status" type="ctr:PatientStatusValueType"/> | ||
<element name="Child" type="ctr:IsChildType"/> | ||
<element name="ValidFromDate" type="ctr:ValidFromDateType" minOccurs="0"/> | ||
<element name="ValidToDate" type="ctr:ValidToDateType" minOccurs="0"/> | ||
</sequence> | ||
</complexType> | ||
</schema> |