I’m trying to use this Open API json file to generate Java client code to call Front’s API. I’m using maven and the openapi-generator-maven-plugin version 6.2.1.
The first time I tried to do this, it failed with this message:
-attribute components.schemas.KnowledgeBaseArticleResponse.items is missing
I fixed this by adding
"items": { "type": "string"},
to line 2590.
Then I tried again. It failed because the Java code is not valid. There's errors in a number of files, like EventResponseSourceData.
Has anyone had success generating Java client code using the above mentioned file?