Skip to main content
Checks whether the incoming data matches a JSON schema you provide. A JSON schema is a set of rules that describes what valid data looks like, such as which fields must be present, what type each one should be, and which values are allowed. Use this to confirm a record has the shape another system expects before you send it on, or to separate well-formed records from ones that are missing fields or hold the wrong kind of value. You supply the schema in the Schema field, and the condition answers yes when the data satisfies every rule in it.

Fields

Sample data

The condition was run with a small schema that requires the value to be a whole number, applied to a qty field.
FieldValue
Schema{ "type": "integer" }
Incoming valueResult
3Matches
"three" (text)Does not match