- https://purl.semanticip.org/linked-data/sdmx/ML/TextType
TTL - owl:Class
- Text Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- complexType
TextType provides for a set of language-specific alternates to be provided for any human-readable constructs in the instance.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="TextType">
<xs:annotation>
<xs:documentation>TextType provides for a set of language-specific alternates to be provided for any human-readable constructs in the instance.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute ref="xml:lang" default="en">
<xs:annotation>
<xs:documentation>The xml:lang attribute specifies a language code for the text. If not supplied, the default language is assumed to be English.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
rdfs:subClassOf xsd:string ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty xml:lang ;
owl:allValuesFrom xsd:language
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty xml:lang ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:language
] ;