{"id":13498305,"url":"https://github.com/apptik/JustJson","last_synced_at":"2025-03-29T01:30:30.007Z","repository":{"id":14684106,"uuid":"17403485","full_name":"apptik/JustJson","owner":"apptik","description":"JSON helper library for Android","archived":false,"fork":false,"pushed_at":"2019-02-27T13:52:46.000Z","size":11818,"stargazers_count":15,"open_issues_count":8,"forks_count":22,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-08-01T21:47:23.743Z","etag":null,"topics":["json","json-generator","json-ld","json-schema"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apptik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-04T13:51:35.000Z","updated_at":"2021-01-11T07:47:03.000Z","dependencies_parsed_at":"2022-08-30T11:32:28.288Z","dependency_job_id":null,"html_url":"https://github.com/apptik/JustJson","commit_stats":null,"previous_names":["djodjoni/justjson"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apptik%2FJustJson","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apptik%2FJustJson/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apptik%2FJustJson/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apptik%2FJustJson/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apptik","download_url":"https://codeload.github.com/apptik/JustJson/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222435781,"owners_count":16984191,"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":["json","json-generator","json-ld","json-schema"],"created_at":"2024-07-31T21:00:21.753Z","updated_at":"2024-10-31T15:31:58.703Z","avatar_url":"https://github.com/apptik.png","language":"Java","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# JustJson\n\n[![Build Status](https://travis-ci.org/apptik/JustJson.svg?branch=master)](https://travis-ci.org/apptik/JustJson)\n[![Join the chat at https://gitter.im/apptik/JustJson](https://badges.gitter.im/apptik/JustJson.svg)](https://gitter.im/apptik/JustJson?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![StackExchange](https://img.shields.io/stackexchange/stackoverflow/t/JustJson.svg)](http://stackoverflow.com/questions/tagged/JustJson)\n\n\nJSON helper library for Android and Java\n----------------------------------------\n\nJustJson is NOT a standard json2pojo library with multiple adapters.\n\nIt simply converts json string/stream to java Objects\n* JsonObject - Iterable handy Map wrapper \n* JsonArray - List implementation\n* JsonString - String wrapper\n* JsonBoolean - boolean wrapper\n* JsonNumber - number wrapper\n\nwhich are then flexible \u0026 easy to read/modify/iterate/search/wrap.\n\nIt came out of the need for a dynamic, simple and lightweight Json parser for Android(unlike Jackson).\nThe code started as a mixture of https://android.googlesource.com/platform/libcore/+/master/json/ and the Json utils from https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/util .\n\nJustJson is super simple, super small and fast json lib.\n\n\n\nIt can be used on Android and Java in general.\n\n## Download\n\nFind [the latest JARs][mvn] or grab via Maven:\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.apptik.json\u003c/groupId\u003e\n  \u003cartifactId\u003ejson-XXX\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.4\u003c/version\u003e\n\u003c/dependency\u003e\n```\nor Gradle:\n```groovy\ncompile 'io.apptik.json:json-XXX:1.0.4'\n```\n\nDownloads of the released versions are available in [Sonatype's `releases` repository][release].\n\nSnapshots of the development versions are available in [Sonatype's `snapshots` repository][snap].\n\n## Features\n- Fast and easy Json Parser and Writer (comparable or better performance than Android Native, GSON and Jackson libraries)\n- Flexible Json Wrapper helper implementations that hold json data and media type. Ideal for Model classes.\n- Json-Schema validation \n- Android UI generation \n\n## Examples\n\nTODO\n\n\n## Questions\n\n[StackOverflow with tag 'JustJson'](http://stackoverflow.com/questions/ask)\n\n## Modules\n\n* [Json Core][json-core] - the json core module responsible for mapping json string/stream to basic Java Objects\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.json/json-core.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.json/json-core)\n[![VersionEye](https://www.versioneye.com/java/io.apptik.json:json-core/1.0.4/badge.svg)](https://www.versioneye.com/java/io.apptik.json:json-core/1.0.4)\n* [Json Warpper][json-wrapper] - json wrapper classes that are used to wrap generic json representation around some defined interface\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.json/json-wrapper.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.json/json-wrapper)\n[![VersionEye](https://www.versioneye.com/java/io.apptik.json:json-wrapper/1.0.4/badge.svg)](https://www.versioneye.com/java/io.apptik.json:json-wrapper/1.0.4)\n* [Json Schema][json-schema] - helper to provide some json wrapper MetaInfo based on [json-schema][json-schema.org]\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.json/json-schema.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.json/json-schema)\n[![VersionEye](https://www.versioneye.com/java/io.apptik.json:json-schema/1.0.4/badge.svg)](https://www.versioneye.com/java/io.apptik.json:json-schema/1.0.4)\n* [Json Generator][json-generator] - Random customizable json generator what uses [json-schema][json-schema.org] metainfo\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.json/json-core.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.json/json-generator)\n[![VersionEye](https://www.versioneye.com/java/io.apptik.json:json-core/1.0.4/badge.svg)](https://www.versioneye.com/java/io.apptik.json:json-generator/1.0.4)\n* [Json AWS][json-aws] - helper for working with AWS json libraries\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.json/json-core.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.json/json-aws)\n[![VersionEye](https://www.versioneye.com/java/io.apptik.json:json-core/1.0.4/badge.svg)](https://www.versioneye.com/java/io.apptik.json:json-aws/1.0.4)\n\n\n## Licence\n\n    Copyright (C) 2016 AppTik Project\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n         http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n [mvn]: http://search.maven.org/#search|ga|1|io.apptik.json\n [release]: https://oss.sonatype.org/content/repositories/releases/io/apptik/json/\n [snap]: https://oss.sonatype.org/content/repositories/snapshots/io/apptik/json/\n \n [json-core]: https://github.com/apptik/JustJson/tree/master/json-core\n [json-wrapper]: https://github.com/apptik/JustJson/tree/master/json-wrapper\n [json-schema]: https://github.com/apptik/JustJson/tree/master/json-schema\n [json-generator]: https://github.com/apptik/JustJson/tree/master/json-generator\n [json-aws]: https://github.com/apptik/JustJson/tree/master/json-aws\n [json-schema.org]: http://json-schema.org/\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapptik%2FJustJson","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapptik%2FJustJson","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapptik%2FJustJson/lists"}