Defining a Schema Struct with Known and Additional Properties
How do you define a schema struct that has some known, explicitly defined members but also (optionally) accepts an unlimited number of additional properties with unknown names and types?
These additional properties need to be existent in the constructed struct, not just discarded
If it helps, in my case, the "keys" of the properties can be strings and the values can be anything/are unknown
These additional properties need to be existent in the constructed struct, not just discarded
If it helps, in my case, the "keys" of the properties can be strings and the values can be anything/are unknown
