NumericType

Last modified by Artur K. on 2026/06/05 16:18

  

https://purl.semanticip.org/linked-data/sdmx/ML/common/NumericType page_white_text TTL
rdfs:Datatype
Numeric Type
http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
common
simpleType

NumericType is a reusable simple type that allows for only numeric characters. This is not to be confused with an integer, as this may be used to numeric strings which have leading zeros. These leading zeros are not ignored. This is derived from the AlphaNumericType.

SDMXCommon.xsd

<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="NumericType">
  <xs:annotation>
   <xs:documentation>NumericType is a reusable simple type that allows for only numeric characters. This is not to be confused with an integer, as this may be used to numeric strings which have leading zeros. These leading zeros are not ignored. This is derived from the AlphaNumericType.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="AlphaNumericType">
   <xs:pattern value="[0-9]+" />
  </xs:restriction>
 </xs:simpleType>

 

sip-sdmx-ML:AlphaNumericType

owl:withRestrictions (
    [ xsd:pattern "[0-9]+" ]
)

© Semantic R&D Group, 2026