27 lines
903 B
XML
27 lines
903 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<xs:schema targetNamespace="https://go.r00t2.io/"
|
|
xmlns="https://go.r00t2.io/"
|
|
xmlns:gomodh="https://go.r00t2.io/"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
elementFormDefault="qualified"
|
|
attributeFormDefault="unqualified">
|
|
|
|
<xs:include schemaLocation="../lib/types/net.xsd"/>
|
|
<xs:include schemaLocation="../lib/types/gomodh.xsd"/>
|
|
|
|
<xs:element name="gomodh">
|
|
<xs:complexType>
|
|
<xs:choice minOccurs="1" maxOccurs="unbounded">
|
|
<xs:element name="mod" type="t_gomodh_mod"/>
|
|
<xs:element name="pkg" type="t_gomodh_pkg"/>
|
|
</xs:choice>
|
|
<xs:attribute name="baseURL" type="t_net_http_basic_uri" use="required"/>
|
|
</xs:complexType>
|
|
<xs:key name="key_name">
|
|
<xs:selector xpath="./*"/>
|
|
<xs:field xpath="@name"/>
|
|
</xs:key>
|
|
</xs:element>
|
|
|
|
</xs:schema>
|