http://memberwebs.com/ns/rtfx/
element list

Documentation
A list. Lists contain paragraphs each of which is an item in the list.

Model
<list
  ordered = xs:boolean
  start = xs:integer
  type = xs:string : disc>
(para | list | table) *
</list>


Attribute Summary
 xs:booleanordered
          Whether a numbered list or not. 
 xs:integerstart
          For numbered lists the number to start at. 
 type
          The type of bullet or number on a list. 

Attribute Detail

ordered

Whether a numbered list or not.

Type:
xs:boolean
Use:
optional
Form:
unqualified

start

For numbered lists the number to start at.

Type:
xs:integer
Use:
optional
Form:
unqualified

type

The type of bullet or number on a list.

Type:
based on xs:string
with restriction:
('arabic' | 'upper-roman' | 'lower-roman' | 'upper-alpha' | 'lower-alpha' | 'disc')
Default:
disc
Use:
optional
Form:
unqualified

Source
<xs:element name="list">
<xs:complexType mixed="true">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="block"/>
</xs:choice>
<xs:attribute name="ordered" type="xs:boolean">
</xs:attribute>
<xs:attribute name="start" type="xs:integer">
</xs:attribute>
<xs:attribute name="type" default="disc">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="arabic"/>
<xs:enumeration value="upper-roman"/>
<xs:enumeration value="lower-roman"/>
<xs:enumeration value="upper-alpha"/>
<xs:enumeration value="lower-alpha"/>
<xs:enumeration value="disc"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://www.sourceforge.net.