AlphaNumericType
Last modified by Artur K. on 2026/06/05 16:18
- https://purl.semanticip.org/linked-data/sdmx/ML/common/AlphaNumericType
TTL - rdfs:Datatype
- Alpha Numeric Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- 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>
- xsd:string
owl:withRestrictions (
[ xsd:pattern "[A-Za-z0-9]+" ]
)