XML とスキーマが機能しない理由を理解するのに苦労しています。
スキーマ:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3schools.com"
xmlns="http://www.w3schools.com"
elementFormDefault="qualified">
<xs:element name="animals">
<xs:element name="animal">
<xs:complexType>
<xs:element name="species"/>
<xs:element name="name"/>
<xs:element name="population" minOccurs="1"/>
</xs:complexType>
</xs:element>
</xs:element>
XML:
<?xml version="1.0"?>
<animals xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="animals.xsd">
<animal>
<species>reptile</species>
<name>cobra</name>
</animal>
</animals>
最小発生数が 1 の場合、xml ファイルから人口が欠落しているため、エラーをスローすべきではありません。
私はすべて正しくやっていますか?