Familiar with Java and XML, I have tried to process JSON data. I'm using jsonschema2pojo to generate Plain Old Java Objects from example JSON data.
Let's say I want to import products and categories from a webshop;
http://developers.seoshop.com/api/resources/product http://developers.seoshop.com/api/resources/category
jsonschema2pojo does its job, but what about all generated Resource, Resource_, Resource__, Resource____
etc. files?
All these Resource
classes are equal.
Can I just delete these (and replace them bij one Resource
class)?
What is the reason for all these duplicated classes?
(don't mind the .json and .schema.json file they're just for investigation)