<PackageReference Include="System.Text.Json" Version="10.0.0-preview.2.25163.2" />

JsonValueKind

public enum JsonValueKind
Specifies the data type of a JSON value.
namespace System.Text.Json { public enum JsonValueKind : byte { Undefined, Object, Array, String, Number, True, False, Null } }