Skip to main content

Logical: Type Check

Test whether the value flowing in on value matches the configured Expected type. Useful for branching on dynamic / heterogenous inputs (e.g. "is this a string or a number?").

Example
Expected type: Number
Input: 42 → Output: true
Input: "42" → Output: false

Parameters

Expected typerequired

Type the input is compared against. One of None, Bool, String, Number, Array, JSON, XML, DateTime, Date, Time.

Input

Valuerequired
The value to type-check.

Output

Boolean

true if the input's variant equals Expected type, false otherwise.