Java package read the JSON file with this data:
rytFeePayment.edit.currency: Currency
rytFeePlan.edit.rightTypesGrid.title: Usage Types
AvlReport.actions.addOisInMarketplace: Add to storefront
AvlReport.actions.createInnerDeal: Create Acquisition deal
AvlReport.actions.createSaleDeal: Create Sale deal
AvlReportsResult.grid.create_deal.warn: Attention with deal creation
Also in new project we using data in YAML format with below syntax:
rytFeePayment:
edit:
currency: 'Currency'
rightTypesGrid:
title: 'Usage Types'
AviReport:
actions:
addOisInMarketplace: 'Ádd to storefront'
createInnerDeal: 'Create Acquisition deal'
etc..
As I understand I have to transform YAML data to JSON with syntax that I showed in firts case How to do that in command line?
Does jackson can help with it?