XMLスキーマでは、要素内に最大値10、最小値1の整数を書き込めるようにする方法と、要素に属性をAge
持たせる方法を教えてください。restriction
Age
Age
<xsd:element name="Age">
<xsd:complexType>
here i want to have restriction to control max and min value inside Age element
<xsd:attribute name="type" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
警告のない XML コード
<Age type="sth">
5
</Age>
警告のある XML コード
<Age type="sth">
22
</Age>