coreJSON  v1.0.0
A parser strictly enforcing the ECMA-404 JSON standard, suitable for microcontrollers
Enumerated Types

Enumerated types of the JSON library. More...

Enumerations

enum  JSONStatus_t {
  JSONPartial = 0, JSONSuccess, JSONIllegalDocument, JSONMaxDepthExceeded,
  JSONNotFound, JSONNullParameter, JSONBadParameter
}
 Return codes from coreJSON library functions. More...
 

Detailed Description

Enumerated types of the JSON library.

Enumeration Type Documentation

◆ JSONStatus_t

Return codes from coreJSON library functions.

Enumerator
JSONPartial 

JSON document is valid so far but incomplete.

JSONSuccess 

JSON document is valid and complete.

JSONIllegalDocument 

JSON document is invalid or malformed.

JSONMaxDepthExceeded 

JSON document has nesting that exceeds JSON_MAX_DEPTH.

JSONNotFound 

Query key could not be found in the JSON document.

JSONNullParameter 

Pointer parameter passed to a function is NULL.

JSONBadParameter 

Query key is empty, or any subpart is empty, or max is 0.