Definition Type: SimpleType
Name: positive-integer-or-empty
Namespace: http://www.eclaimlink.ae/DHD/ValidationSchema
Containing Schema: CommonTypes_20191113.xsd
Documentation:
-	The number-or-normal values can be either a positive integer or an empty string. This is used for the content of the ensemble element.
Collapse XSD Schema Diagram:
XSD Diagram of positive-integer-or-empty
Collapse XSD Schema Code:
<xs:simpleType name="positive-integer-or-empty">
    <xs:annotation>
        <xs:documentation>
        -	The number-or-normal values can be either a positive integer or an empty string. This is used for the content of the ensemble element.
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xs:positiveInteger">
        <xs:simpleType>
            <xs:restriction base="xs:string">
                <xs:enumeration value="1" />
                <xs:enumeration value="2" />
                <xs:enumeration value="3" />
                <xs:enumeration value="4" />
                <xs:enumeration value="5" />
            </xs:restriction>
        </xs:simpleType>
    </xs:union>
</xs:simpleType>