Created
March 22, 2023 14:26
-
-
Save brokenpylons/903547afb556157160592a0ad31de845 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
| <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| <xsd:element name="list"> | |
| <xsd:complexType> | |
| <xsd:group ref="List" /> | |
| </xsd:complexType> | |
| </xsd:element> | |
| <xsd:group name="List"> | |
| <xsd:choice> | |
| <xsd:element name="cell" type="Cell" /> | |
| <xsd:element name="end"> | |
| <xsd:complexType /> | |
| </xsd:element> | |
| </xsd:choice> | |
| </xsd:group> | |
| <xsd:complexType name="Cell"> | |
| <xsd:sequence> | |
| <xsd:element name="value" type="xsd:integer" /> | |
| <xsd:group ref="List" /> | |
| </xsd:sequence> | |
| </xsd:complexType> | |
| </xsd:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment