Created
October 28, 2023 12:56
-
-
Save ibuilder/4cc237e3112825751bde11338265a7bb to your computer and use it in GitHub Desktop.
XSD file for Building
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
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="Building"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="Name" type="xs:string"/> | |
<xs:element name="Address" type="xs:string"/> | |
<xs:element name="FloorCount" type="xs:positiveInteger"/> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment