As per Bitwarden source code, the license options LimitCollectionCreation and AllowAdminAccessToAllCollectionItems are deprecated:
https://github.com/bitwarden/server/blob/99e132603926ccea532500553b62de09310bd4aa/src/Core/Billing/Organizations/Models/OrganizationLicense.cs#L94-L96
// Deprecated. Left for backwards compatibility with old license versions.
LimitCollectionCreationDeletion = org.LimitCollectionCreation || org.LimitCollectionDeletion;
AllowAdminAccessToAllCollectionItems = org.AllowAdminAccessToAllCollectionItems;
So I think they could be removed?
As per Bitwarden source code, the license options
LimitCollectionCreationandAllowAdminAccessToAllCollectionItemsare deprecated:https://github.com/bitwarden/server/blob/99e132603926ccea532500553b62de09310bd4aa/src/Core/Billing/Organizations/Models/OrganizationLicense.cs#L94-L96
So I think they could be removed?