subject:Sequence Element ในเอกสาร XSD
syntax:<xsd:sequence>
<xsd:element ... />
<xsd:element ... />
</xsd:sequence>
position:<xsd:complexType> ... </xsd:complexType>
content:ใช้กำหนดว่า ให้สร้าง element แบบเรียงลำดับด้วย
example:<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="football">
<xsd:sequence>
<xsd:element name="stadium" type="xsd:NMTOKEN" />
<xsd:element name="manager" type="xsd:NMTOKEN" />
<xsd:element name="footballer" type="xsd:NMTOKEN" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>