<PackageReference Include="System.Text.Json" Version="11.0.0-preview.2.26159.112" />

System.Text.Json.Serialization.JsonConverterAttribute

When placed on a property or type, specifies the converter type to use.
namespace System.Text.Json.Serialization { public class JsonConverterAttribute : JsonAttribute { public Type ConverterType { get; } public JsonConverterAttribute(Type converterType); protected JsonConverterAttribute(); public virtual JsonConverter CreateConverter(Type typeToConvert); } }