Hi, I've been upgrading to the 200.8 runtime on .NET9, one of the deprecations is the UnsupportedJson / UnknownJson property for several classes.
For Map & Scene, there is now an UnusedJson property that I can easily parse myself without having to deserialize the entire JSON of the map.
However, for PortalItem and ArcGISFeatureTable, we were also relying on the UnsupportedJson / UnknownJson to read properties not serialized by ArcGIS. They don't have an UnusedJson property. ArcGISFeatureTable doesn't implement ToJson() either. For the table, we wouldn't want to parse the entire map's JSON since its worse for performance.
Are there plans to add UnusedJson to other classes that had UnsupportedJson / UnknownJson before ? What does Esri suggest we replace them with ? Thank you.