Получается json при использовании Preprocessors
prettyPrint()
:
{
"testId" : "message-1",
"testType" : "TYPE",
"nestedList" : [ {
"nestedTestId" : 5,
"nestedTestCode" : 2,
"anotherNestedList" : [ {
"anotherNestedFirst" : [ {
"anotherId" : 1,
"anotherValue" : "VALUE_1",
"anotherDescription" : null
}, {
"anotherId" : 2,
"anotherValue" : "VALUE_2",
"anotherDescription" : "DESCRIPTION"
} ]
} ]
} ]
}
Я хочу, чтобы это выглядело так:
фигурные скобки - перевод строки с небольшими (2 пробелами) списками с отступами, отформатированными большинством онлайн json форматеров.
{
"testId": "message-1",
"testType": "TYPE",
"nestedList": [
{
"nestedTestId": 5,
"nestedTestCode": 2,
"anotherNestedList": [
{
"anotherNestedFirst": [
{
"anotherId": 1,
"anotherValue": "VALUE_1",
"anotherDescription": null
},
{
"anotherId": 2,
"anotherValue": "VALUE_2",
"anotherDescription": "DESCRIPTION"
}
]
}
]
}
]
}
Пробовал с Preprocessors
replacePattern
и другими средствами без удачи. Любая помощь будет оценена. Спасибо!