- https://purl.semanticip.org/linked-data/sdmx/ML/AlphaNumericType
TTL - Alpha Numeric Type
- simpleType
AlphaNumericType is a reusable simple type that allows for only mixed-case alphabetical and numeric characters.
- SDMXCommon.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="AlphaNumericType">
<xs:annotation>
<xs:documentation>AlphaNumericType is a reusable simple type that allows for only mixed-case alphabetical and numeric characters.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[A-Za-z0-9]+" />
</xs:restriction>
</xs:simpleType>