-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
FileInfoData.xsd
22 lines (22 loc) · 1.07 KB
/
FileInfoData.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="FileInfoData" targetNamespace="http://tempuri.org/FileInfoData.xsd" elementFormDefault="qualified"
attributeFormDefault="qualified" xmlns="http://tempuri.org/FileInfoData.xsd" xmlns:mstns="http://tempuri.org/FileInfoData.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="FileInfoData" msdata:IsDataSet="true">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="FileInfo">
<xs:complexType>
<xs:sequence>
<xs:element name="File_x0020_Name" type="xs:string" minOccurs="0" />
<xs:element name="Stream_x0020_Name" type="xs:string" minOccurs="0" />
<xs:element name="Stream_x0020_Size" type="xs:long" minOccurs="0" />
<xs:element name="Location" type="xs:string" minOccurs="0" />
<xs:element name="Creation_x0020_Date" type="xs:dateTime" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>