- https://purl.semanticip.org/linked-data/sdmx/ML/StringValueType
TTL - complexType
StringValueType is a refinement of SimpleValueType limiting the content to be a string. This can be further refined with facets, patterns, etc.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="StringValueType">
<xs:annotation>
<xs:documentation>StringValueType is a refinement of SimpleValueType limiting the content to be a string. This can be further refined with facets, patterns, etc.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="ValueType">
<xs:simpleType>
<xs:restriction base="xs:string" />
</xs:simpleType>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>