Schema Attributes Reference
- open model
- The element can contain elements, attributes, and text not specified in the content model. This is the default value.
- closed model
- The element cannot contain elements, attributes, and text except for that specified in the content model. DTDs use a closed model.
- textOnly content
- The element can contain only text, not elements. Note that if the model attribute is set to "open", the element can contain text and additional elements.
- eltOnly content
- The element can contain only the elements, not free text. Note that if the model attribute is set to "open", the element can contain text and additional elements.
- empty content
- The element cannot contain text or elements. Note that if the model attribute is set to "open", the element can contain text and additional elements.
- mixed content
- The element can contain a mix of named elements and text. This is the default value.
- one order
- Permits only one of a set of elements.
- seq order
- Requires the elements to appear in the specified sequence.
- many order
- Permits the elements to appear (or not appear) in any order. This is the default.