In apicurio data model additionalProperties variable is using AsyncApiSchema type, it cannot give the value as true when it comes to create schema for
map<map<json>> offset
Here json will be dynamic. Isn't it good to have it as the type of Object in java.. Or is there any way to set this please point out to me . Thank you
I was trying to change the type of variable additionalProperties in to java Object , but like in methods , variables cannot be override in java, therefore I got no solution.. but I have used it like this
offset:
type: object
additionalProperties:
type: object
additionalProperties: {}
I want to know this is right or not