AlphaType
Last modified by Artur K. on 2026/06/05 16:18
- https://purl.semanticip.org/linked-data/sdmx/ML/common/AlphaType
TTL - rdfs:Datatype
- Alpha Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- simpleType
AlphaType is a reusable simple type that allows for only mixed-case alphabetical characters. This is derived from the AlphaNumericType.
- SDMXCommon.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="AlphaType">
<xs:annotation>
<xs:documentation>AlphaType is a reusable simple type that allows for only mixed-case alphabetical characters. This is derived from the AlphaNumericType.</xs:documentation>
</xs:annotation>
<xs:restriction base="AlphaNumericType">
<xs:pattern value="[A-Za-z]+" />
</xs:restriction>
</xs:simpleType>
- sip-sdmx-ML:AlphaNumericType
owl:withRestrictions (
[ xsd:pattern "[A-Za-z]+" ]
)