Mobile Device Management: duplicate entry in XSD

Remove duplicate entry in the XSD for the ProfileXML node in VPNv2 CSP.

XSD XML lines can contain the elements
- name
- minOccurs
- maxOccurs

These elements can alter between having the values 0, 1 or unbound,
but can only appear once in each XSD XML element line.

Closes #1950
This commit is contained in:
illfated 2019-04-21 08:09:45 +02:00
parent a5c6d19edf
commit 08adcc05c8

View File

@ -132,7 +132,7 @@ Here's the XSD for the ProfileXML node in VPNv2 CSP for Windows 10 and some pro
<xs:element name="NativeProtocolType" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="L2tpPsk" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="DisableClassBasedDefaultRoute" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
<xs:element maxOccurs="unbounded" name="CryptographySuite"minOccurs="0" maxOccurs="1">
<xs:element name="CryptographySuite" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="AuthenticationTransformConstants" type="xs:string" minOccurs="0" maxOccurs="1"/>