Skip to main content

isExists (Function)

Function checks whether there is a JSON element present in the given path or not.

Syntax

<BOOL> json:isExists(<STRING|OBJECT> json, <STRING> path)

Query Parameters

NameDescriptionDefault ValuePossible Data TypesOptionalDynamic
jsonThe JSON input that needs to be searched for an elements.STRING OBJECTNoYes
pathThe JSON path to check for the element.STRINGNoYes

Example 1

json:isExists(json, '$.name')

If the json is the format {'name' : 'John', 'age' : 23}, then the function returns true as there is an element in the given path.

Example 2

json:isExists(json, '$.salary')

If the json is the format {'name' : 'John', 'age' : 23}, then the function returns false as there is no element in the given path.