Represents a role card that requires participants in a lineup.

A participant can be a person or an entity.

0.4.0

interface LineupRoleCardParticipant {
    editing: boolean;
    hidden: boolean;
    id: number;
    maximum: number;
    minimum: number;
    name: string;
    participants: LineupParticipant[];
    type: "Participant";
    description?: string;
}

Hierarchy (view full)

Properties

editing: boolean

Whether the role is being edited.

hidden: boolean

Whether the role is hidden in presentation mode.

0.9.0

id: number
maximum: number

The maximum number of participants that can be assigned to the role.

0 means no limit.

0
minimum: number

The minimum number of participants required for the role.

If not specified, the minimum number of participants is 1 as defined in Role Configuration.

name: string

The name of the role.

Maximum length is defined in Role Configuration.

participants: LineupParticipant[]
type

The type of the role card.

description?: string

Description of the role.

Maximum length is defined in Role Configuration.