2.2.5.2 restrictedAnyURI

The restrictedAnyURI simple type is the same as the xsd:anyURI simple type, except that the length of restrictedAnyURI is restricted to a value from 1 through 64<2>.

The schema for this type is as follows:

<xsd:simpleType name="restrictedAnyURI">
    <xsd:annotation>
        <xsd:documentation>anyURI but bounded to length between 1 and 64.</xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base="xsd:anyURI">
        <xsd:minLength value="1" />
        <xsd:maxLength value="64" />
    </xsd:restriction>
</xsd:simpleType>