Answers for "restriction on attribute xsd"

1

restriction on attribute xsd

<xs:attribute name="color">
    <xs:simpleType>
        <xs:restriction base="xs:integer">
            <xs:pattern value="[0-9][0-9][0-9]"/>
        </xs:restriction>
    </xs:simpleType>
</xs:attribute>
Posted by: Guest on October-29-2020

Code answers related to "restriction on attribute xsd"

Browse Popular Code Answers by Language