'Varchar', 'DoNotUseThisField' => 'Varchar', 'HairColor' => 'Varchar', 'ExcludeThisField' => 'Varchar', 'ExactMatchField' => 'Varchar', 'PartialMatchField' => 'Varchar', 'MatchAny1' => 'Varchar', 'MatchAny2' => 'Varchar', ]; private static $has_one = [ 'Customer' => Customer::class, 'ShippingAddress' => Address::class, ]; private static $searchable_fields = [ 'Name', 'HairColor', 'ExcludeThisField' => [ 'general' => false, ], 'ExactMatchField' => [ 'filter' => 'ExactMatchFilter', ], 'PartialMatchField' => [ 'filter' => 'PartialMatchFilter', ], 'MatchAny' => [ 'field' => TextField::class, 'match_any' => [ 'MatchAny1', 'MatchAny2', 'Customer.MatchAny', ] ] ]; }