JSON Object Type¶
-
enum cardano_json_object_type_t¶
Enumerates the possible types of a JSON object.
This enumeration defines the various types a JSON object can represent.
Values:
-
enumerator CARDANO_JSON_OBJECT_TYPE_OBJECT¶
Represents a JSON object (key-value pairs).
-
enumerator CARDANO_JSON_OBJECT_TYPE_ARRAY¶
Represents a JSON array (ordered list).
-
enumerator CARDANO_JSON_OBJECT_TYPE_STRING¶
Represents a JSON string.
-
enumerator CARDANO_JSON_OBJECT_TYPE_NUMBER¶
Represents a JSON number (integer or floating-point).
-
enumerator CARDANO_JSON_OBJECT_TYPE_BOOLEAN¶
Represents a JSON boolean (
trueorfalse).
-
enumerator CARDANO_JSON_OBJECT_TYPE_NULL¶
Represents a JSON null value.
-
enumerator CARDANO_JSON_OBJECT_TYPE_OBJECT¶