*/ #[Validate('required|array')] public array $roleIds = []; /** * Holds the direct permissions toggled for the user (from all selected roles). * * @var array */ #[Validate('nullable|array')] public array $permissions = []; /** * Holds the SSO Immutable ID for the user. */ #[Validate('nullable|string|max:255')] public string $immutableId = ''; }