<PackageReference Include="System.Text.Json" Version="9.0.6" />

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 } }