Skip to content

crewlist

hubendubler edited this page Sep 24, 2018 · 1 revision

crewlist

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.

Definition

element crewlist {
    element crewitem {
        (element persname { text } | element corpname { text }),
        element role { text }*
    }+
}

Usage

<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>
Clone this wiki locally