Is ProductInfo field IsLimitedUnique correct?

  1. What do you want to achieve?
    Verify the meaning and accuracy of the “IsLimitedUnique” field in the productinfo dictionary.

  2. What is the issue? Include screenshots / videos if possible!
    I have a hat for sale that is limitedU, but the productinfo field “IsLimitedUnique” is false.

  3. I checked the create.roblox.com page:
    MarketplaceService | Documentation - Roblox Creator Hub

and it says:
sLimitedUnique boolean Describes whether the asset is a unique Roblox Limited ("Limited U") item that only has a fixed number sold.

The hat is a limitedU, as can be seen here:

But, when I query:

MarketplaceService:GetProductInfo(item.AssetId)

I get IsLimitedUnique is false as seen here:

["AssetId"] = 17175681833,
                    ["AssetTypeId"] = 8,
                    ["CanBeSoldInThisGame"] = true,
                    ["CollectibleItemId"] = "a2e6d770",
                    ["CollectibleProductId"] = "9aba60d16",
                    ["CollectiblesItemDetails"] =  ▶ {...},
                    ["ContentRatingTypeId"] = 0,
                    ["Created"] = "2024-04-17T01:33:53.41Z",
                    ["Creator"] =  ▼  {...},
                    ["Description"] = "If you have to ask...",
                    ["IconImageAssetId"] = 0,
                    ["IsForSale"] = true,
                    ["IsLimited"] = false,
                    ["IsLimitedUnique"] = false,
                    ["IsNew"] = false,
                    ["IsPublicDomain"] = false,
                    ["MinimumMembershipLevel"] = 0,
                    ["Name"] = "Cowboy Hat With Flowers",
                    ["PriceInRobux"] = 2500,
                    ["ProductId"] = 0,
                    ["ProductType"] = "Collectible Item",
                    ["Remaining"] = 23,
                    ["SaleLocation"] =  ▶ {...},
                    ["Sales"] = 7,
                    ["TargetId"] = 0,
                    ["Updated"] = "2024-04-17T01:48:45.68Z"
                 } 

Shouldn’t “IsLimitedUnique” be “true”?