-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSDCSubmitForm.xsd
64 lines (64 loc) · 3.77 KB
/
SDCSubmitForm.xsd
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:ihe:qrph:sdc:2016"
xmlns="urn:ihe:qrph:sdc:2016">
<!-- 9/15/2016 Changes for IHE Profile Trial Implementation (for Jan 2017 Connectathon) -->
<xs:include schemaLocation="SDCFormDesign.xsd"/>
<xs:element name="SDCSubmissionPackage">
<xs:annotation>
<xs:documentation>NEW: Converted to ExtensionType</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ExtensionBaseType">
<xs:sequence>
<xs:element minOccurs="0" name="DemogFormDesign" type="FormDesignType"/>
<xs:element maxOccurs="unbounded" name="FormDesign" type="FormDesignType"/>
</xs:sequence>
<xs:attribute name="title" type="xs:string">
<xs:annotation>
<xs:documentation>NEW</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="instanceID" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>NEW: Unique string used to identify a unique instance of a package. Used for tracking package responses across time and across multiple episodes of editing by end-users. This string does not change for each edit session of a package instance.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="instanceVersion" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>NEW: Timestamp used to identify a unique instance of a package. Used for tracking package responses across time and across multiple episodes of editing by end-users. This field must change for each edit session of a package instance.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="instanceVersionPrev" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>NEW: Unique dateTime used to identify the immediate previous instance of an SDCSubmitForm package. Used for tracking package responses across time and across multiple episodes of editing by end-users. This field must change for each edit session of a package instance.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="pkgDateTimeStamp" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>NEW</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="X_pkgInstanceURI" type="URI_Atype" use="required">
<xs:annotation>
<xs:documentation>NEW: Unique URI used to identify a unique instance of a package. Used for tracking package responses across time and across multiple episodes of editing by end-users. This URI does not change for each edit session of a package instance.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="X_pkgInstanceVersionURI" type="URI_Atype" use="required">
<xs:annotation>
<xs:documentation>NEW: Unique URI used to identify a unique instance of a package. Used for tracking package responses across time and across multiple episodes of editing by end-users. This URI must change for each edit session of a package instance.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="X_pkgPreviousInstanceVersionURI" type="URI_Atype" use="required">
<xs:annotation>
<xs:documentation>NEW: Unique URI used to identify the immediate previous instance of an SDCSubmitForm package. Used for tracking package responses across time and across multiple episodes of editing by end-users. This URI must change for each edit session of a package instance.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:schema>