AbstractSeq is a simple type based on xs:string. Concrete subclasses must restrict this type to something more sensible, such as a regular expression for IUPAC single character symbols, or whitespace separated integers or doubles. |
<xs:simpleType name="AbstractSeq"> <xs:annotation> <xs:documentation>AbstractSeq is a simple type based on xs:string. Concrete subclasses must restrict this type to something more sensible, such as a regular expression for IUPAC single character symbols, or whitespace separated integers or doubles.</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"/> </xs:simpleType> |