AlphaNumericType

Version 18.1 by Artur K. on 2026/05/27 10:58

  

https://purl.semanticip.org/linked-data/sdmx/ML/AlphaNumericType page_white_text TTL
rdfs:Datatype
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>

 

xsd:string

owl:withRestrictions (
    [ xsd:pattern "[A-Za-z0-9]+" ]
)

© Semantic R&D Group, 2026