Handbook
Glossary
JSON serialization
The
json
vocabulary defines words for working with JSON (JavaScript Object Notation) formats.
Parsing strings in JSON format.
json>
( string -- object )
read-json
( -- objects )
path>json
( path -- json )
path>jsons
( path -- jsons )
Converting objects to JSON format.
>json
( obj -- string )
json-print
( obj -- )
Working with JSON null values:
json-null?
( object -- ? )
if-json-null
( x if-null else -- )
when-json-null
( x if-null -- )
unless-json-null
( x else -- )
For more information, see
https://en.wikipedia.org/wiki/JSON
.