<xs:attribute name="output">
<xs:annotation>
<xs:documentation>the intended output method Suggested values include: 1] web; 2] print; 3] plaintext</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="web">
<xs:annotation>
<xs:documentation>the output is intended for presentation in a web format</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="print">
<xs:annotation>
<xs:documentation>the output is intended for presentation in a print format</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="plaintext">
<xs:annotation>
<xs:documentation>the output is intended for presentation in a plain text format</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:pattern value="(\p{L}|\p{N}|\p{P}|\p{S})+"/>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
</xs:attribute> |