Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created June 13, 2022 16:51
Show Gist options
  • Save uncoded-ro/f6474c05e130178bb592b7cd54b1e2ef to your computer and use it in GitHub Desktop.
Save uncoded-ro/f6474c05e130178bb592b7cd54b1e2ef to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!-- studenti2.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:all>
<xsd:element name="matricol" type="xsd:ID" />
<xsd:element name="nume" type="xsd:string" />
<xsd:element name="grupa" type="xsd:decimal" />
<xsd:element name="medie" type="xsd:decimal" minOccurs="0" />
</xsd:all>
</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