<castItem>

<castItem> (cast list item) contains a single entry within a cast list, describing either a single role or a list of non-speaking roles. 7.1.4 Cast Lists
Moduledrama — 7 Performance Texts
AttributesIn addition to global attributes
typecharacterizes the cast item.
Status Optional
Legal values are:
role
the item describes a single role. [Default]
list
the item describes a list of non-speaking roles.
Used by
May contain
Declaration

<rng:element name="castItem">
<rng:ref name="att.global.attributes"/>
<rng:optional>
 <rng:attribute name="typea:defaultValue="role">
  <rng:choice>
   <rng:value>role</rng:value>
   <rng:value>list</rng:value>
  </rng:choice>
 </rng:attribute>
</rng:optional>
<rng:zeroOrMore>
 <rng:choice>
  <rng:text/>
  <rng:ref name="model.gLike"/>
  <rng:ref name="model.castItemPart"/>
  <rng:ref name="model.phrase"/>
  <rng:ref name="model.global"/>
 </rng:choice>
</rng:zeroOrMore>
</rng:element>
element castItem
{
   att.global.attributes,
   attribute type { "role" | "list" }?,
   ( text | model.gLike | model.castItemPart | model.phrase | model.global )*
}
Example
<castItem>
 <role>Player</role>
 <actor>Mr Milward</actor>
</castItem>
Example
<castItem type="list">Constables, Drawer, Turnkey, etc.</castItem>