I am generating POJO using jsonschema2pojo plugin. This object has 100 variables where for only few variables which are of type array of String, I would like to accept simple string values as well.
Current schema for one such attribute is given below. I want to change it to accept to accept both array oof strings and string value.
"location" : {
"type" : "string",
}