IDType
Last modified by Artur K. on 2026/06/05 16:24
- https://purl.semanticip.org/linked-data/sdmx/ML/common/IDType
TTL - rdfs:Datatype
- I D Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- simpleType
IDType provides a type which is used for restricting the characters in codes and IDs throughout all SDMX-ML messages. Valid characters include A-Z, a-z, @, 0-9, _, -, $.
- SDMXCommonReferences.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="IDType">
<xs:annotation>
<xs:documentation>IDType provides a type which is used for restricting the characters in codes and IDs throughout all SDMX-ML messages. Valid characters include A-Z, a-z, @, 0-9, _, -, $.</xs:documentation>
</xs:annotation>
<xs:restriction base="NestedIDType">
<xs:pattern value="[A-Za-z0-9_@$\-]+" />
</xs:restriction>
</xs:simpleType>- sip-sdmx-ML:NestedIDType
owl:withRestrictions (
[ xsd:pattern "[A-Za-z0-9_@$
-]+" ]
)