I have a json that comes from the MongoDB bank, I have to get and manipulate json using fasterXml. I will have to get the json properties names and separate them with period (.) Instead of comma (,)
Type like this:
"type" : "object",
"id" : "urn:jsonschema:com",
"properties" : {
"id" : {
"type" : "any"
},
"name" : {
"type" : "string"
},
"version" : {
"type" : "string"
},
"code" : {
"type" : "string"
},
"clazz" : {
"type" : "string"
}
}
}
And show like this:
properties{id.name.version.code.clazz};
Show everything you have inside the parent that is "properties", or something like that !!