-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.xsd
More file actions
32 lines (32 loc) · 1.53 KB
/
schema.xsd
File metadata and controls
32 lines (32 loc) · 1.53 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
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified" elementFormDefault="qualified">
<xsd:element name="ArrayOfStationPreset">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="unbounded" name="StationPreset">
<xsd:complexType>
<xsd:sequence>
<xsd:element minOccurs="0" name="Key" type="xsd:string" />
<xsd:element name="Name" type="xsd:string" />
<xsd:element name="Description" type="xsd:string" />
<xsd:element name="MachineName" type="xsd:string" />
<xsd:element name="Workgroup" type="xsd:string" />
<xsd:element name="Adapter" type="xsd:string" />
<xsd:element name="IP" type="xsd:string" />
<xsd:element name="Mask" type="xsd:string" />
<xsd:element name="Gateway" type="xsd:string" />
<xsd:element name="DNS" type="xsd:string" />
<xsd:element name="Param" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="supportedRuntime">
<xsd:complexType>
<xsd:attribute name="version" type="xsd:string" use="optional" />
<xsd:attribute name="sku" type="xsd:string" use="optional" />
</xsd:complexType>
</xsd:element>
</xs:schema>