<castGroup>

<castGroup> (cast list grouping) groups one or more individual castItem elements within a cast list. 7.1.4 Cast Lists
Moduledrama — 7 Performance Texts
AttributesGlobal attributes only
Used by
May contain
Declaration

<rng:element name="castGroup">
<rng:ref name="att.global.attributes"/>
<rng:group>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="model.global"/>
   <rng:ref name="model.headLike"/>
  </rng:choice>
 </rng:zeroOrMore>
 <rng:oneOrMore>
  <rng:choice>
   <rng:ref name="castItem"/>
   <rng:ref name="castGroup"/>
   <rng:ref name="roleDesc"/>
  </rng:choice>
  <rng:zeroOrMore>
   <rng:ref name="model.global"/>
  </rng:zeroOrMore>
 </rng:oneOrMore>
 <rng:optional>
  <rng:ref name="trailer"/>
  <rng:zeroOrMore>
   <rng:ref name="model.global"/>
  </rng:zeroOrMore>
 </rng:optional>
</rng:group>
</rng:element>
element castGroup
{
   att.global.attributes,
   (
      ( model.global | model.headLike )*,
      ( ( castItem | castGroup | roleDesc ), model.global* )+,
      ( trailer, model.global* )?
   )
}
Example
<castGroup rend="braced">
 <castItem>
  <role>Walter</role>
  <actor>Mr Frank Hall</actor>
 </castItem>
 <castItem>
  <role>Hans</role>
  <actor>Mr F.W. Irish</actor>
 </castItem>
 <roleDesc>friends of Mathias</roleDesc>
</castGroup>
Note
The rend attribute may be used, as here, to indicate whether the grouping is indicated by a brace, whitespace, font change, etc.
Note that in this example the role description ‘friends of Mathias’ is understood to apply to both roles equally.