-
Notifications
You must be signed in to change notification settings - Fork 1
crewlist
hubendubler edited this page Sep 24, 2018
·
1 revision
The crewlist
(Crew list) links different crew members and their roles to the film. There are one or more crewitem
child elements that describe the role and individual.
element crewlist {
element crewitem {
(element persname { text } | element corpname { text }),
element role { text }*
}+
}
<crewlist>
<crewitem>
<role>director</role>
<role>writer</role>
<role>animation and backgrounds</role>
<persname>Michael Dudok de Wit</persname>
</crewitem>
<crewitem>
<role>additional animation</role>
<persname>Arjan Wilschut</persname>
</crewitem>
<crewitem>
<role>mixing</role>
<corpname>Studio SPR</corpname>
</crewitem>
</crewlist>
FEI documentation - First draft 09/2018