Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created June 13, 2022 13:00
Show Gist options
  • Save uncoded-ro/7c25b318a970dcdb9ea29a53d185904f to your computer and use it in GitHub Desktop.
Save uncoded-ro/7c25b318a970dcdb9ea29a53d185904f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!-- carti.xsd -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="carti">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="carte">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="titlu" type="xsd:string"/>
<xsd:element name="autor" type="xsd:string"/>
<xsd:element name="pagini" type="xsd:positiveInteger"/>
<xsd:element name="pret" type="xsd:decimal"/>
</xsd:sequence>
<xsd:attribute name="status" type="xsd:string" use="required"/>
</xsd:complexType>
</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