-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDispensingPeriodInformation.xsd
More file actions
26 lines (24 loc) · 1.08 KB
/
Copy pathDispensingPeriodInformation.xsd
File metadata and controls
26 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:mc160="http://fmk-teknik.dk/160/advis"
targetNamespace="http://fmk-teknik.dk/160/advis"
elementFormDefault="qualified">
<include schemaLocation="DispensingIdentifier.xsd"/>
<include schemaLocation="DispensingPeriodIdentifier.xsd"/>
<complexType name="DispensingPeriodInformationType">
<annotation>
<documentation xml:lang="en-GB">Information about a dispensing period, optionally including a status change or an affected dispensing</documentation>
<documentation xml:lang="da-DK">Information om en dispenseringsperiode, eventuelt med en statusændring eller en berørt dispensering</documentation>
</annotation>
<sequence>
<element name="Identifier" type="mc160:DispensingPeriodIdentifierType"/>
<choice minOccurs="0">
<sequence>
<element name="OldStatus" type="string"/>
<element name="NewStatus" type="string"/>
</sequence>
<element name="DispensingIdentifier" type="mc160:DispensingIdentifierType"/>
</choice>
</sequence>
</complexType>
</schema>