-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: carlgsmith <[email protected]>
- Loading branch information
1 parent
78cfe9a
commit 9013580
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="https://github.com/ATL-NZ/apteryx" | ||
xmlns="https://github.com/ATL-NZ/apteryx" | ||
elementFormDefault="qualified"> | ||
<xs:element name="NODE"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element ref="NODE" minOccurs="0" maxOccurs="unbounded" /> | ||
</xs:sequence> | ||
<xs:attribute name="name" type="xs:string" use="required" /> | ||
<xs:attribute name="default" type="xs:string" use="optional" /> | ||
<xs:attribute name="value" type="xs:string" use="optional" /> | ||
<xs:attribute name="help" type="xs:string" use="optional" /> | ||
<xs:attribute name="hidden" type="xs:boolean" use="optional" /> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="MODULE"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element ref="NODE" minOccurs="0" maxOccurs="unbounded"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |