blob: d7fd3d2485f15e93733c981d4d1c13abfebb12f0 [file] [log] [blame]
// Do not edit directly!
// This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page
= JSON Schema Validator
:page-aliases: extensions/json-validator.adoc
:linkattrs:
:cq-artifact-id: camel-quarkus-json-validator
:cq-native-supported: true
:cq-status: Stable
:cq-status-deprecation: Stable
:cq-description: Validate JSON payloads using NetworkNT JSON Schema.
:cq-deprecated: false
:cq-jvm-since: 1.0.0
:cq-native-since: 1.0.0
[.badges]
[.badge-key]##JVM since##[.badge-supported]##1.0.0## [.badge-key]##Native since##[.badge-supported]##1.0.0##
Validate JSON payloads using NetworkNT JSON Schema.
== What's inside
* xref:{cq-camel-components}::json-validator-component.adoc[JSON Schema Validator component], URI syntax: `json-validator:resourceUri`
Please refer to the above link for usage and configuration details.
== Maven coordinates
https://code.quarkus.io/?extension-search=camel-quarkus-json-validator[Create a new project with this extension on code.quarkus.io, window="_blank"]
Or add the coordinates to your existing project:
[source,xml]
----
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-json-validator</artifactId>
</dependency>
----
Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications.
== allowContextMapAll option in native mode
The `allowContextMapAll` option is not supported in native mode as it requires reflective access to security sensitive camel core classes such as
`CamelContext` & `Exchange`. This is considered a security risk and thus access to the feature is not provided by default.
== Additional Camel Quarkus configuration
This component typically loads JSON schemas from classpath.
To make it work also in native mode, you need to explicitly embed the schema files in the native executable
by using the `quarkus.native.resources.includes` property.
For instance, the route below would load the schema from a classpath resource named `schema.json`:
[source,java]
----
from("direct:start").to("json-validator:schema.json");
----
To include this (an possibly other schemas stored in `.json` files) in the native image, you would have to add something like the following to your `application.properties` file:
[source,properties]
----
quarkus.native.resources.includes = schema.json
----
More information about selecting resources for inclusion in the native executable can be found at xref:user-guide/native-mode.adoc#embedding-resource-in-native-executable[Embedding resource in native executable].