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