Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created June 13, 2022 16:33
Show Gist options
  • Save uncoded-ro/366db9405c3ea5e7961b3d8c11d65f41 to your computer and use it in GitHub Desktop.
Save uncoded-ro/366db9405c3ea5e7961b3d8c11d65f41 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!-- inaltime.xsd -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="persoana">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="nume" type="xsd:string" />
<xsd:element name="inaltime">
<xsd:simpleType>
<xsd:restriction base="xsd:decimal">
<xsd:minInclusive value="0" />
<xsd:maxInclusive value="2.50" />
<xsd:totalDigits value="3" />
<xsd:fractionDigits value="2" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment