SimpleTypecore:integerBetween0and4
定義
LODを表現するために、0~4までの整数を入力する型。
XMLスキーマ
<xs:simpleType name="integerBetween0and4">
	<xs:annotation>
		<xs:documentation>Type for integer values, which are greater or equal than 0 and less or equal than 4. Used for encoding of
			the LOD number. </xs:documentation>
	</xs:annotation>
	<xs:restriction base="xs:integer">
		<xs:minInclusive value="0"/>
		<xs:maxInclusive value="4"/>
	</xs:restriction>
</xs:simpleType>