<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Alternatives for Unsupported / Unknown JSON ? in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1689430#M13881</link>
    <description>&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Parsing the entire Map object seems excessive&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;You don't need to parse everything. Only the bits you're interested in. The problem with Unknown/Unsupported json is that each release what is unknown/unsupported might change, as more and more things gets known or supported, so you can't really rely on the values when you upgrade. Another downside is that it didn't really fully support a full json tree structure, so it was already somewhat limited.&lt;BR /&gt;&lt;BR /&gt;While we considered exposing the full set of traversable JSON objects in the API, all the native maps SDKs already provide great JSON support out of the box (like System.Text.Json), so we decided to just give you full access to all the JSON and let the platform APIs do the work.&lt;/P&gt;</description>
    <pubDate>Mon, 09 Mar 2026 16:44:12 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2026-03-09T16:44:12Z</dc:date>
    <item>
      <title>Alternatives for Unsupported / Unknown JSON ?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1688867#M13878</link>
      <description>&lt;P&gt;Hi, I've been upgrading to the 200.8 runtime on .NET9, one of the deprecations is the UnsupportedJson / UnknownJson property for several classes.&lt;/P&gt;&lt;P&gt;For Map &amp;amp; Scene, there is now an UnusedJson property that I can easily parse myself without having to deserialize the entire JSON of the map.&lt;/P&gt;&lt;P&gt;However, for PortalItem and ArcGISFeatureTable, we were also relying on the&amp;nbsp;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.&lt;/P&gt;&lt;P&gt;Are there plans to add UnusedJson to other classes that had UnsupportedJson / UnknownJson before ? What does Esri suggest we replace them with ? Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2026 01:40:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1688867#M13878</guid>
      <dc:creator>EricLiu</dc:creator>
      <dc:date>2026-03-06T01:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Alternatives for Unsupported / Unknown JSON ?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1688920#M13879</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The last ArcGIS Maps SDK for .NET &lt;A href="https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Data.ArcGISFeatureTable.UnknownJson.html" target="_self"&gt;API reference&lt;/A&gt; suggests for ArcGISFeatureTable:&lt;/P&gt;&lt;H4&gt;UnknownJson&lt;/H4&gt;&lt;DIV class=""&gt;&lt;P&gt;Gets unknown data from the source JSON.&lt;/P&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;H5&gt;Declaration&lt;/H5&gt;&lt;DIV class=""&gt;&lt;PRE&gt;[&lt;SPAN class=""&gt;Obsolete(&lt;SPAN class=""&gt;"To get any unrecognized JSON values, parse the result of Map.ToJson()"&lt;/SPAN&gt;)&lt;/SPAN&gt;]
&lt;SPAN class=""&gt;public&lt;/SPAN&gt; IReadOnlyDictionary&amp;lt;&lt;SPAN class=""&gt;string&lt;/SPAN&gt;, &lt;SPAN class=""&gt;object&lt;/SPAN&gt;&amp;gt; UnknownJson { &lt;SPAN class=""&gt;get&lt;/SPAN&gt;; }&lt;/PRE&gt;&lt;P&gt;Check the text after "Obsolete"&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Portal.PortalItem.UnknownJson.html" target="_self"&gt;PortalItem&lt;/A&gt; has&amp;nbsp;&lt;SPAN&gt;UnsupportedJson / UnknownJson properties.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 06 Mar 2026 11:20:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1688920#M13879</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2026-03-06T11:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Alternatives for Unsupported / Unknown JSON ?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1689005#M13880</link>
      <description>&lt;P&gt;Thanks for clarifying, I was really hoping ArcGISFeatureTable would support its own UnusedJson property (or for ArcGISFeatureTable to support ToJson()). Parsing the entire Map object seems excessive when I only want to read Unknown / Unsupported Json of just the ArcGISFeatureTable.&lt;/P&gt;&lt;P&gt;For PortalItems its not too bad though, the entire JSON isn't too large.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2026 17:10:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1689005#M13880</guid>
      <dc:creator>EricLiu</dc:creator>
      <dc:date>2026-03-06T17:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Alternatives for Unsupported / Unknown JSON ?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1689430#M13881</link>
      <description>&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Parsing the entire Map object seems excessive&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;You don't need to parse everything. Only the bits you're interested in. The problem with Unknown/Unsupported json is that each release what is unknown/unsupported might change, as more and more things gets known or supported, so you can't really rely on the values when you upgrade. Another downside is that it didn't really fully support a full json tree structure, so it was already somewhat limited.&lt;BR /&gt;&lt;BR /&gt;While we considered exposing the full set of traversable JSON objects in the API, all the native maps SDKs already provide great JSON support out of the box (like System.Text.Json), so we decided to just give you full access to all the JSON and let the platform APIs do the work.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 16:44:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/alternatives-for-unsupported-unknown-json/m-p/1689430#M13881</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2026-03-09T16:44:12Z</dc:date>
    </item>
  </channel>
</rss>

