. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * CASTE_NAME := {Size=1:90} * A name assigned to a particular group that this person was associated with, * such as a particular racial group, religious group, or a group with an * inherited status. */ class CasteName extends AbstractElement { protected const MAX_LENGTH = 90; protected const SUBTAGS = [ 'DATE' => '0:1', 'PLAC' => '0:1', 'NOTE' => '0:M', 'OBJE' => '0:M', 'SOUR' => '0:M', 'RESN' => '0:1', ]; }