"components": {
"schemas": {
"thing": {
"required": [
"dict"
],
"type": "object",
"properties": {
"dict": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"title": "Value"
}
}
}
}
},
"title": "Thing"
}
}
},
"openapi": "3.1.0",
"servers": [
],
"info": {
"title": "API",
"version": "1.0.0",
"description": ""
}
}
Describe the bug
{"type": "object", "additionalProperties": ...}is not converted to elm Dict typeTo Reproduce
Given this openapi spec:
the generator produces:
Expected output is:
See: https://swagger.io/docs/specification/v3_0/data-models/dictionaries/?sbsearch=additionalproperties