schema.order-schema.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-example-atlasmap-multidoc Show documentation
Show all versions of camel-example-atlasmap-multidoc Show documentation
An example for mapping from multiple source documents with using camel-atlasmap component running from Camel main
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Order",
"type": "object",
"properties": {
"orderId": {
"type": "string"
},
"orderItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"itemId": {
"type": "string"
},
"quantity": {
"type": "integer"
}
}
}
}
}
}