Package json.plt contributed by dherman 
To load: (require (planet dherman/json:1:2/json))
Old style:(require (planet "json.ss" ("dherman" "json.plt" 1 2)))
Min Racket version: 3.99
Package description:
Implements the JSON data format.
Downloads this week: 0
Total downloads: 2604
Tickets:0
Open tickets:0
Primary files:
json.ss
[no interface available]
 Current version
PLaneT versionExternal versionSourceDLsDocsReq. PLTDate added
(1 2)1
560
[none]
3.99Thursday, January 15th, 2009
To load: (require (planet dherman/json:1:2/json))
Available in repositories: 4.x, 3xx

Bug fixes, thanks to Dave Gurnell.

No Tickets Currently open for this Package [New Ticket]

 Old versions
PLaneT versionExternal versionSourceDLsDocsReq. PLTDate added
(1 1)1
176
[none]
3.99Tuesday, June 3rd, 2008
To load: (require (planet "json.ss" ("dherman" "json.plt" 1 (= 1))))
Available in repositories: 4.x, 3xx

Bug fixes, thanks to Dave Gurnell.

(1 0)1
21
[none]
3.99Sunday, April 13th, 2008
To load: (require (planet "json.ss" ("dherman" "json.plt" 1 (= 0))))
Available in repositories: 4.x, 3xx

Initial release.

 Packages in other repositories

These packages are not available in the 3xx repository, but they are available for other versions of Racket.

PLaneT versionExternal versionSourceDLsDocsReq. PLTDate added
(4 0)4
1119
[none]
4.0Tuesday, February 7th, 2012
To load: (require (planet "main.rkt" ("dherman" "json.plt" 4 (= 0))))
Available in repositories: 4.x
(3 0)3
719
[none]
4.0Wednesday, September 9th, 2009
To load: (require (planet "main.ss" ("dherman" "json.plt" 3 (= 0))))
Available in repositories: 4.x
  • Renamed json datatype to \&JS-Expressions\; or \&jsexprs\;. Thanks to Peter Michaux for pointing out the confusion between json the datatype and JSON the data format.
  • Renamed json->string to jsexpr->json.
  • Renamed string->json to json->jsexpr.
  • Renamed gratuitously ambiguous read and write to read-json and write-json, respectively.
  • Changed the value represented by JSON null from #<void> to #\\null.
  • Added some design rationale to the docs.
(2 0)2
9
[none]
4.0Tuesday, September 8th, 2009
To load: (require (planet "main.ss" ("dherman" "json.plt" 2 (= 0))))
Available in repositories: 4.x
  • Updated for PLT Scheme v4.
  • Added json->string and string->json, thanks to Peter Michaux.