37namespace nfx::serialization::json::types
44 inline constexpr std::string_view
STRING{
"string" };
47 inline constexpr std::string_view
NUMBER{
"number" };
50 inline constexpr std::string_view
INTEGER{
"integer" };
53 inline constexpr std::string_view
OBJECT{
"object" };
56 inline constexpr std::string_view
ARRAY{
"array" };
59 inline constexpr std::string_view
BOOLEAN{
"boolean" };
62 inline constexpr std::string_view
NULL_TYPE{
"null" };
constexpr std::string_view ARRAY
JSON array type.
constexpr std::string_view STRING
JSON string type.
constexpr std::string_view OBJECT
JSON object type.
constexpr std::string_view NULL_TYPE
JSON null type.
constexpr std::string_view NUMBER
JSON number type (includes integers).
constexpr std::string_view INTEGER
JSON integer type (subset of number).
constexpr std::string_view BOOLEAN
JSON boolean type.