以下のようなxmlがあります
<parents>
<mother name="MMM" age="55" />
<children>
<child name="CCC" gender="male" age="25" />
</children>
</parents>
母親の年齢または子供の年齢を検証するには、以下のように xsd を記述します。
<xs:element name="mother">
<xs:complexType>
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="age">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="120"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
しかし、子供の年齢を検証したい場合、母親の年齢を超えてはならないのはどれですか?