A single field assignment used in Fields.

interface ITemplateFieldAssignment {
    fieldName: string;
    isRequired?: boolean;
    localDescription?: string;
}

Implemented by

Properties

fieldName: string

The name of an existing field definition to assign to the template. Required.

isRequired?: boolean

Whether the field is required for entries assigned to this template specifically. Distinct from the repository-level IsRequired on the field definition.

localDescription?: string

The per-template description for this field assignment.