{"id":46698441,"url":"https://github.com/quinnj/JSON3.jl","last_synced_at":"2026-03-23T06:01:23.167Z","repository":{"id":39713301,"uuid":"185888023","full_name":"quinnj/JSON3.jl","owner":"quinnj","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-10T04:49:47.000Z","size":1168,"stargazers_count":226,"open_issues_count":73,"forks_count":58,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-11-10T02:02:06.870Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quinnj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2019-05-09T23:59:05.000Z","updated_at":"2025-11-04T15:24:31.000Z","dependencies_parsed_at":"2023-12-15T09:26:45.903Z","dependency_job_id":"15097265-40a5-4dd9-af67-a68f7a24f9bc","html_url":"https://github.com/quinnj/JSON3.jl","commit_stats":{"total_commits":244,"total_committers":41,"mean_commits":5.951219512195122,"dds":"0.36475409836065575","last_synced_commit":"b23ad48cfc2fc5eaa9d40cde990d07c957a22ddc"},"previous_names":[],"tags_count":48,"template":false,"template_full_name":null,"purl":"pkg:github/quinnj/JSON3.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quinnj%2FJSON3.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quinnj%2FJSON3.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quinnj%2FJSON3.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quinnj%2FJSON3.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quinnj","download_url":"https://codeload.github.com/quinnj/JSON3.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quinnj%2FJSON3.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30850193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-23T01:54:41.487Z","status":"online","status_checked_at":"2026-03-23T02:00:09.028Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-03-09T06:00:25.727Z","updated_at":"2026-03-23T06:01:23.154Z","avatar_url":"https://github.com/quinnj.png","language":"Julia","funding_links":[],"categories":["Data Forensics and Analysis"],"sub_categories":["Data Parsing"],"readme":"# JSON3.jl\n\n## ⚠️ This package has been deprecated. Please migrate to [JSON.jl v1](https://github.com/JuliaIO/JSON.jl) (and see the [migration guide](https://juliaio.github.io/JSON.jl/stable/migrate/#Migration-guide-for-JSON3.jl)) ⚠️\n\nNote: If you rely on the \"automatically generate Julia struct definitions\" feature from JSON3.jl, you may need to keep using JSON3.jl for now. See the [migration guide](https://juliaio.github.io/JSON.jl/stable/migrate/#Features-unique-to-each-library) for details.\n\n### Documentation\n\n[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://quinnj.github.io/JSON3.jl/stable)\n[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://quinnj.github.io/JSON3.jl/dev)\n\n*Yet another JSON package for Julia; this one is for speed and slick struct mapping*\n\n### TL;DR\n\n#### Basic\n\n```julia\n# builtin reading/writing\nJSON3.read(json_string)\nJSON3.write(x)\n\n# custom types\nJSON3.read(json_string, T; kw...)\nJSON3.write(x)\n```\n\n#### More complicated\n\n```julia\n# custom types: incrementally update a mutable struct\nx = T()\nJSON3.read!(json_string, x; kw...)\nJSON3.write(x)\n\n# read from file\njson_string = read(\"my.json\", String)\nJSON3.read(json_string)\nJSON3.read(json_string, T; kw...)\n\n# write to file\nopen(\"my.json\", \"w\") do f\n    JSON3.write(f, x)\n    println(f)\nend\n\n# write a pretty file\nopen(\"my.json\", \"w\") do f\n    JSON3.pretty(f, JSON3.write(x))\n    println(f)\nend\n\n# generate a type from json\nusing StructTypes\nJSON3.@generatetypes json_string_sample\nJSON3.read(json_string, JSONTypes.Root)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquinnj%2FJSON3.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquinnj%2FJSON3.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquinnj%2FJSON3.jl/lists"}