0
I have a json that comes from the bank Mongodb, I have to take and manipulate the json using fasterXml. I will have to take the names of the json properties and separate them with dot(.) instead of comma(,)
Kind of :
"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!!
You need to know all daughter properties of
properties, is that it? What have you tried so far? Give more details about your need/problem.– Bruno César
I managed to put the solution here
– Pedro Januario