Hello,
I wanted to use jsonschema2pojo library for JSON schemas(specification :
https://json-schema.org/) to Java based POJO's generation.
To use this library, having below queries if someone can help?
1) Is this library having community and open to contribution support? Good to use medium to large scale applicaitons in production w.r.t security vulnebratelities?
2) Also right now library not working for JSON schemas having if/then/else specification as attached. So can this library be extended for the same and support if/then/else easily? If suppose "then" having referenced schema then it generates the same but doesn't contain it in container class and if direct properties given as in attached sample ("Cause" name property) then nothing happens.
3) Union data type as below can have custom user defined "object" type too?
"Flags": {
"description": "Request Header flags",
"type": [
"number",
"string"
]
}
Rgds,
Kamal