summaryrefslogtreecommitdiff
path: root/lib/zambyte/meta/json.sld
Commit message (Collapse)AuthorAge
* Distinct JSON records with the same name do not meet other predicatesRobby Zambito2023-06-11
| | | | | | | | | | Before, a JSON record would meet the predicate of a different record type, if they shared the same name. This change resolves that. Added a parameter object to allow missing keys in record from-string procedures. Export json->typeless-json.
* Reach feature parity with macduffie json libraryRobby Zambito2023-02-21
|
* Edit error messagesRobby Zambito2023-02-17
|
* Finish basic json-record functionality.Robby Zambito2023-02-17
| | | | | | | | Can serialize and deserialize nested records correctly. Add json-object-map and json-list-map to facilitate recursively demoting records. Add json-object-set! to make the record mutators functional.
* Merge branch 'master' into json-recordsRobby Zambito2023-02-16
|\
| * Rename guile.scm to guile-json.scmRobby Zambito2023-02-16
| | | | | | | | This will avoid any potential conflicts from other zambyte/meta/guile.scm files.
| * Use include-from-path for including the Guile implementationRobby Zambito2023-02-16
| |
* | Allow non-record json objects to match record json objects predicate when ↵Robby Zambito2023-02-16
| | | | | | | | all the keys are provided.
* | Raise an error when trying to serialize a json record and a key is missing.Robby Zambito2023-02-16
| |
* | Add initial implementation of json-recordsRobby Zambito2023-02-16
|/ | | | These behave like normal records, but with an added procedure to convert from a JSON string.
* Add json DSLRobby Zambito2023-02-15
|
* Add json-object-contains-key?, json-list-length, and json-key-not-found.Robby Zambito2023-02-12
| | | | Update README accordingly and with add examples.
* Initial commitRobby Zambito2023-02-12