Skip to main content

JSON schema validator

Validate a JSON object against a schema.

Parameters

JSON Schema

The JSON schema to validate the JSON object against. Supported draft: draft4, draft6, draft7, draft201909, draft202012. If left unset (or set to an empty schema {}), any input is accepted.

Input

JSON Elementrequired

The JSON object you want to validate against the schema.

Output

JSON Element

The same JSON object passed as input if this one has been validated.

warning

If the input does not conform to the schema, the step fails with an

InvalidJSONSchema error and the run stops. There is no option to soft-skip invalid records. :::