Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.8.0
-
None
-
Unknown
Description
The RestOpenApiReader has a typo such that it generates an incorrect schema:
reads:
prop.type = "sting";
This should read:
prop.type = "string";
This causes it to generate a schema like:
"responses": { "200": { "content": { "text/plain": { "schema": { "format": "string", "type": "sting" } } }, "description": "Returns status code 200 when the report is returned"
Which run used to generate a client creates code that looks for a "Sting" type which does not exist