Вы можете использовать компонент json-validator .
С генерацией схемы вам может помочь инструмент JSONschema.net .
С вашими требованиями (требуемый routeId, требуется действие и может быть одной из следующих схем: «start», «stop», «suspend», «resume»):
routeSchema.json:
{
"definitions": {},
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"routeId",
"action"
],
"properties": {
"routeId": {
"type": "string"
},
"action": {
"type": "string",
"enum": [
"start",
"stop",
"suspend",
"resume"
]
},
"sourceLocation": {
"type": "string"
},
"destinationLocation": {
"type": "string"
}
}
}
Определение маршрута:
.to("json-validator:routeSchema.json")