Looking at `hydra-go-client`, the introspection re...
# talk-hydra
d
Looking at
hydra-go-client
, the introspection response field Ext has type
map[string]map[string]interface{}
while I expected it to be either
interface{}
or
map[string]interface{}
based on the swagger. Is this a bug in the code generator or am I missing something ?
Looks like it could be caused by
additionalProperties:{}
This tells OpenAPI that all additional properties of Ext are objects. Hence the type map[string]map[string]interface{}. this should probably be changed, bu I am still looking for the right way. Once I have found it, I will probably open a PR
Looks like this is fixed in v2.x branch...