. */ 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 MAXIMUM_LENGTH = 90; protected const SUBTAGS = [ 'TYPE' => '0:1:?', 'DATE' => '0:1', 'PLAC' => '0:1', 'ADDR' => '0:1', 'EMAIL' => '0:1:?', 'WWW' => '0:1:?', 'PHON' => '0:1:?', 'FAX' => '0:1:?', 'CAUS' => '0:1:?', 'AGNC' => '0:1:?', 'RELI' => '0:1:?', 'NOTE' => '0:M', 'OBJE' => '0:M', 'SOUR' => '0:M', 'RESN' => '0:1', ]; }