Last active
January 6, 2017 16:33
-
-
Save notfoundry/a00ea4317948bb5ff755dfae6490cfeb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
| <xs:simpleType name="versiontype"> | |
| <xs:restriction base="xs:string"/> | |
| </xs:simpleType> | |
| <xs:complexType name="targettype"> | |
| <xs:sequence> | |
| <xs:element name="id" type="xs:string"/> | |
| <xs:element name="bundle" type="xs:string"/> | |
| <xs:element name="minversion" type="versiontype" minOccurs="0"/> | |
| <xs:element name="maxversion" type="versiontype" minOccurs="0"/> | |
| </xs:sequence> | |
| </xs:complexType> | |
| <xs:complexType name="includestype"> | |
| <xs:sequence> | |
| <xs:element name="include" type="xs:string" maxOccurs="unbounded"/> | |
| </xs:sequence> | |
| </xs:complexType> | |
| <xs:complexType name="plugintype"> | |
| <xs:sequence> | |
| <xs:element name="target" type="targettype"/> | |
| <xs:element name="includes" type="includestype"/> | |
| </xs:sequence> | |
| </xs:complexType> | |
| <xs:element name="plugin" type="plugintype"/> | |
| </xs:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment