{"id":25498151,"url":"https://github.com/nsuresh9806/json_util_plugin","last_synced_at":"2026-05-07T00:39:01.002Z","repository":{"id":274863309,"uuid":"924310044","full_name":"nsuresh9806/json_util_plugin","owner":"nsuresh9806","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-18T18:52:53.000Z","size":139,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-18T19:44:38.303Z","etag":null,"topics":["automation","code-generation","developer-tools","gson","jackson","java-code-generation","json-beautifier","json-editor","json-formatter","json-manipulation","json-parser","json-processing","json-schema","json-to-java","json-tools","json-utils","json-validator","lombok","pojo-generator","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nsuresh9806.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-29T19:21:44.000Z","updated_at":"2025-02-18T19:20:16.000Z","dependencies_parsed_at":"2025-02-18T19:44:44.516Z","dependency_job_id":"33f12778-ac43-4790-92f3-68f2fad32100","html_url":"https://github.com/nsuresh9806/json_util_plugin","commit_stats":null,"previous_names":["nsuresh9806/jsonutil_plugin","nsuresh9806/json_util_plugin"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsuresh9806%2Fjson_util_plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsuresh9806%2Fjson_util_plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsuresh9806%2Fjson_util_plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsuresh9806%2Fjson_util_plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nsuresh9806","download_url":"https://codeload.github.com/nsuresh9806/json_util_plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239581748,"owners_count":19662960,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","code-generation","developer-tools","gson","jackson","java-code-generation","json-beautifier","json-editor","json-formatter","json-manipulation","json-parser","json-processing","json-schema","json-to-java","json-tools","json-utils","json-validator","lombok","pojo-generator","vscode-extension"],"created_at":"2025-02-19T02:20:30.433Z","updated_at":"2026-05-07T00:39:00.968Z","avatar_url":"https://github.com/nsuresh9806.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSON Utility - Validator, Formatter and Java Model Generator\n\nThis plugin provides an efficient way to **validate**, **format**, and **auto generate** **Java model** classes from **JSON** input **dynamically**. It simplifies the workflow for developers dealing with JSON data and Java projects by ensuring the JSON structure is valid and converting it into clean, well-structured Java classes.\n\n\n**Authors**: Suresh Nettur, and Akhil Dusi.\n\n## Features\n\n- **JSON Validator**: Automatically checks the given JSON input for syntax errors.\n- **JSON Formatter**: Once the JSON is validated, the plugin provides a neatly formatted version of the JSON for better readability and usability.\n- **Java Model Generator**: If the JSON validation passes, the plugin generates corresponding Java model classes based on the structure of the JSON. This includes fields, getters, setters, and support for nested objects and arrays.\n- **Java Model Generator - Lombok**: Generates Lombok style Java model classes from the given JSON structure.\n\n## Requirements\n\n## Installation\n\n  1. Open IntelliJ.\n  2. File -\u003e Settings -\u003e Plugins.\n  3. Search for \"JSON Validator, Formatter and Java Model Generator\".\n  4. Click Install to add the plugin to your workspace.\n  5. Once installed, open project, json file.\n  6. From Menu, select Code -\u003e \"Validate Format JSON And Generate Java Model\" or \"Validate Format JSON And Generate Java Lombok Model\" to run the commands for validation, formatting, and Java class generation.\n\n\n**Opened JSON file Person.json**:  \n{  \n\u0026emsp;\"name\": \"John Doe\",  \n\u0026emsp;\"age\": 30,  \n\u0026emsp;\"address\": {  \n\u0026emsp;\u0026emsp;\u0026emsp;\"city\": \"New York\",  \n\u0026emsp;\u0026emsp;\u0026emsp;\"zipcode\": \"10001\"  \n\u0026emsp;},  \n\u0026emsp;\"skills\": [\"Java\", \"TypeScript\"]  \n\u0026#9;}  \n\n**Generated Java Class**:  \nimport java.util.List;  \n\npublic class Person {  \n\u0026emsp;private String name;  \n\u0026emsp;private int age;  \n\u0026emsp;private Address address;  \n\u0026emsp;private List\u003cString\u003e skills;  \n\n    // Getters and Setters  \n}\n\npublic class Address {  \n\u0026emsp;private String city;  \n\u0026emsp;private String zipcode;  \n\n    // Getters and Setters  \n}\n\n**with Lombok**:  \n\nimport lombok.Data;  \nimport lombok.Getter;  \nimport lombok.Setter;  \nimport lombok.NoArgsConstructor;  \nimport lombok.AllArgsConstructor;  \n\n/*  \n\tMake sure to include lombok library in classpath or in pom.xml for maven projects,  \n\n\tExample:  \n\t\t\u003cdependency\\\u003e  \n      \t\t\u003cgroupId\\\u003eorg.projectlombok\\\u003c/groupId\\\u003e  \n   \t\t\t\u003cartifactId\\\u003elombok\\\u003c/artifactId\\\u003e  \n\t\t\u003c/dependency\\\u003e\n*/\n\n@Data  \n@AllArgsConstructor  \n@NoArgsConstructor  \n\npublic class Address {  \n\u0026emsp;private String city;  \n\u0026emsp;private String zipcode;  \n}\n\nimport java.util.List;\n\nimport lombok.Data;  \nimport lombok.AllArgsConstructor;  \nimport lombok.NoArgsConstructor;\n\n@Data  \n@AllArgsConstructor  \n@NoArgsConstructor  \n\npublic class Person {  \n\u0026emsp;private String name;  \n\u0026emsp;private int age;  \n\u0026emsp;private Address address;  \n\u0026emsp;private List\u0026lt;String\u0026gt; skills;  \n}\n\n## Known Issues\n\nHandling of highly complex nested JSON structures may result in deeply nested Java classes, which might require further optimization in future versions.  \nCurrently, only basic Java class structure (fields, getters, and setters) is supported.   \nAdvanced Java features (such as constructors or annotations) will be considered in future updates.\n\n\n## License\n\nThis plugin is licensed under the [MIT License](LICENSE).\nSee the LICENSE file for details.\n\n## Disclaimer\n\n- **Ethical Usage**: This tool is designed for ethical development and testing purposes only. Do not use it for any unethical or inappropriate activities.\n- **PII/PHI Handling**: Avoid including personally identifiable information (PII) or protected health information (PHI) in the input spec. The developers are not responsible for any misuse of the plugin.\n\n### Support\n\nFor issues or questions, visit the GitHub repository or contact us via the IntelliJ IDEA Community.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsuresh9806%2Fjson_util_plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnsuresh9806%2Fjson_util_plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsuresh9806%2Fjson_util_plugin/lists"}