Queries on schema and JSON data conversion #6442
Replies: 1 comment
-
Ok, this is the 3rd place you've posted this, after Stack Overflow (where it was answered) and the mailing list. Do you consider other people's time when doing this kind of cross-posting? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We already have flatbuffer library embedded in our software code for simple schemas with JSON output data generation.
Now we also need to have the following schema tree to be supported.
As from above, table
Components
is nested recursively. The intention is components may have childs that have the same fields.I have few queries:
recursive nested tables. But is this supported during the field
access for such tables?
could not see the field for schemaversion. I learned FB doesn't
serialize the default values. so, I removed the default value that I
assigned in the schema. But, it still doesnt write into the json data
file. On this I also learned we can forcefully write into the file
using force_defaults option. I don't know where is this is to be
put: in the attribute or elsewhere?
Beta Was this translation helpful? Give feedback.
All reactions