View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

ISOBJECT - Type

Checks whether the attribute is of type object

Input parameters

Name Type Optional Description
x Any False  

Output

Bool: True/False depending on check

Usage

ISOBJECT(<x>)

Examples

Example 1

Input Document

[1,2]
{"doc":1}
1
"String"
true
null

Query

LOAD tmp
AS ('': ISOBJECT(''))

Result

false
true
false
false
false
false