<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="game">
<xsd:complexType>
<xsd:all>
<xsd:element name="info" type="infoType" minOccurs="0"/>
</xsd:all>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="infoType">
<xsd:sequence>
<xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/>
<xsd:element name="players" minOccurs="0" maxOccurs="1">
<xsd:complexType mixed="true">
<xsd:attribute name= "number" type="playernum"/>
<!-- xsd:element name="screenname" type="xsd:string">
<xsd:complexType>
<xsd:attribute name= "player" type="playernum"/>
</xsd:complexType>
</xsd:element -->
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="playernum">
<xsd:restriction base="xsd:int">
<xsd:minInclusive value="1"/>
<xsd:maxInclusive value="4"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>infoType
問題のコードはコメントされたものです。
エラー出力が生成されます。
game.xsd:26:要素要素:スキーマパーサーエラー:要素'{http://www.w3.org/2001/XMLSchema}complexType':コンテンツが無効です。期待されるのは(アノテーション?、(simpleContent | complexContent |((group | all | choice | sequence)?,((attribute | attributeGroup)*、anyAttribute?))))です。
ただし、問題の要素には、デフォルトでcomplexContentを持つcomplextTypeが含まれています。よろしくお願いします。