Skip to content

Instantly share code, notes, and snippets.

@notfoundry
Last active January 6, 2017 16:33
Show Gist options
  • Select an option

  • Save notfoundry/a00ea4317948bb5ff755dfae6490cfeb to your computer and use it in GitHub Desktop.

Select an option

Save notfoundry/a00ea4317948bb5ff755dfae6490cfeb to your computer and use it in GitHub Desktop.
<?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