<xs:complexType name="FormattedTextTextType">
<xs:annotation>
<xs:documentation xml:lang="en">Provides text and indicates whether it is formatted or not.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="Formatted" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Textual information, which may be formatted as a line of information, or unformatted, as a paragraph of text.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="LanguageGroup">
<xs:annotation>
<xs:documentation xml:lang="en">The language in which the text is provided.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="TextFormat" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Indicates the format of text used in the description e.g. unformatted or html.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="PlainText">
<xs:annotation>
<xs:documentation xml:lang="en">Textual data that is in ASCII format.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="HTML">
<xs:annotation>
<xs:documentation xml:lang="en">HTML formatted text.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
|