jos.enumeration JOS.Enumeration - System.Text.Json support Custom JsonConverter that only writes the integer value of our Enumeration class. It also supports deserialization by only supplying the Enumeration value.
System.Text.Json Some basic query support for System.Text.Json - (JSONPath inspired) Shows how to select and remove properties on a JsonObject using some custom extension methods.
dotnet Protect yourself when deserializing - System.Text.Json When dealing with deserialization of JSON, it's always a good idea to validate that it in fact deserialized correctly. But, how do you do that using System.Text.Json?
dotnet core Polymorphic deserialization with System.Text.Json How to do polymorphic deserialization with System.Text.Json by using a custom JsonConverter
dotnet Custom Dictionary JsonConverter using System.Text.Json How to customize the deserialization/serialization of Dictionary<string, object> using System.Text.Json and a custom JsonConverter