Skip to content

Instantly share code, notes, and snippets.

@ibuilder
Created October 28, 2023 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ibuilder/4cc237e3112825751bde11338265a7bb to your computer and use it in GitHub Desktop.
Save ibuilder/4cc237e3112825751bde11338265a7bb to your computer and use it in GitHub Desktop.
XSD file for Building
<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