ng-openapi-gen
ng-openapi-gen copied to clipboard
Incorrect generation from ref to elements other than models
When we use ref linked to property of another schema then it couldn't generate correct model
"name": {
"$ref": "#/components/schemas/ContractSchema/properties/name"
},
it generates
import { Name } from '../models/name';
but no model name as a result
It really isn't a supported feature.