subject:ComplexType ในเอกสาร XSD
syntax:<xsd:attribute fixed="value" />
position:<xsd:complexType> ... </xsd:complexType>
content:ใช้กำหนด ค่าข้อมูล ให้กับ attribute โดยจะมีค่าข้อมูลนี้เสมอ
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:attribute name="logo" type="xsd:NMTOKEN" fixed="bamboo.png" />
</xsd:complexType>
</xsd:schema>