Studio Service

JSONFilter

JSONFilter

A filter to be used against JSON fields. All fields are combined with a logical ‘and.’

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToJSONEqual to the specified value.
notEqualToJSONNot equal to the specified value.
distinctFromJSONNot equal to the specified value, treating null like an ordinary value.
notDistinctFromJSONEqual to the specified value, treating null like an ordinary value.
in[JSON!]Included in the specified list.
notIn[JSON!]Not included in the specified list.
lessThanJSONLess than the specified value.
lessThanOrEqualToJSONLess than or equal to the specified value.
greaterThanJSONGreater than the specified value.
greaterThanOrEqualToJSONGreater than or equal to the specified value.
containsJSONContains the specified JSON.
containedByJSONContained by the specified JSON.