ajson
ajson copied to clipboard
Yet another json parser serializer for ABAP
I'm trying to parse https://raw.githubusercontent.com/abapedia/steampunk-2305-api/main/src/_status.json with AJSON. ```json { "clas,/dmo/cx_rap_generator": { "status": "RELEASED", "successors": [] }, "clas,/iwbep/cl_cp_factory_remote": { "status": "RELEASED", "successors": [] }, "clas,/iwbep/cl_cp_factory_unit_tst": { "status": "RELEASED", "successors": [] },...
Postponed because of hanging with enabled dependencies...
Maybe rename `zcl_ajson_mapping` to `zcl_ajson_mapper_lib` because it contains just predefined mappers
This is a query rather than an issue. I'm using ajson to parse data which arrives as nested collections. Currently accessing the data in MT_JSON_TREE to obtain the number of...
- ~make node type a char1~ - make linked list in type cache (to_abap)
Maybe: - rename `create_empty` to `new` (in fact mirrors 7.40 `new` operator behavior and "compatible" with it) - rename `create_from` to `from` - ... or even deprecate it in favor...
ref: #119 (see for code example), @jrodriguez-rc Creating an issue as it might need some discussion. > Custom JSON object. Interface ZIF_AJSON_OBJECT > Serializing objects with the interface `zif_ajson_object` will...
This new option will skip all the nodes that have no content: - Simple node values empty/null - Structures/Arrays with no subnodes
JSONPath could be a nice addition (https://restfulapi.net/json-jsonpath/):  Def: ```abap methods jsonpath importing iv_path type string returning value(ro_json) type if_asjon. ``` Example: ```abap lo_json->jsonpath( '$..attributes' ). ``` Anyone up for...
would be cool ...