- https://purl.semanticip.org/linked-data/sdmx/ML/ValueType
TTL - owl:Class
- Value Type
- complexType
ValueType is an abstract class that is the basis for any component value that cannot be simply represented as a space-normalized value (e.g. in an XML attribute). Although its content is mixed, it should be restricted so that only character data or the Text or Structured text is used. See StringValueType, IntValueType, ObserverationalTimeValueType, TextValueType, and StructuredTextValueType for details.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ValueType" abstract="true" mixed="true">
<xs:annotation>
<xs:documentation>ValueType is an abstract class that is the basis for any component value that cannot be simply represented as a space-normalized value (e.g. in an XML attribute). Although its content is mixed, it should be restricted so that only character data or the Text or Structured text is used. See StringValueType, IntValueType, ObserverationalTimeValueType, TextValueType, and StructuredTextValueType for details.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0">
<xs:element ref="Text" minOccurs="0" maxOccurs="unbounded" />
<xs:element ref="StructuredText" minOccurs="0" maxOccurs="unbounded" />
</xs:choice>
</xs:complexType>rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Text ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:StructuredText ;
owl:allValuesFrom xsd:string
] ;