XHTMLType
- https://purl.semanticip.org/linked-data/sdmx/ML/common/XHTMLType
TTL - owl:Class
- X H T M L Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- complexType
XHTMLType allows for mixed content of text and XHTML tags. When using this type, one will have to provide a reference to the XHTML schema, since the processing of the tags within this type is strict, meaning that they are validated against the XHTML schema provided.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="XHTMLType" mixed="true">
<xs:annotation>
<xs:documentation>XHTMLType allows for mixed content of text and XHTML tags. When using this type, one will have to provide a reference to the XHTML schema, since the processing of the tags within this type is strict, meaning that they are validated against the XHTML schema provided.</xs:documentation>
</xs:annotation>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any namespace="http://www.w3.org/1999/xhtml" processContents="strict" />
</xs:sequence>
<xs:attribute ref="xml:lang" default="en" />
</xs:complexType>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
] ;