StructuredTextValueType
- https://purl.semanticip.org/linked-data/sdmx/ML/common/StructuredTextValueType
TTL - owl:Class
- Structured Text Value Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- complexType
StructuredTextValueType is a restriction of ValueType that allows multiple StructuredText (XHTML mixed content) elements to express a text value in multiple languages. The content of this should be restricted in its use to only allow a language code (xml:lang) to be used once within an element of this type.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="StructuredTextValueType">
<xs:annotation>
<xs:documentation>StructuredTextValueType is a restriction of ValueType that allows multiple StructuredText (XHTML mixed content) elements to express a text value in multiple languages. The content of this should be restricted in its use to only allow a language code (xml:lang) to be used once within an element of this type.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:restriction base="ValueType">
<xs:sequence>
<xs:element ref="StructuredText" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>rdfs:subClassOf sip-sdmx-ML-common:ValueType ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:StructuredText ;
owl:allValuesFrom xsd:string
] ;