missed one

This commit is contained in:
brent s. 2020-09-11 00:15:43 -04:00
parent 8f3ed51020
commit 2bd6216426
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
2 changed files with 31 additions and 1 deletions

1
.gitignore vendored
View File

@ -19,4 +19,3 @@
.editix
.idea/
__pycache__/
test.py

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema targetNamespace="http://xmlsoft.org/"
xmlns="http://xmlsoft.org/"
xmlns:libxml2="http://xmlsoft.org/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
attributeFormDefault="unqualified">


<xs:include schemaLocation="../lib/types/cksum.xsd"/>
<xs:include schemaLocation="../lib/types/std.xsd"/>

<xs:element name="libxml2">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="sub">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="sub2" type="xs:string" minOccurs="0"/>
<xs:element name="nestedInclude" type="t_cksum_hash" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
<xs:attribute name="attrOpt" use="optional" default="none specified" type="xs:string"/>
<xs:attribute name="attrReq" use="required" type="t_std_nonempty"/>
<xs:attribute name="attrBoolNoDef" use="optional" type="xs:boolean"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>

</xs:schema>