-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
creating and/or loading files arguments XMLSchema compiler
- Loading branch information
suleman-uzair
committed
Jan 24, 2025
1 parent
b1f41bb
commit dd811d1
Showing
4 changed files
with
120 additions
and
13 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
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,10 @@ | ||
<schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/math"> | ||
<xsd:complexType name="User"> | ||
<xsd:sequence> | ||
<xsd:element name="id" type="xsd:nonNegativeInteger" minOccurs="1" /> | ||
<xsd:element name="age" type="xsd:unsignedLong" minOccurs="0" /> | ||
<xsd:element name="token" type="xsd:token" minOccurs="0" /> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
<xsd:element name="User" type="User"/> | ||
</schema> |
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