-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON file format, define how serialization should work #61
Comments
update: not relevant anymore due to the ABAP approach |
plus compression/initial value handling |
I am not sure, whether this make sense in all places. Consider such a boolean value for instance to specify whether a BAdI can be implemented by multiple BAdI implementations or only by one:
|
having one convention/rule makes it transparent, no special cases if initial values are skipped in the json, then it might have impact on the type design, so instead of TYPES multiple_use type abap_bool. then TYPES: BEGIN OF ENUM use,
single VALUE 'single',
multiple VALUE 'multiple',
END OF ENUM use is an option to always have the value in the json, note how this makes it part of the type design, and not a special case in json handling |
Initial values are not rendered (only if the field is explicitly annotated by
When #173 is merged, I think only the schema version question is open. |
suggest:
The text was updated successfully, but these errors were encountered: