Any
JSON Module Reference - Mule 4
JSON Module v2.5
The JSON module provides extra functionality for processing JSON documents. Although DataWeave is the tool that Mule uses to access data in JSON documents, this module provides extra functionality that falls outside of DataWeave’s scope, like schema validation.
Release Notes: JSON Module Release Notes
Operations
Validate Schema
<json:validate-schema>
Validates that the input content is compliant with a given schema. This operation supports referencing many schemas (using comma as a separator) which include each other.
JSON Validate schema operation supports schema versions Draft 3, Draft 4, Draft 6, Draft 7, Draft 2019-09, and Draft 2020-12. If you do not specify a draft version in the JSON schema node, the default version is Draft 04. |
Parameters
Name | Type | Description | Default Value | Required |
---|---|---|---|---|
Content |
The JSON document to validate. |
#[payload] |
||
Schema Redirects |
Array of Schema Redirect |
Allows to redirect any given URI in the Schema (or even the schema location itself) to any other specific URI. The most common use case for this feature is to map external namespace URIs without the need to a local resource. |
||
Dereferencing |
Enumeration, one of: CANONICAL INLINE |
Draft v4 defines two dereferencing modes: canonical and inline. CANONICAL is the default option, you can also specify INLINE. This field affects only when you use Draft v4. |
CANONICAL |
|
Allow Duplicate Keys |
Boolean |
If true, the validator allows duplicate keys, otherwise it fails |
true |
|
Allow Arbitrary Precision |
Boolean |
If true, the validator uses arbitrary precision when reading floating point values, otherwise it uses double precision. |
false |
|
Schema |
String |
The location of the validate schema to validate. This attribute supports URI representations such as "http://org.mule/schema.json" or "resource:/schema.json". It also supports a most common classpath reference such as simply "schema.json". |
||
SchemaContent |
String |
The content of the schema to validate in text format. |