私はxmlファイルに対してxmlスキーマを書いています。次のコードでこのエラーが発生しましたが、理由がわかりません。なにか提案を?
cvc-type.3.1.1: 要素 'employees' は単純型であるため、名前空間名が 'http://www.w3.org/2001/XMLSchema-instance' と同じであり、 [ローカル名] は、'type'、'nil'、'schemaLocation'、または 'noNamespaceSchemaLocation' のいずれかです。ただし、属性「essns」が見つかりました。simpleType で始まる問題が見つかりました。
<xs:element name="employees" >
<xs:simpleType>
<xs:list itemType ="xs:integer"/>
</xs:simpleType>
</xs:element>
<xs:element name= "projectsControlled">
<xs:simpleType>
<xs:list itemType ="xs:integer" />
</xs:simpleType>
</xs:element>
以下はxmlコードです
<employees essns="888665555"/>
<projectsControlled pnos="20"/>