Guest User

Untitled

a guest
Jul 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <!-- Declaring Global Element 'Major' -->
  2. <xsd:element name = "Major">
  3. <xsd:simpleType>
  4. <!-- Restricting the values to a set of value using 'enumeration' -->
  5. <xsd:restriction base = "xsd:string">
  6. <xsd:enumeration value = "CS"/>
  7. <xsd:enumeration value = "CSCN"/>
  8. <xsd:enumeration value = "EE"/>
  9. <xsd:enumeration value = "EECN"/>
  10. </xsd:restriction>
  11. </xsd:simpleType>
  12. </xsd:element>
Add Comment
Please, Sign In to add comment