Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created June 13, 2022 16:50
Show Gist options
  • Save uncoded-ro/bbcf63c3e1ed0510fe07484c48be7bbd to your computer and use it in GitHub Desktop.
Save uncoded-ro/bbcf63c3e1ed0510fe07484c48be7bbd to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!-- studenti.xsd -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="studenti">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="student" minOccurs="1" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="nume" type="xsd:string" />
<xsd:element name="email" type="xsd:string" minOccurs="1" maxOccurs="2" />
<xsd:element name="grupa" type="xsd:decimal" />
<xsd:element name="medie" type="xsd:decimal" />
</xsd:sequence>
</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